User Tools

Site Tools


wiki:windows:batch:print_spool_fix

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
wiki/windows/batch/print_spool_fix.txt · Last modified: 2016/09/13 15:54 by 127.0.0.1