Quick fix: Office may install conflicting print drivers (Send to OneNote 2016, etc.). Open Services.msc → Print Spooler → restart. If keeps crashing: Settings → Bluetooth & devices → Printers & scanners → remove old / unused printers. Or run net stop spooler & del /q /s C:\Windows\System32\spool\PRINTERS\* & net start spooler.
Print Spooler crash after Office install: usually conflicting virtual printers (OneNote, Microsoft Print to PDF, etc.). Remove conflicting printers; restart spooler.
Affects: Windows 11 with Office.
Fix time: ~15 minutes.
What causes this
Office adds virtual printer drivers:
- Send to OneNote 2016: now outdated.
- Microsoft Print to PDF: usually fine.
- Microsoft XPS Document Writer: usually fine.
- Fax: rarely needed.
Conflicts with existing printer drivers, especially when both old and new versions installed. Print Spooler service crashes.
Method 1: Restart Print Spooler and clean queue
The standard route.
- Open Admin Command Prompt.
- Run:
net stop spooler del /q /s C:\Windows\System32\spool\PRINTERS\* net start spoolerStops spooler, clears stuck print jobs, restarts.
- Test print.
- For chronic: also
del /q C:\Windows\System32\spool\drivers\x64\3\*.tmpfor temp files. - For via Services: services.msc → right-click Print Spooler → Restart.
- For PowerShell:
Stop-Service Spooler Get-ChildItem "C:\Windows\System32\spool\PRINTERS" | Remove-Item -Force Start-Service Spooler
This is the standard fix.
Method 2: Remove conflicting printers
For long-term fix.
- Open Settings → Bluetooth & devices → Printers & scanners.
- For each printer / fax / virtual printer: check if needed.
- Remove obsolete:
- Old physical printer no longer used.
- Duplicate entries (Same printer listed twice).
- OneNote 2016 if you don’t use legacy OneNote.
- Fax (if no fax modem).
- Click printer → Remove.
- Confirm.
- For chronic: also remove unused print drivers: Print Management (printmanagement.msc) → All Drivers → right-click unused → Delete.
- For protected drivers (still in use by printer): can’t delete; remove printer first.
- Restart Print Spooler. Test.
This is the cleanup.
Method 3: Reinstall printer drivers
For deeper repair.
- Open Print Management (Win+R →
printmanagement.msc). - Expand Print Servers → [PC name] → Drivers.
- Right-click corrupted driver → Remove driver package. Confirm.
- If can’t remove: stop spooler first.
- Re-add printer: Settings → Bluetooth & devices → Printers & scanners → Add printer.
- For network printer: Windows finds and installs fresh driver.
- For USB printer: plug in; Windows detects.
- For specific printer drivers: download from manufacturer site (HP, Brother, Canon, Epson). Manufacturer drivers often better than Windows generic.
- For chronic spooler crashes: reset Print Spooler dependencies.
sc config spooler depend= RPCSS. Restart.
This is the reinstall route.
How to verify the fix worked
- Print Spooler runs without crashing.
- Printing works for needed printers.
- Settings → Printers & scanners shows clean list.
- Event Viewer: no recent Print Spooler crash events.
If none of these work
If chronic: System file corruption: sfc /scannow + dism /online /cleanup-image /restorehealth. For specific Office install: reinstall Office via uninstall + Microsoft 365 / Office download. For chronic third-party AV interference: temporarily disable, test. For specific app printing failing: that app’s print config. For corporate-deployed printers: Group Policy / Intune may push printers. IT must adjust. For new Office vs old: don’t install both side-by-side. Pick one. For PrintNightmare-related issues: ensure Windows up-to-date for security patches.
Bottom line: Restart Print Spooler service + clean PRINTERS folder. Remove conflicting / unused printers in Settings. Re-install fresh driver from manufacturer if needed. Don’t mix Office versions with overlapping virtual printers.