Can't cancel documents in print queue

G

Guest

This is a problem that I have experienced in the past on different systems
and with different printers. I want to cancel a document in the print queue
so I do so and it says "deleting" but it doesn't. I've tried, re-booting,
switching off the printer, every combination of things you can imagine but
it's still there, in my system tray, the printer icon with a red ?

Anyone know how to forcibly flush the printer queue?
 
G

Guest

Using a word editing program such as Notepad or Wordpad, create the
below BAT file. You can just copy and paste. Name, Save and run it as
KillPrintJob.bat and it will clear the print queue.

@echo off
net stop "print spooler"
del /q "%SystemRoot%\system32\spool\PRINTERS\*.*"
net start "print spooler"
ping localhost -n 5 > 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

Top