Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List ISAPI FiltersContent of List ISAPI Filters.vbsMD5 Hash: C7F48FF8C112F2392B12B303874C3564 |
||
' Description: Displays a list of ISAPI filters, their path, and their current state.
strComputer = "." Set objWMIService = GetObject _ ("winmgmts:{authenticationLevel=pktPrivacy}\\" _ & strComputer & "\root\microsoftiisv2") Set colItems = objWMIService.ExecQuery _ ("Select * from IIsFilterSetting") For Each objItem in colItems Wscript.Echo "Filter Path: " & objItem.FilterPath Wscript.Echo "Filter State: " & objItem.FilterState Wscript.Echo "Name: " & objItem.Name Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |