Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Internet Explorer LAN SettingsContent of List Internet Explorer LAN Settings.ps1MD5 Hash: F8DDDD34A380F66AE08293A1529D7FB0 |
||
$strComputer = "."
$colItems = get-wmiobject -class "MicrosoftIE_LanSettings" -namespace "root\CIMV2\Applications\MicrosoftIE" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Auto-Configuration Proxy: " $objItem.AutoConfigProxy write-host "Auto-Configuration URL: " $objItem.AutoConfigURL write-host "Auto-Proxy Detection Mode: " $objItem.AutoProxyDetectMode write-host "Caption: " $objItem.Caption write-host "Description: " $objItem.Description write-host "Proxy: " $objItem.Proxy write-host "Proxy Override: " $objItem.ProxyOverride write-host "Proxy Server: " $objItem.ProxyServer write-host "Setting ID: " $objItem.SettingID write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |