- User ID
- 1
- Joined
- 7 Jan 2019
- Messages
- 1,505
- Reaction score
- 120
- Points
- 63
Here's the simple script to clear printer spooler on Windows:
Copy all of the three commands above and save to a .bat file and run it whenever needed
Works with the Windows 10 & Server OS
Let me know if you find this script useful by commenting down below
Code:
net stop spooler
del %systemroot%\System32\spool\printers\* /Q /F /S
net start spooler
Copy all of the three commands above and save to a .bat file and run it whenever needed

Works with the Windows 10 & Server OS

Let me know if you find this script useful by commenting down below
