Deleting a Print Job on my printer that won't delete..

B

Becky B

How can I delete a print job that won't delete? I've tried a warm boot,
cold boot, turning off my computer and printer. Nothing works. I'm
working on my final and need to print a paper. Please help! Thanks
Becky B.
 
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