tiistai 5. marraskuuta 2013

How To Kill Processes using Command Prompt in Windows 7 | 8

If your task manager says process canno't be killed or its just stuck, you can always kill a process with command line. Open your command prompt by typing CMD to windows application seachbar and running it as administrator. In CMD type: tasklist


To kill any particular process use the Taskkill command. /F is used to kill the process forcefully. To kill any process using it’s ID, run this command:

Taskkill /PID 2704 /F

Change the PID number to the corresponding from the tasklist command. Thats it.