Windows: Kill a service that Windows Task Manager does not stop 2
In some cases, Windows Task Manager
cannot stop a certain service. When the user right clicks on the service and selects the Stop Process
option, the status of the service becomes Stopping
but never actually stops. This happens when the developer of the service did not handle properly the signal instructing the service to shut down properly.
A way to stop it by force is to use the taskkill command with the help of the task manager. Press at the same time the keyboard keys Ctrl
+Shift
+Esc
this will show the task manager. In the new window, switch to the tab Services
. Find the service you want to stop and copy from the column PID
the process ID number of the service. In the following example, if we wanted to kill the WinVNC4
service we would copy the number 1828
.
Then, press at the same time the keyboard keys Windows
+R
that will pop up the Run Command
screen. In the input line type the following:
taskkill /pid PID
and replace the PID
with the PID we copied from the task manager before. In our example the input will become:
taskkill /pid 1828
and then hit the OK
button.