Skip to content

Instantly share code, notes, and snippets.

@gsarkarsavo
Forked from Meligy/add-isapi-filter.ps1
Created November 28, 2018 06:54
Show Gist options
  • Save gsarkarsavo/81ad5538f5d359a60355aef859729ab4 to your computer and use it in GitHub Desktop.
Save gsarkarsavo/81ad5538f5d359a60355aef859729ab4 to your computer and use it in GitHub Desktop.
if((Get-WebConfiguration -Filter /system.webServer/isapiFilters/filter |
Where-Object -Property path -EQ $isapiDllPath) `
-eq $null) {
Add-WebConfiguration -Filter /system.webServer/isapiFilters `
-Value @{
name = $isapiName;
path = $isapiDllPath;
preCondition = $preConditionIfAny
} `
-PSPath 'IIS:\';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment