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