Sometimes the documents to be printed in queue are not able to get removed. You may try to hard reset the printer but it usually so happens that even after restarting the queue remains and and subsequent documents to be printed stay on the queue.
use this script to remove the spooling error you may get trying to remove documents from printing.
@echo off
net stop "print spooler"
del /q "%SystemRoot%\system32\spool\PRINTERS\*.*"
net start "print spooler"
ping localhost -n 5 > nul
save the above script in a .BAT file and run it.
Sunday, February 10, 2008
Subscribe to:
Posts (Atom)