Hi I am trying to view list of isapi filters that are currently configured to IIS. I am using
C:\Windows\System32\inetsrv\appcmd.exe list config /section:isapiFilters
Which gives me the output:
< system.webServer > < isapiFilters > < filter name="ASP.Net_2.0.50727-64" path="C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_filter.dll" enabled ="true" enableCache="true" preCondition="runtimeVersionv2.0,bitness64" / > < filter name="ASP.Net_4.0_32bit" path="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_filter.dll" enabled="tru e" enableCache="true" preCondition="runtimeVersionv4.0,bitness32" / > < filter name="ASP.Net_4.0_64bit" path="C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_filter.dll" enabled="t rue" enableCache="true" preCondition="runtimeVersionv4.0,bitness64" /> < filter name="shibboleth" path="C:\opt\shibboleth-sp\lib64\shibboleth\isapi_shib.dll" enabled="true" /> < /isapiFilters> < / system.webServer>
I want to filter this xml out by only displaying the filter name "shibboleth" Im trying to follow this blog but I'm looking for extra guidance https://blogs.iis.net/eokim/understanding-appcmd-exe-list-set-config-configurationpath-section-name-parameter-name-value