Using the DOS start command
Using the DOS start command
(OP)
I'm using a DOS batch file to simplify some manual processes.
One command has to use the DOS "start /min xxxx" because I need to return to the main menu batch file right away to do the other commands.
Here's the problem: When I finish the main batch file and then close the program that had to be spawned with the "start /min xxxx", I'm left with a minimized DOS command window.
I need to know if there is a way to spawn the application and then when it is closed by the user to close the DOS window.
Sorry that I had to go back to the '80's with DOS!!
Thanks in advance,
One command has to use the DOS "start /min xxxx" because I need to return to the main menu batch file right away to do the other commands.
Here's the problem: When I finish the main batch file and then close the program that had to be spawned with the "start /min xxxx", I'm left with a minimized DOS command window.
I need to know if there is a way to spawn the application and then when it is closed by the user to close the DOS window.
Sorry that I had to go back to the '80's with DOS!!
Thanks in advance,
Jerry Scannell
RE: Using the DOS start command
Be Alert, America needs more lerts
RE: Using the DOS start command
http://technet.microsoft.com/en-us/sysinternals/bb...
Tony ... aka chgwhat
When in doubt,,, Power out...
RE: Using the DOS start command
CODE
----------------------------------
Phil AKA Vacunita
----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
Web & Tech
RE: Using the DOS start command
http://www.robvanderwoude.com/exit.php
the EXIT /B may help
RE: Using the DOS start command
Jerry Scannell