Windows Networking

Fix network printer not found

Practical Windows guide: fix network printer not found without the usual guesswork.

10 min read Beginner Updated 9 Jun 2026

Step-by-step guide

Work through each section in order. Stop when your issue is resolved — you do not need every step for every situation.

What you will achieve

Find and connect to a network printer when Windows reports it missing — checking discovery, spooler, and firewall without reinstalling drivers blindly.

1) Confirm the printer is reachable

  1. On the printer or router admin page, note the printer IP address (e.g. 192.168.1.50).
  2. Open Command Prompt and run: ping 192.168.1.50 (replace with actual IP).
  3. If ping fails, fix network connectivity first — Wi‑Fi isolation, VLANs, or the printer sleeping can block access.

2) Restart the Print Spooler service

Admin PowerShell:

Stop-Service Spooler -Force
Remove-Item C:\Windows\System32\spool\PRINTERS\* -Force -ErrorAction SilentlyContinue
Start-Service Spooler

3) Add the printer manually

  1. Open Settings → Bluetooth & devices → Printers & scanners → Add device.
  2. If not listed, click Add manuallyAdd a printer using an IP address.
  3. Enter the IP, leave port as Auto detect, install the correct driver (or Generic / MS Publisher Imagesetter for testing).

4) Enable network discovery and firewall rules

  1. Control Panel → Network and Sharing Center → Change advanced sharing settings → turn on Network discovery and File and printer sharing for Private networks.
  2. In wf.msc, confirm File and Printer Sharing (Echo Request – ICMPv4-In) is enabled on Private profile if you rely on ping.

5) Clear stuck print queue on server PC

  1. On the PC sharing the printer, restart Spooler and check Print Management (printmanagement.msc) for offline status.

6) WSD vs TCP/IP port

  1. Prefer Standard TCP/IP port with raw IP if WSD discovery fails across subnets.
  2. Disable SNMP status if false offline reports appear during driver install wizard.

7) Print Spooler RPC errors

  1. Event Viewer → Application log, source PrintService — Event 808 indicates spooler crash; check driver.
  2. Enable SMB 1.0 only if legacy printer requires it — Windows Features → SMB 1.0/CIFS (security risk, isolate on VLAN).

8) mDNS and Bonjour on mixed networks

  1. Some printers advertise via Bonjour — install Apple Bonjour Print Services or use IP direct if discovery fails across subnets.
  2. Multicast must be allowed on Wi‑Fi — guest networks often block printer discovery.

Verification checklist

Print test page from Settings → Printers. Check printer web UI shows job received — isolates Windows spooler vs network path failures.

  1. Reboot once after changes that affect services, drivers, or firmware.
  2. Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
  3. Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.

Related guides

fix found not printer windows