Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Application Configuration Debugging OptionsContent of List Application Configuration Debugging Options.vbsMD5 Hash: D3CDFE24BE36202B5FE70752E0DA5468 |
||
' Description: Lists IIS application configuration debugging options.
strComputer = "." Set objWMIService = GetObject _ ("winmgmts:{authenticationLevel=pktPrivacy}\\" _ & strComputer & "\root\microsoftiisv2") Set colItems = objWMIService.ExecQuery _ ("Select * from IIsWebServiceSetting") For Each objItem in colItems Wscript.Echo "Application Allow Client Debug: " & _ objItem.AppAllowClientDebug Wscript.Echo "Application Allow Debugging: " & _ objItem.AppAllowDebugging Wscript.Echo "ASP Script Error Message: " & _ objItem.AspScriptErrorMessage Wscript.Echo "ASP Script Error Sent To Browser: " & _ objItem.AspScriptErrorSentToBrowser Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |