Hi, Use the script in below. It uses the WScript.Network object to enumerate all printer connections on the network and check their status using the GetPrinterStatus method. On Error Resume Next ' Create a printer object Set objPrinter = CreateObject("WScript.Network") ' Get a list of all printers oRead more
Hi,
Use the script in below. It uses the WScript.Network object to enumerate all printer connections on the network and check their status using the GetPrinterStatus method.
How to monitor printers status on a network using VBscript?
Hi, Use the script in below. It uses the WScript.Network object to enumerate all printer connections on the network and check their status using the GetPrinterStatus method. On Error Resume Next ' Create a printer object Set objPrinter = CreateObject("WScript.Network") ' Get a list of all printers oRead more
Hi,
Use the script in below. It uses the
WScript.Networkobject to enumerate all printer connections on the network and check their status using theGetPrinterStatusmethod.The status of each printer is printed to the console.
Hope this will help.
See less