Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Proxy Server InformationContent of List Proxy Server Information.vbsMD5 Hash: 2853EEF61779392A5DF202EA9F9A63EF |
||
' Description: Returns information about the Internet proxy server used by a computer.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_Proxy") For Each objItem in colItems Wscript.Echo "Proxy Port Number: " & objItem.ProxyPortNumber Wscript.Echo "Proxy Server: " & objItem.ProxyServer Wscript.Echo "Server Name: " & objItem.ServerName Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |