Print Spool Fix

This batch file will:

  1. Stop the spool service
  2. Clear ALL print jobs
  3. Restart spool service

It works on all versions of Windows.

Batch File Code

@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