batch file - How to call and close while the called executable is running? -
in batch file when call executable prompt window stays open. how hide it?
you can put "start" before name of executable. start executable , exit without waiting finish.
for example,
notepad.exe exit
will not close command prompt window until notepad closed.
start notepad.exe exit
will exit without waiting.
of course, if subsequent actions in batch file dependent on executable finishing of no use you.
Comments
Post a Comment