omf #1 Posted September 2, 2015 I have been messing with this and I have added the task kill command in just before the both virtualjaguar calls so it deals with any open instances which I noticed were building up when doing a lot of compiles so maybe a good idea to add something like the below to the batch file just before the virtualjaguar call? rem kill the virtualjaguar process to keep things tidy, two taskkill's are needed because sometimes it leaves the process running taskkill /IM virtualjaguar.exe >> %TEMPDIR%\build.log taskkill /IM virtualjaguar.exe >> %TEMPDIR%\build.log don't know why but in some cases it leaves a process running so it is necessary to have 2 taskkill's to get rig of everything Quote Share this post Link to post Share on other sites
sh3-rg #2 Posted September 2, 2015 That wouldn't work for me, I like to run multiple instances to compare changes side-by-side. Quote Share this post Link to post Share on other sites
ggn #3 Posted September 2, 2015 Yup it can get confusing and complex because you then need too keep track of the process' PID and kill explicitly that. Never mind what could happen if running under linux/mac (yes, it's been a while since I tried it from linux but it should mostly work there). Quote Share this post Link to post Share on other sites
omf #4 Posted September 2, 2015 fair comment, it is good for me however while messing about with 95% useless code that does basically SQRT(diddly) Quote Share this post Link to post Share on other sites