Fix Printer Paper Jam With A Simple Batch File

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

[via Reddit]
  • Share this article!

    • Digg this!
    • Bookmark on Reddit
    • Bookmark at Delicious
    • Stumble this!
    • Share this post at Facebook
    • Tweet this!
    • Share on Yahoo! Buzz
    • Add AddictiveTips to your Technorati favorites
    • Share on Friendfeed
This entry was posted in Windows and tagged . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

2 Comments

  1. Posted March 17, 2010 at 5:13 pm | Permalink

    Thank you, I was getting extremely frustrated with my Lexmark, it was about to be recycled into plastic coffee cups.

  2. Posted March 18, 2010 at 1:36 pm | Permalink

    Great tip, thanks a lot!

9 Trackbacks

  1. [...] does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips] [...]

  2. [...] Fix Printer Paper Jam [Repair] [...]

  3. [...] 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] [...]

  4. [...] nice enough workaround. Why does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips] Share submit_url = [...]

  5. [...] 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). [...]

  6. [...] does it take around seventy-two eons to cancel a print job? [Reddit via Addictive Tips; imagem The Oatmeal] Categoria:  [...]

  7. [...] 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 [...]

  8. By Evitar esperas al cancelar impresión on March 28, 2010 at 4:52 pm

    [...] Si tienes una Lexmark, es necesario agregar el siguiente código después de la “net stop spooler”: sc config spooler depend = RPCSS | Fuentes [...]

  9. [...] 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 [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


More in Windows (5 of 5 articles)