Skip to content

Instantly share code, notes, and snippets.

@mziyabo
Created February 3, 2018 12:59
Show Gist options
  • Save mziyabo/37d13eb35971392a1fb05a2442b9c953 to your computer and use it in GitHub Desktop.
Save mziyabo/37d13eb35971392a1fb05a2442b9c953 to your computer and use it in GitHub Desktop.
Get the version of IIS installed
$w3wpPath = $Env:WinDir + "\System32\inetsrv\w3wp.exe"
If(Test-Path $w3wpPath) {
$productProperty = Get-ItemProperty -Path $w3wpPath
Write-Host $productProperty.VersionInfo.ProductVersion
}
Else {
Write-Host "Not find IIS."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment