Cancel Print

M

mcp6453

I accidentally printed a document to a remote printer that is not
available. Canceling or deleting does not delete the print queue. How
can I get rid of it? Task Manager does not permit me to delete the spool
directly. I cannot reboot the machine because of another application
that is running.
 
S

Steve Parry

mcp6453 said:
I accidentally printed a document to a remote printer that is not
available. Canceling or deleting does not delete the print queue. How
can I get rid of it? Task Manager does not permit me to delete the spool
directly. I cannot reboot the machine because of another application
that is running.

Start
Run
type CMD
click OK
<CMD window opens>
type net stop spooler
enter
spooler reports stopped
type net start spooler
enter
type exit
enter
 
J

John John

From a Command Prompt try this:

NET STOP SPOOLER

cd %systemroot%\SYSTEM32\spool\PRINTERS

del *.spl
del *.shd

NET START SPOOLER

That will delete ALL the print jobs. If you only want to delete 1 job
navigate to the folder and delete the corresponding .shd & .spl files.

John
 
M

mcp6453

Steve said:
Start
Run
type CMD
click OK
<CMD window opens>
type net stop spooler
enter
spooler reports stopped
type net start spooler
enter
type exit
enter

Is it possible to run these commands from a batch or command file?

Thanks!
 
S

Steve Parry

mcp6453 said:
Is it possible to run these commands from a batch or command file?

Thanks!

yes just create a batch file with
net stop spooler
net start spooler
 

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