Can't cancel print job

P

Phil

Hi,
Why is it I can't cancel a print job without waiting 15-20 minutes? When
click on the print job and select "Cancel" it shows "Deleting - Printing" as
the status but takes forever to delete the job. If this is a Vista problem I
would think Mircosoft would consider fixing it..........
 
M

Mick Murphy

If this is the Printer's Manufacturer's problem, I would suggest that they
fix it!
Contact them and/or uninstall/reinstall their software.
 
P

Phil

I don't believe it is a printer problem. I have an epson and an HP and I
have the same problem on both......
 
B

Bill Sharpe

Phil said:
Hi,
Why is it I can't cancel a print job without waiting 15-20 minutes? When
click on the print job and select "Cancel" it shows "Deleting - Printing" as
the status but takes forever to delete the job. If this is a Vista problem I
would think Mircosoft would consider fixing it..........

Here is a batch file that will cancel print jobs. It works in XP, but
I'm not sure if the path in the "del" line is correct for Vista.

@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

Bill
 
F

Ferd Burfel

It's a USB Printing Support problem. It happens in 2000 and XP.

Bill's batch file does what I usually do to clear it, in a much more
efficient manner I might add.

Ferd
 

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

Similar Threads

can't cancel print job 5
Can't cancel print job 3
cancel print job 1
Print Job will not delete 4
Can't cancel a print job 1
windows & printers 3
delete a print job 4
Printer won't cancel print job 1

Top