cancel documents

G

Guest

i am having trouble cancelling a document in the printing queue. I right
click the printer and try to cancel all documents but it does not cancel.It
is one particular document. All of the others cancelled. i just can't get rid
of this one. Any ideas?
 
G

Guest

How to clear the Print Queue of a stubborn document.
Create the following Batch file and call it KillPrint.bat or whatever.
You can copy and paste it to your documents if you like and then run it.

@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