Here is a script to delete all jobs that are stuck on the print queue.
Just copy the code -> paste in notepad and save it on your desktop.
delete_print_jobs.bat
1 2 3 4 5 6 7 8 9 10 |
@echo off echo Stopping print spooler. echo. net stop spooler echo deleting temp files. echo. del %windir%\system32\spool\printers\*.* /q echo Starting print spooler. echo. net start spooler |
After that, double click on the script and wait until it completes the task