Skip to content

Instantly share code, notes, and snippets.

@jhorsman
Created October 12, 2017 19:49
Show Gist options
  • Select an option

  • Save jhorsman/0cb8ea20efa965cb0a0b24a5d5ee9c1f to your computer and use it in GitHub Desktop.

Select an option

Save jhorsman/0cb8ea20efa965cb0a0b24a5d5ee9c1f to your computer and use it in GitHub Desktop.
Run iisreset over PowerShell remoting
Invoke-Command -ComputerName @("server1", "server2") -ScriptBlock {
Invoke-Expression "iisreset"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment