Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Pause All Printers with Empty Print QueuesContent of Pause All Printers with Empty Print Queues.vbsMD5 Hash: 154B9E8A0878F1FB8B7459F4CB618C6B |
||
' Description: Pauses any printers that have no pending print jobs.
strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colInstalledPrinters = objWMIService.ExecQuery _ ("Select * from Win32_Printer") For Each objPrinter in colInstalledPrinters Set colPrintJobs = objWMIService.ExecQuery _ ("Select * from Win32_PerfFormattedData_Spooler_PrintQueue " _ & "Where Name = '" & objPrinter.Name & "'") For Each objPrintQueue in colPrintJobs If objPrintQueue.Jobs = 0 and objPrintQueue.Name <> "_Total" Then objPrinter.Pause() End If Next Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |