In a batch file when you call an executable your prompt window stays open. How to hide it?
Asked
Active
Viewed 1.1k times
2 Answers
11
You can put "Start" before the name of the executable. This will start the executable and exit without waiting for it to finish.
For example,
notepad.exe
exit
will not close the command prompt window until notepad is closed.
start notepad.exe
exit
will exit immediately without waiting.
Of course, if subsequent actions in the batch file are dependent on the executable finishing then this will be of no use to you.

AntonyW
- 2,284
- 16
- 21
-
See this [answer](http://stackoverflow.com/a/12848306/731081) for more detailed explanation – sonyisda1 Mar 31 '17 at 13:59