Skip to content

Instantly share code, notes, and snippets.

@Albejr
Last active August 25, 2020 18:33
Show Gist options
  • Save Albejr/35a034ffc7fddca1cd64085dacb857b0 to your computer and use it in GitHub Desktop.
Save Albejr/35a034ffc7fddca1cd64085dacb857b0 to your computer and use it in GitHub Desktop.
Stop Windows Service
/*
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