Last active
August 25, 2020 18:33
-
-
Save Albejr/35a034ffc7fddca1cd64085dacb857b0 to your computer and use it in GitHub Desktop.
Stop Windows Service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
https://support.4it.com.au/article/how-to-kill-a-windows-service-which-is-stuck-at-stopping | |
*/ | |
CMD (administrador) | |
sc queryex [SERVICENAME] | |
taskkill /f /pid [PID] | |
OU | |
taskkill /f /fi "SERVICES eq [SERVICENAME]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment