Can not delete print jobs or files in print queue

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Why does it take so long to delete a print job? I just want to print a
document, and it seams to screw up a lot more lately with funny characters
coming out, and deleting the job or turning off the printer doesn't work. 10
minutes to delet a job is too long.

What is in C:\WINDOWS\system32\spool\PRINTERS?
Mine shows FP00001.SHD and FP00001.SPL the last one is listed as a shockwave
object?

Please help me fix the printer. thanks.
 
Kurt M. Sanger said:
Why does it take so long to delete a print job? I just want to print a
document, and it seams to screw up a lot more lately with funny characters
coming out, and deleting the job or turning off the printer doesn't work. 10
minutes to delet a job is too long.

What is in C:\WINDOWS\system32\spool\PRINTERS?
Mine shows FP00001.SHD and FP00001.SPL the last one is listed as a shockwave
object?

Please help me fix the printer. thanks.

Create a batch file purge.bat and run it to delete
all pending print jobs.
@echo off
echo.
echo Purging the print queue . . .
net stop Spooler
echo Deleting all print jobs . . .
ping localhost -n 4 > nul
del /q %SystemRoot%\system32\spool\printers\*.*
net start Spooler
echo Done!
ping localhost -n 4 > nul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top