Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/b6bd4c44b91d133886e928d189494b0d to your computer and use it in GitHub Desktop.
Save ssougnez/b6bd4c44b91d133886e928d189494b0d to your computer and use it in GitHub Desktop.
Function StopWebApplicationPool {
Param([string]$name)
$appPool = Get-Item $("IIS:\AppPools\{0}" -f $name)
if ($appPool.State -eq "Started") {
$appPool.Stop()
}
Success
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment