Skip to content

Instantly share code, notes, and snippets.

@ctigeek
Created November 2, 2015 14:03
Show Gist options
  • Select an option

  • Save ctigeek/a3b1dd608e09433c48c3 to your computer and use it in GitHub Desktop.

Select an option

Save ctigeek/a3b1dd608e09433c48c3 to your computer and use it in GitHub Desktop.
Logout every user on a machine with extreme prejudice.
function Logout-AllUsers($computerName) {
(gwmi win32_operatingsystem -ComputerName $computerName).Win32Shutdown(4)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment