We all at one time or another have used the Task Manager to kill some particular process, no doubt the task manager offers a great way to manage processes but have you ever tried to kill multiple processes with the task manager? You can kill only one process at a time. Windows 7 lets you manage processes from the command line too through which you can kill multiple processes simultaneously.
Open the Command Prompt in the Administrative mode and run the tasklist command, it will show you a list of all the running processes.
Now you can kill any particular process by running the Taskkill command. For example to kill Firefox, run the command as:
Taskkill /IM firefox.exe /F
where /F is used to kill the process forcefully. You can also kill any particular process by using it’s ID, the tasklist command displays the process ID’s as well (you can see the PID column in the screenshot). To kill any process using it’s ID, run the command as:
Taskkill /PID 364 /F
Now to kill multiple processes simultaneously, run the above command with the PID’s of all the processes.
Taskkill /PID 266 234 222 /F
It’s that easy. Enjoy!





Pingback: Donkeypuss's Wonderful World of Technology › A quick way to fix “Chrome is already running” annoyances.
Pingback: How To Install Red Alert on Windows 7 | Did It Save