0x00000709

Printer Offline on Windows 11: Real Fix for Spooler Hang

Windows 11 shows printer offline when the spooler service stalls or the port gets stuck. Restart the spooler, clear the queue, and disable SNMP status polling.

Quick answer for advanced users

Restart the Print Spooler service, delete the stuck jobs from spool\PRINTERS, then disable SNMP status polling on the printer port in printmanagement.msc. That combo fixes 90% of phantom offline states.

Here's the thing: when Windows says a printer is offline but the printer actually has paper and power, you're almost never looking at a real connectivity issue. What's actually happening is the spooler service—the thing that talks to the printer driver—has stalled. It might have crashed on a malformed job, or the driver is waiting on a status response that never comes. Windows 11 is especially bad about this because it polls the printer's SNMP status over the network, and if the printer doesn't answer in the expected way, Windows assumes the device is gone and flips the status to offline.

I've seen this on HP LaserJets, Brother monochrome lasers, and even cheap inkjets. The trigger is often a print job that got corrupted—maybe the app crashed mid-send, or the document had embedded fonts that the driver choked on. That job sits in the queue, blocking everything behind it, and the spooler eventually gives up.

Fix steps

  1. Restart the Print Spooler service. Press Win + R, type services.msc, and hit Enter. Scroll to Print Spooler, right-click it, and choose Restart. If it's already stopped, start it.
  2. Clear the print queue manually. The spooler restart might not clear stuck jobs. Open an elevated Command Prompt (right-click Start, choose Terminal (Admin)) and run:
    net stop spooler
    del /Q %systemroot%\System32\spool\PRINTERS\*
    net start spooler
    This deletes every pending print job. Any documents you didn't print will need to be sent again—that's unavoidable.
  3. Reconnect the printer. Go to Settings > Bluetooth & devices > Printers & scanners. Click your printer, then Remove device. Re-add it by clicking Add device and selecting it from the list. Windows will reinstall the driver—this often clears a corrupted driver state.
  4. Disable SNMP status polling. This is the real fix for printers that keep going offline even when they're fine. Open printmanagement.msc (Win + R, type it in). Under Print Servers > Printers, right-click your printer and choose Properties. Go to the Ports tab, check the port your printer uses (usually a TCP/IP port), click Configure Port, and uncheck SNMP Status Enabled. Click OK. Windows will now stop asking the printer for its status and assume it's online unless the network connection actually drops.

Why step 4 works: SNMP is a network management protocol that printers use to report ink levels, paper jams, and status. Windows uses it to determine if the printer is alive. But many printers—especially ones on Wi-Fi or with aggressive power-saving modes—don't respond to SNMP polls quickly. Windows interprets a slow or missing response as "offline." Turning it off makes Windows rely on the TCP/IP connection itself, which is far more reliable.

Alternative fixes if the main ones fail

If the printer still shows offline after those steps, you're dealing with either a driver conflict or a deeper network issue.

Update or reinstall the driver manually

Windows Update often installs a generic driver that works but doesn't support your printer's full feature set. Go to the manufacturer's site (HP, Brother, Epson—whoever made it) and download the latest full driver package for Windows 11. Uninstall the current driver first: Settings > Printers & scanners, remove the printer, then run the manufacturer's installer.

Check the printer's IP address

If your printer uses DHCP, its IP can change after a router reboot. Windows still points to the old IP, so the printer seems offline. Print a network configuration page from the printer's menu (usually under Settings > Network). Compare that IP to what Windows sees: open printmanagement.msc, go to your printer's Ports tab, and look at the port address. If they differ, update the port or create a new one with the correct IP. Then set a static IP in your router's DHCP reservation settings so it never changes again.

Use the Windows troubleshooter—sparingly

Microsoft's built-in troubleshooter (Settings > System > Troubleshoot > Other troubleshooters > Printer) can help, but it's hit-or-miss. I've seen it fix driver issues, and I've also seen it do nothing while eating ten minutes of your time. Use it only if the manual steps above feel too intimidating.

Prevention tips

Once you've got the printer back online, you don't want to repeat this dance. Here's what actually keeps it stable:

  • Set a static IP for the printer. Log into your router, find the DHCP reservation table, and assign a fixed IP to the printer's MAC address. This prevents the "offline" false alarm after router reboots.
  • Keep the queue empty. If a print job fails, cancel it immediately. Don't let it sit there—that's how spooler hangs start. You can set Windows to clear failed jobs automatically, but honestly, just check the queue when a print doesn't come out.
  • Update the printer firmware. Manufacturers like HP and Brother release firmware updates that fix SNMP response bugs. Check their support site every few months.
  • Disable SNMP on the port now. If you did step 4 in the fix list, you've already done this. If you skipped it, go back and do it. It's the single most effective prevention measure for phantom offline errors.

One last thing: if you're on a USB connection, the offline issue is almost always a cable or driver problem. Try a different USB port, preferably a USB 2.0 port directly on the motherboard (not a hub). And if you're on Windows 10, the same steps apply—this isn't a Windows 11-exclusive quirk, it's been around since Windows 7.

Related Errors in Hardware – Printers
offline Printer Offline Fix: Wake It Up Without Reinstalling Drivers Printer Says Door Open Even When It’s Closed — Real Fixes 0X00000872 Fix Printer Error 0X00000872 in 30 Seconds or Less Seagate Hard Drive Clicking Noise Recovery Guide

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.