Random()
Windows 7: Kill a process by name from CMD
by admin on Apr.17, 2012, under Random()
The shell command to kill processes is taskkill. In order to kill a process by it’s image name (also known as the name of the executable, e.g. notepad.exe) you’d have to type a command such as this one:
taskkill /im notepad.exe
That’s basically it. 😉