net stop spooler && del /Q /F /S "%systemroot%\System32\spool\PRINTERS\*.*" && net start spooler
This stops the service, force-deletes all files in the printer queue, and restarts the service automatically.
A Windows service that manages print jobs. It stores pending documents as temporary files on your hard drive, then sends them to the printer. “Clearing the spooler” means stopping the service and deleting those stuck files. clearing printer spooler
For those comfortable with quick commands, this is the most efficient method to stop the service, clear the stuck files, and restart it in one go. Fix print spooler service not running errors in Windows
When a print job gets stuck (due to a corrupted file, communication error, or paper jam), it can block the entire queue. Subsequent jobs won’t print. Clearing the print spooler manually is often the only fix. net stop spooler && del /Q /F /S
This is the "nuclear option" for stuck print jobs. It involves manually deleting the temporary files that are clogging the system.
: Press Windows + R , type services.msc , and hit Enter . Locate Print Spooler in the list, right-click it, and select Stop . “Clearing the spooler” means stopping the service and
⚠️ Editing the registry incorrectly can damage Windows. Back up first.
If you get an error saying "The action can't be completed because the file is open," ensure you have successfully stopped the Print Spooler service in Method 2 before trying to delete the files.
net stop spooler del %systemroot%\System32\spool\printers\* /Q net start spooler