To kill a VBS script from DOS run 'tasklist'. Then you will see a list of running processes. Find the one called wscript.exe. Now to kill it I prefer to use the PID number. So I use the command: c:\>taskkill /PID <number here>. You can also use the /F switch to force the shutdown of the process.