Windows – Run an exe and close the command prompt

command linewindows xp

"subfolder\program to run.exe" works but keeps the command prompt open.

I would like the command prompt to close but keep the application open, how do I do this.

Best Answer

The other answer works fine for me in XP, but you can also try the following instead:

start "" "subfolder\program to run.exe" & exit

Related Question