7131 shaares
Open the Command Prompt as Administrator and run the Tasklist command; it will show you a list of all the running processes.
To view the processes, type Taskview and hit Enter.
To kill any particular process, use the Taskkill command. For example, to kill Chrome, run the command as:
Taskkill /IM chrome.exe /F
Where /F is used to kill the process forcefully. You can also kill any particular process by using its 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 its ID, run the command as:
Taskkill /PID 2704 /F