There are two big annoyances with Printers, one is when Windows cannot kill the print job and second is when the paper is stuck. In both situations hitting the Cancel button is useless, since Windows can in fact never kill the print job while the temp file is created and the job is still in use.
To fix this issue, you need to first open the task manager, stop spoolsv.exe service, and then delete everything inside the following directory,
C:\windows\system32\spool\printers\
Now open Run dialog box, enter spoolsv.exe and hit Enter. Doing this will run the spoolsv.exe service again.
If you face this problem frequently, why not create a simple batch file which can perform all these actions for you? To do so, copy the following text in the notepad and save it as “AddictiveTipsFixPrinter.bat”:
@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
To make it easier, we have provided the batch file below. All you need to do is to double-click it and try printing again.
If you have Lexmark printer, you need to add the following code after the “net stop spooler” command:
sc config spooler depend= RPCSS
This is important because Lemark printer can seriously mess up the services and makes it impossible to start the print spooler. Thanks goes to Print Flush for the code.
Download AddictiveTipsFixPrinter
2 Comments
Thank you, I was getting extremely frustrated with my Lexmark, it was about to be recycled into plastic coffee cups.
Great tip, thanks a lot!
9 Trackbacks
[...] does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips] [...]
[...] Fix Printer Paper Jam [Repair] [...]
[...] As several users on Reddit point out, this isn’t something you’ll want to do on a print server—at work, for example—because it’ll cancel everyone’s print jobs and not just your own. But if you commonly face this annoyance on your personal printer, the batch file or method described above looks like a nice enough workaround. Why does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips] [...]
[...] nice enough workaround. Why does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips] Share submit_url = [...]
[...] Así que vamos a simplificarnos la vida con este archivito que encontré y lo comparto con ustedes (con los debidos créditos para http://www.addictivetips.com). [...]
[...] does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips; imagem The Oatmeal] Categoria: [...]
[...] la única persona con ese problema pues esto es algo que le pasa a todo mundo, pero por suerte en Addictive Tips encontré una solución muy efectiva. Y es que hay dos grandes molestias con las impresoras, uno es [...]
[...] Si tienes una Lexmark, es necesario agregar el siguiente código después de la “net stop spooler”: sc config spooler depend = RPCSS | Fuentes [...]
[...] la única persona con ese problema pues esto es algo que le pasa a todo mundo, pero por suerte en Addictive Tips encontré una solución muy efectiva. Y es que hay dos grandes molestias con las impresoras, uno es [...]