Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Printer Port PropertiesContent of List Printer Port Properties.vbsMD5 Hash: 5977AC2567B0EC1DBFC80D0ED5DF9E2A |
||
' Description: Lists properties of all the TCP/IP printer ports installed on a computer.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colPorts = objWMIService.ExecQuery _ ("Select * from Win32_TCPIPPrinterPort") For Each objPort in colPorts Wscript.Echo "Description: " & objPort.Description Wscript.Echo "Host Address: " & objPort.HostAddress Wscript.Echo "Name: " & objPort.Name Wscript.Echo "Port Number: " & objPort.PortNumber Wscript.Echo "Protocol: " & objPort.Protocol Wscript.Echo "SNMP Community: " & objPort.SNMPCommunity Wscript.Echo "SNMP Dev Index: " & objPort.SnMPDevIndex Wscript.Echo "SNMP Enabled: " & objPort.SNMPEnabled Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |