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

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -