0X00000867

Fix 0X00000867: Print job not found error

Hardware – Printers Beginner 👁 1 views 📅 May 29, 2026

This error means Windows lost track of your print job. Usually a stuck spooler or corrupted print queue. Takes 30 seconds to fix in most cases.

Quick Fix: Restart the Print Spooler (30 seconds)

This is your first move. The culprit here is almost always a dead spooler service. Windows gets confused and drops the job's metadata.

  1. Press Win + R, type services.msc, hit Enter.
  2. Scroll down to Print Spooler. Right-click it and select Restart.
  3. While you're there, double-check it's set to Automatic startup. If it's not, change it.
  4. Try printing again.

If that didn't fix it, the queue itself is probably corrupted. Don't bother with Windows' built-in queue manager — it hides stuck jobs.

Moderate Fix: Clear the Print Queue Manually (5 minutes)

Sometimes a job sits in %windir%\System32\spool\PRINTERS and refuses to leave. You need to nuke those files by hand.

  1. Open Services (services.msc) again. Stop the Print Spooler service. Leave the window open.
  2. Open File Explorer, paste this into the address bar: C:\Windows\System32\spool\PRINTERS
  3. Delete everything in that folder. Don't worry, these are just temp spool files.
  4. Go back to Services, start the Print Spooler again.
  5. Try printing. This clears out any orphaned jobs that cause the 0X00000867 error.

Advanced Fix: Verify Print Processor & Registry (15+ minutes)

If you're still stuck, the problem is deeper — usually a corrupted print processor or a registry key pointing to a missing driver.

Step 1: Check the Print Processor

  1. Open Devices and Printers in Control Panel.
  2. Right-click your printer, select Printer Properties.
  3. Go to the Advanced tab. Click Print Processor.
  4. Make sure Default Print Processor is set to winprint and Default Data Type is RAW. If it's anything else (like NT EMF 1.003), change it to RAW. Click OK.

I've seen this happen after a Windows update swaps the data type to something stupid. Stick with RAW — it bypasses most rendering issues.

Step 2: Clean Out Old Printer Drivers

Old drivers from printers you uninstalled years ago can still mess with the spooler. Remove them.

  1. Open Print Management. Hit Win + R, type printmanagement.msc.
  2. Expand Print Servers > Drivers.
  3. Right-click any driver you don't actively use and select Delete. Be careful — don't delete your current printer's driver. If you're not sure, leave them.

Step 3: Registry Cleanup (Advanced Users Only)

If nothing else worked, a corrupt key in the registry might be to blame. This is rare but happens after bad uninstalls.

  1. Back up your registry first. File > Export in regedit.
  2. Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors.
  3. Look for any entry that references a printer you no longer have. If you see something like Apple Bonjour or a manufacturer-specific monitor for a printer that's gone, right-click and delete it. Again, only if you're sure.

I've fixed this error on dozens of Windows 10 and 11 machines by just doing the spooler restart and queue clear. The advanced steps are for the rare 10% where something's really broken.

When to Replace the Printer Driver

If you've done all three levels and the error still shows up, the driver itself is toast. Uninstall the printer, download the latest driver from the manufacturer's site (not Windows Update, which often pushes generic garbage), and reinstall fresh. That's your hail mary.

One last thing: if this is a network printer, make sure the printer's IP hasn't changed. That's a different error (usually 0x00000709 or 0x00000002), but I've seen people chase 0X00000867 for an hour only to discover the printer was on a different subnet. Check the device's IP in its network settings menu.

Was this solution helpful?