How to Clear and Restart Print Spooler in Windows 11
When print jobs become stuck in the queue on Windows 11, the Print Spooler service often becomes unresponsive, preventing any new documents from printing. This guide explains how to resolve the issue by stopping the service, deleting the corrupted temporary print files from your system, and restarting the Print Spooler. You can complete this process quickly using either the Windows Services interface or the Command Prompt.
Method 1: Clear and Restart via Windows Services
Step 1: Stop the Print Spooler Service
- Press
Windows Key + Rto open the Run dialog. - Type
services.mscand pressEnter. - Scroll down the list to find Print Spooler.
- Right-click Print Spooler and select Stop. Keep the Services window open.
Step 2: Delete Stuck Print Queue Files
Press
Windows Key + Ragain to open the Run dialog.Type or paste the following path and press
Enter:C:\Windows\System32\spool\PRINTERSIf prompted for administrator permission, click Continue.
Select all files in this folder by pressing
Ctrl + A.Press
Delete(or right-click and select the trash icon) to permanently clear the stuck print jobs. Do not delete thePRINTERSfolder itself.
Step 3: Start the Print Spooler Service
- Return to the Services window.
- Right-click Print Spooler and select Start.
- Close the Services window and attempt to print your document again.
Method 2: Clear and Restart via Command Prompt
For a faster solution, you can stop the service, clear the queue, and restart it using elevated command line instructions.
Press the
Windows Key, typecmd, right-click Command Prompt, and select Run as administrator.Type the following command to stop the service and press
Enter:net stop spoolerType the following command to delete all queued print files and press
Enter:del /Q /F /S "%systemroot%\System32\Spool\Printers\*.*"Type the following command to restart the service and press
Enter:net start spoolerType
exitand pressEnterto close the Command Prompt.