Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Internet Explorer LAN SettingsContent of List Internet Explorer LAN Settings.vbsMD5 Hash: CFDEF388259B6BE053A2C1549E0DBFBC |
||
' Description: Returns network information (including proxy server information) for Internet Explorer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & _ "\root\cimv2\Applications\MicrosoftIE") Set colIESettings = objWMIService.ExecQuery _ ("Select * from MicrosoftIE_LANSettings") For Each strIESetting in colIESettings Wscript.Echo "Autoconfiguration proxy: " & strIESetting.AutoConfigProxy Wscript.Echo "Autoconfiguration URL: " & strIESetting.AutoConfigURL Wscript.Echo "Autoconfiguration Proxy detection mode: " & _ strIESetting.AutoProxyDetectMode Wscript.Echo "Proxy: " & strIESetting.Proxy Wscript.Echo "Proxy override: " & strIESetting.ProxyOverride Wscript.Echo "Proxy server: " & strIESetting.ProxyServer Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |