Skip to content

Instantly share code, notes, and snippets.

@bmorrisondev
Created March 20, 2020 21:54
Show Gist options
  • Save bmorrisondev/e2ff00f1b16dc0a902aa16c6ec9b5729 to your computer and use it in GitHub Desktop.
Save bmorrisondev/e2ff00f1b16dc0a902aa16c6ec9b5729 to your computer and use it in GitHub Desktop.
Check if an IIS Site exists using PowerShell
if((Get-IISSite -Name "IisSiteName") -eq $true) {
# The site exists, do something
} else {
# The site doesnt exist.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment