How to manually force a service to stop if not responding - c06232320
If you have a service that is not responding or showing pending in Windows services that you are unable to stop, use the following directions to force the service to stop.
- Click the Start menu
- Click Run or in the search bar type services.msc
- Press Enter
- Look for the service and check the Properties and identify its service name
- Once found, open a command prompt. Type sc queryex [servicename] .
- Press Enter
- Identify the PID
- In the same command prompt type taskkill /pid [pid number] /f
- Press Enter