Batch File Help

orkillakilla

New Member
Ok, so I play a game where you have to open an anti-hack program in order to play, so I wanted to make a batch file to open the game and the anti-hack together. Now I made the batch file and it works, the only problem is, the DOS window of the batch file won't close after both the game and the anti-hack are open. Is there any way to make the DOS window close after they open?

Here is what the batch file looks like:

start anti-hack.exe
"HU - Diablo II.exe"


Thank you in advance.
 
Last edited:
after your command write exit
so it'll be:

start anti-hack.exe
"HU - Diablo II.exe"
exit

(the command start isn't necessary...)
 
I put the exit at the end and it still doesn't close. It will, however, close after I close the game. It did this before I put the exit as well.
 
Back
Top