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

  • Thread starter Thread starter Becky B
  • Start date Start date
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.
 
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
 
Back
Top