wiki:windows:batch:print_spool_fix
Print Spool Fix
This batch file will:
- Stop the spool service
- Clear ALL print jobs
- 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