Open a command prompt and query the service using
sc queryex MyServiceName
Where MyServiceName is the service that won't stop.
This will print a bunch of information, one item will be the PID. Use the PID (in this case 3604) from above and kill the process:
taskkill /PID 3604 /F
No comments:
Post a Comment