Monday, April 4, 2011

Flush and clear a jammed print job Queue

You have 4 options !

1) Reboot.

This solves the problem and most usually do this.


2) Manually flush the print queue.

Type services.msc in Windows start menu search bar and hit enter to open Services. Navigate down to Print Spooler. Rt click on this services and 'Stop' this service.


Next navigate to C:\Windows\System32\spool\PRINTERS folder and delete all the CONTENTS of this folder.

Now rt click again on the Print Spooler service and restart it.

Refresh the print queue. Your problem should have been solved.


3) Copy-paste the following in Notepad and save it as a .bat file:
@echo off
echo Stopping print spooler.
echo.
net stop spooler
echo Erasing Temporary Junk Printer Documents
echo.
del /Q /F /S “%systemroot%\System32\Spool\Printers\*.*
echo Starting print spooler.
echo.
net start spooler
Run the bat file when the need arises. Alternatively, you may also download this ready-made bat file : fixprintq.

No comments:

Post a Comment