Any way to write a Windows .bat file to kill processes? [closed]
You can do this with ‘taskkill‘. With the /IM parameter, you can specify image names. Example: taskkill /im somecorporateprocess.exe You can also do this to ‘force‘ kill: Example: taskkill /f /im somecorporateprocess.exe Just add one line per process you want to kill, save it as a .bat file, and add in your startup directory. Problem … Read more