Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Internet Explorer Connection Summary InformationContent of List Internet Explorer Connection Summary Information.vbsMD5 Hash: 46B5AB873D3EFA76507F00D9C45DB4DA |
||
' Description: Returns basic connection information (including whether HTTP 1.1 has been enabled) for Internet Explorer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\root\cimv2\Applications\MicrosoftIE") Set colIESettings = objWMIService.ExecQuery _ ("Select * from MicrosoftIE_ConnectionSummary") For Each strIESetting in colIESettings Wscript.Echo "Connection preference: " & _ strIESetting.ConnectionPreference Wscript.Echo "HTTP 1.1. enabled: " & strIESetting.EnableHTTP11 Wscript.Echo "Proxy HTTP 1.1. enabled: " & strIESetting.ProxyHTTP11 Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |