A Batch File

Does anyone know how to make a batch file to close od run a game and then open od up again. I'm fairly sure I know how to get the game to run and od to open up when the game is closed, what I'm not sure about is how to close od from a batch file.

#59187

I use a program called "Batch File". I use it for when i run GTA3. Works great for grouping startup programs too. Here's the link:

http://www.outertech.com/index.php?_charis...346712395f97ee1

It's freeware :own:

#60216

Very similar to Batch Run, but is limited to stopping only 6 processes.

#60246

taskkill /f /im Objectdock.exe

start /wait "%gamepath%"

start %objectdockpath%

exit

or of the game uses a loader use this

taskkill /f /im Objectdock.exe

start "%gamepath%"

pause

start %objectdockpath%

exit

that should do the trick

-The Unknown

#62019