Printer Says Offline in Windows 11 — Why It Happens and the Fix

Printer showing offline in Windows 11 usually comes down to a stuck driver, a power setting, or a stale queue. Here's the order to try.

Cause #1: Windows 11's "Use Printer Offline" Setting Is Stuck

The most common reason your printer shows offline in Windows 11 is that the toggle inside the printer queue got flipped. It happens more than you'd think — usually after a crash, a forced shutdown, or when the print spooler restarts mid-job. Windows remembers that state and keeps the printer offline until you tell it otherwise.

Here's the fix:

  1. Press Win + I to open Settings.
  2. Go to Bluetooth & devices > Printers & scanners.
  3. Click your printer, then click Open print queue.
  4. In the queue window, click Printer in the menu bar.
  5. Look for Use Printer Offline. If it has a checkmark next to it, click it to uncheck.

That's it. The printer should spring back to life immediately. If the menu is grayed out or the checkmark won't clear, close the queue, restart the print spooler (covered below), and try again.

What's actually happening here is that the spooler service was interrupted. The setting isn't something you manually turned on — Windows flips it automatically when it can't communicate with the printer during a job. It's a safeguard, but it gets stuck and needs a manual nudge.

Cause #2: The Print Spooler Service Is Hung

If the offline setting clears but the printer still shows offline, the next suspect is the print spooler itself. This Windows service handles every print job, and it's notoriously fragile. A single bad driver or a corrupted job can freeze the whole thing.

You'll know it's this if your printer is unresponsive even after rebooting the machine. The service might be marked as "Running" in Services, but it's actually choked.

Fix it by restarting the service:

  1. Press Win + R, type services.msc, and hit Enter.
  2. Scroll down to Print Spooler.
  3. Right-click it and select Restart.

If the service won't restart, you've got a deeper problem. Open an elevated Command Prompt and run:

net stop spooler
del /Q %systemroot%\System32\spool\PRINTERS\*
net start spooler

The del line clears the stranded print jobs sitting in the queue. Those stuck jobs are the reason the spooler keeps crashing — they're corrupt, and Windows can't process them. Deleting them is safe; they're just failed print jobs.

After this, try printing a test page. The reason step 3 works is that you're not just restarting the service — you're removing the poisoned data that was making it crash in the first place.

Cause #3: Power Management Is Killing the USB Connection

This one sneaks up on people on laptops and desktops alike. Windows 11 has a power-saving feature that shuts down USB ports that aren't actively used. Your printer sits idle for a few minutes, Windows kills the port, and when you send a new job, the printer can't wake up properly — it shows as offline.

The fix is in Device Manager:

  1. Right-click the Start button and select Device Manager.
  2. Expand Universal Serial Bus controllers.
  3. Look for entries like USB Root Hub or Generic USB Hub. There may be several.
  4. Right-click each one, select Properties, go to the Power Management tab, and uncheck Allow the computer to turn off this device to save power.
  5. Click OK and repeat for every hub.

Yes, that's a lot of clicking. But it's the only way to stop Windows from yanking power from your printer port. If your printer is connected via a USB hub, plug it directly into the PC instead — hubs can have their own power management issues that compound the problem.

This is less common than the first two, but it's the one that keeps coming back after you've "fixed" it. The offline status reappears a few days later because Windows re-enables the power saving on reboot. So if you've done the queue fix and the spooler fix and it still happens, check this next.

Quick Reference Table

CauseSymptomFixTakes About
Use Printer Offline stuckPrinter shows offline after a crash or spooler restartUncheck "Use Printer Offline" in the queue1 minute
Print spooler hungPrinter unresponsive even after rebootRestart spooler, delete stranded jobs in spool folder2 minutes
USB power managementPrinter goes offline after idle time, returns after rebootDisable USB power saving in Device Manager5 minutes
Related Errors in Hardware – Printers
0X80093022 Fix 0X80093022 Copier DLL Error in 5 Minutes 0XC00D1055 Fix 0XC00D1055: Printer or media sink already exists in stream 0XC0000265 Printer Spooler STATUS_TOO_MANY_LINKS 0xC0000265 Fix Error State HP Printer in Error State Stuck – Real Fixes

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.