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

Popular posts from this blog

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -

java - Getting corefrences with Standard corenlp package -

jQuery clickable div with working mailto link inside -