Fix Network Printer Disappears After Sleep on Windows 11
🔍 WiseChecker

Fix Network Printer Disappears After Sleep on Windows 11

Quick fix: Open Settings → Bluetooth & devices → Printers & scanners → (your printer) → Printer properties → Ports tab and switch from WSD port to a Standard TCP/IP Port with the printer’s reserved IP. WSD-based connections are the most common cause of network printers disappearing after sleep.

Your network printer works fine when you first set it up. After the PC sleeps, you come back and the printer is greyed out — printer not found, queue empty, or marked Offline. The printer is still powered on, still has its IP, still responds to ping. Windows just lost the connection. The fix is to switch the connection type from the auto-discovery WSD protocol to a fixed TCP/IP port.

Symptom: Network printer disappears or goes offline after PC wakes from sleep, despite the printer being powered on.
Affects: Windows 11 (and Windows 10) network printer connections, particularly via WSD (Web Services for Devices).
Fix time: ~10 minutes.

ADVERTISEMENT

What causes this

Windows 11 supports several network printer connection types. WSD (Web Services for Devices): auto-discovery via multicast — Windows finds the printer on the LAN. Works great until the PC sleeps; on wake, Windows queries for the printer’s WSD response within a short timeout and considers it “disappeared” if the response is slow. Standard TCP/IP Port: a fixed IP address. Windows connects directly to that IP without auto-discovery. Survives sleep cycles because there’s nothing to rediscover. IPP / AirPrint: similar to WSD but more reliable on modern printers.

The fix is to either replace WSD with a fixed TCP/IP port or reserve the printer’s IP at the router so WSD has a stable target.

Method 1: Switch the printer to a Standard TCP/IP Port

The durable fix. Bypasses WSD’s discovery weakness.

  1. Find the printer’s IP address: print a network configuration page from the printer’s front panel (varies by model — typically Setup → Reports → Network Config). Note the IP, e.g., 192.168.1.50.
  2. Reserve the IP at your router so it doesn’t change. Log into the router’s admin page, find the DHCP reservation list, add the printer’s MAC address (from the same network config page) with the desired IP.
  3. On Windows: Settings → Bluetooth & devices → Printers & scanners → click the printer → Printer properties.
  4. Switch to the Ports tab.
  5. Click Add Port.
  6. Select Standard TCP/IP Port. Click New Port.
  7. Enter the printer’s reserved IP. Port name auto-fills. Click Next.
  8. Wait for detection. Choose Generic Network Card if asked for device type. Click Next, then Finish.
  9. Back in the Ports tab, untick the WSD port for the printer and tick the new TCP/IP port. Click Apply → OK.
  10. Sleep the PC and wake. The printer should still be available.

Standard TCP/IP ports are the most reliable connection type for network printers — used by IT in corporate environments for exactly this reason.

ADVERTISEMENT

Method 2: Disable bidirectional polling on the printer port

Use when Method 1 helps but the printer still occasionally drops to Offline.

  1. In Printers & scanners → (your printer) → Printer properties → Ports tab:
  2. Untick Enable bidirectional support at the bottom.
  3. Click Apply → OK.
  4. This stops Windows from continuously polling the printer for status, which is the main source of false Offline reports.
  5. Trade-off: you lose ink-level reporting and some advanced status alerts. For most home/office use this is acceptable.

Combined with Method 1 (TCP/IP port), this produces the most reliable connection — Windows talks to the printer only when actually printing.

Method 3: Disable Wake-on-LAN power management on the network adapter

Use when the issue is Windows-side aggressive sleep behavior on the network adapter, dropping the connection.

  1. Open Device Manager (Win + X → Device Manager).
  2. Expand Network adapters. Right-click your Wi-Fi or Ethernet adapter → Properties.
  3. Switch to the Power Management tab.
  4. Uncheck Allow the computer to turn off this device to save power.
  5. If you also need WoL for other purposes, ensure Allow this device to wake the computer is ticked, but the first option above is unticked.
  6. Click OK.
  7. Sleep and wake. The network adapter stays connected during sleep transitions, and the printer is reachable immediately on wake.

This addresses the case where the laptop’s aggressive network power management drops the LAN connection during sleep, causing all networked devices to appear unreachable on wake.

How to verify the fix worked

  • Sleep the PC for 10 minutes. Wake. Open the print queue immediately — the printer should be available, not Offline.
  • Print a test page within 30 seconds of wake. Job leaves the queue and prints normally.
  • Run Get-Printer | Format-Table Name, PrinterStatus, PortName in PowerShell. PrinterStatus: Normal, and PortName should show your new TCP/IP port (e.g., 192.168.1.50_2).

If none of these work

If the printer still disappears after sleep with TCP/IP port and disabled power management, the issue is likely router or printer-side. Printer goes to deep sleep itself: many modern printers enter their own low-power mode after inactivity. Wake-on-LAN-equivalent for printers is usually a few-second wake on incoming connection — but if the printer’s sleep is aggressive, the first job times out before the printer responds. Disable deep sleep in the printer’s web admin (open printer IP in browser, find Energy / Sleep settings, set to Never or to a longer timeout). Router drops idle connections: some routers age out DHCP entries for devices that haven’t communicated recently. A static IP on the printer (via DHCP reservation in Method 1) prevents this. Print server intermediary: if your printer is shared from another PC or a server, that intermediate machine’s state affects availability. Verify the print server is online and the shared printer is published.

Bottom line: Network printers disappear after sleep mostly because of WSD’s slow rediscovery — switch to a fixed TCP/IP port with a reserved IP, and the connection survives sleep cycles.

ADVERTISEMENT