Normal
At the end of your bat file add a new line and type in "pause" (no quotes) this way the command window will wait for you to press a key before it closes, it should/could give you an idea of what is going on. Often it will throw an error and instantly just bail out.Once you're done remove the pause and it'll all happen on it's ownAlso in Win7 in the bat file you can use Taskkill, Press [ctrl]+[shift]+[esc] to bring up task manager, click the process tab and find the process you want to kill.I use this to stop uTorrent, so replace uTorrent.exe with the name of your task and you should be good to go.Taskkill /IM uTorrent.exe /FSo maybe a bat file like this: (quotes are required due to spaces in the file path)(you can remove the pause)Taskkill /IM IMON.exe /F"C:\Program Files\Team MediaPortal\MediaPortal\MediaPortal.exe""C:\Program Files\SOUNDGRAPH\iMON\iMON.exe"pause
At the end of your bat file add a new line and type in "pause" (no quotes) this way the command window will wait for you to press a key before it closes, it should/could give you an idea of what is going on. Often it will throw an error and instantly just bail out.
Once you're done remove the pause and it'll all happen on it's own
Also in Win7 in the bat file you can use Taskkill, Press [ctrl]+[shift]+[esc] to bring up task manager, click the process tab and find the process you want to kill.
I use this to stop uTorrent, so replace uTorrent.exe with the name of your task and you should be good to go.
Taskkill /IM uTorrent.exe /F
So maybe a bat file like this: (quotes are required due to spaces in the file path)(you can remove the pause)
Taskkill /IM IMON.exe /F
"C:\Program Files\Team MediaPortal\MediaPortal\MediaPortal.exe"
"C:\Program Files\SOUNDGRAPH\iMON\iMON.exe"
pause