I have a batch file which moves a few files and starts a program and for some reason, after the batch file goes through all the commands in it, it doesn\'t close. The comman
I recommend using:
:exit exit
or calling another file which has:
exit /b which will terminate cmd.exe instead of just the script if it were in the same file.
i think "exit" will should work fine anyway.