Skip to content

Instantly share code, notes, and snippets.

@glassdfir
Last active February 19, 2016 05:09
Show Gist options
  • Select an option

  • Save glassdfir/ff05649c91bf812d0f9c to your computer and use it in GitHub Desktop.

Select an option

Save glassdfir/ff05649c91bf812d0f9c to your computer and use it in GitHub Desktop.
#The nice way
Stop-Computer -computerName ComputerX -force
#Old school
shutdown -s -f -t 0 -m ComputerX
#The BSOD way
get-process -computername ComputerX| stop-process -force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment