Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
CMD Batch File Exit
Name: rgilly Date: October 12, 2002 at 10:40:55 Pacific OS: Windows XP CPU/Ram: Athlon - 512
Comment:
I know there is something I'm missing here. I need some help witht this batch file. It does everything I want, except close the command prompt in the background. It seems to binde with notepad. I'm using Windows XP so I can tell tell the batch file to close on exit. Any help would be appreciated.
Name: rgilly Date: October 12, 2002 at 10:42:11 Pacific
Reply:
"Typo", sorry!
I know there is something I'm missing here. I need some help witht this batch file. It does everything I want, except close the command prompt in the background. It seems to binde with notepad. I'm using Windows XP so I can't tell the batch file to close on exit. Any help would be appreciated.
Summary: I am trying to get a batch file that will autorun from cd and then exit on completion. There are two files on the cd for this autrun.inf: "[autorun] open= test.bat" and test.bat "cd MBury Iread32.exe ...
Summary: Hi, I am trying to create a batch file that calls a java program. I want it to loop forever. (I am trying to get an intermittent condition to happen in the java program). Anyways, I run the batch fi...
Summary: Use the /B switch with the EXIT cmd in order to exit the current batch file. If you don't use it, like you're doing, the EXIT cmd finishes the CMD.EXE. exit /b 1 BTW, that only works on NT systems. Oh...