Why Print Spooler Crashes After Installing Office on Windows 11
🔍 WiseChecker

Why Print Spooler Crashes After Installing Office on Windows 11

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.

Symptom: Print Spooler crashes after installing Office on Windows 11.
Affects: Windows 11 with Office.
Fix time: ~15 minutes.

ADVERTISEMENT

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.

  1. Open Admin Command Prompt.
  2. Run:
    net stop spooler
    del /q /s C:\Windows\System32\spool\PRINTERS\*
    net start spooler

    Stops spooler, clears stuck print jobs, restarts.

  3. Test print.
  4. For chronic: also del /q C:\Windows\System32\spool\drivers\x64\3\*.tmp for temp files.
  5. For via Services: services.msc → right-click Print Spooler → Restart.
  6. For PowerShell:
    Stop-Service Spooler
    Get-ChildItem "C:\Windows\System32\spool\PRINTERS" | Remove-Item -Force
    Start-Service Spooler

This is the standard fix.

ADVERTISEMENT

Method 2: Remove conflicting printers

For long-term fix.

  1. Open Settings → Bluetooth & devices → Printers & scanners.
  2. For each printer / fax / virtual printer: check if needed.
  3. 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).
  4. Click printer → Remove.
  5. Confirm.
  6. For chronic: also remove unused print drivers: Print Management (printmanagement.msc) → All Drivers → right-click unused → Delete.
  7. For protected drivers (still in use by printer): can’t delete; remove printer first.
  8. Restart Print Spooler. Test.

This is the cleanup.

Method 3: Reinstall printer drivers

For deeper repair.

  1. Open Print Management (Win+R → printmanagement.msc).
  2. Expand Print Servers → [PC name] → Drivers.
  3. Right-click corrupted driver → Remove driver package. Confirm.
  4. If can’t remove: stop spooler first.
  5. Re-add printer: Settings → Bluetooth & devices → Printers & scanners → Add printer.
  6. For network printer: Windows finds and installs fresh driver.
  7. For USB printer: plug in; Windows detects.
  8. For specific printer drivers: download from manufacturer site (HP, Brother, Canon, Epson). Manufacturer drivers often better than Windows generic.
  9. 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.

ADVERTISEMENT