Starting a program from a batch file then automatically close the cmd cli window
This is handy.. It's based on the DOS start command but you might find when you just use:
start "program pathprogram name"
you will end up with a cmd window staring at you not doing anything and your program hasn't started.
Try:
start "" "program pathprogram name"
Back