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/6dbece3c999766e5c6386265ae084165 to your computer and use it in GitHub Desktop.
Save ssougnez/6dbece3c999766e5c6386265ae084165 to your computer and use it in GitHub Desktop.
Function StartWebApplicationPool {
Param([string]$name)
$appPool = Get-Item $("IIS:\AppPools\{0}" -f $name)
if ($appPool.State -eq "Stopped") {
$appPool.Start()
}
Success
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment