Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Proxy Server InformationContent of List Proxy Server Information.ps1MD5 Hash: 509764C12021AD4D885694041CDC1201 |
||
$strComputer = "."
$colItems = get-wmiobject -class "Win32_Proxy" -namespace "root\CIMV2" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Caption: " $objItem.Caption write-host "Description: " $objItem.Description write-host "Proxy Port Number: " $objItem.ProxyPortNumber write-host "Proxy Server: " $objItem.ProxyServer write-host "Server Name: " $objItem.ServerName write-host "Setting ID: " $objItem.SettingID write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |