Enumerate printer connections
Syntax myObject.EnumPrinterConnections Example Set WshNetwork = WScript.CreateObject("WScript.Network") Set oPrinters = WshNetwork.EnumPrinterConnections For i = 0 to oPrinters.Count - 1 Step 2 WScript.Echo "Port " & oPrinters.Item(i) & " = " & oPrinters.Item(i+1) Next
”Utility is when you have one telephone, luxury is when you have two, opulence is when you have three — and paradise is when you have none” ~ Doug Larson (English middle-distance runner)
Related:
Printer, set default printer - WshNetwork.SetDefaultPrinter
Printer, remove printer - WshNetwork.RemovePrinterConnection
Equivalent Windows CMD command:
NET VIEW - to view a list of printers
Equivalent PowerShell cmdlet: GWMI -CL "Win32_Printer" -Name "root\Cimv"
-comp $strComputer