My question is this - is there any way to also stop explorer.exe prior to running the game? When I add explorer to the batch file as a process to kill I can't get anything to launch after that, ie explorer closes and then nothing happens. I'm sure it must be possible as I've Googled and found gamers who do it but only found one suggestion of how to which doesn't work for me.
Heres the section of the batch file that isn't working (I'm using Sysinternals PSKill as 'taskkill' doesn't work in XP Home):
CODE
pskill -t explorer.exe
START /wait C:\Papyrus\NASCAR~1\Nr2003.exe
START explorer.exe
exit
START /wait C:\Papyrus\NASCAR~1\Nr2003.exe
START explorer.exe
exit
The "pskill -t" command works fine for every other program and the line "START /wait C:\Papyrus\NASCAR~1\Nr2003.exe" works fine, just can't get it to launch after closing explorer
(Apologies if this is a really simple question but I just can't find the answer)