How to kill a process
Problem:
You cannot stop a process.
Solution:
- Start Windows command line (cmd.exe).
- Type in and execute the following command where <name> is the name of the process or service you want to kill. You can find it in Task Manager or Windows Services Menu (services.msc). The command will show you some info about the process, among which you will see PID which is Process ID.
sc queryex <name>
- Type in and execute the below command swapping <PID> for the PID number you have got using the command from point 2.
taskkill /F /PID <PID>
See also:
Related products: | General (Microsoft 365, Exchange & more) |
Categories: | How-To |
Last modified: | March 29, 2022 |
Created: | August 1, 2014 |
ID: | 389 |