0x00000bcb

Fix 'Windows Cannot Connect to the Printer' Network Error

Network & Connectivity Intermediate 👁 1 views 📅 May 29, 2026

This network printer error usually means the print spooler or driver's gone bad. Here's how to fix it in about 10 minutes.

Quick answer: Open an elevated Command Prompt, run net stop spooler, delete everything in C:\Windows\System32\spool\PRINTERS, then run net start spooler. Then reinstall the printer driver.

I'll be honest — this error is one of the most frustrating network printer problems you'll hit. It usually pops up when you try to connect to a shared printer on a workgroup or domain, and Windows throws up that dialog box with error 0x00000bcb. The printer might show as offline, or the connection just hangs. I've seen it on everything from a basic HP LaserJet to a big Ricoh copier. The root cause is almost always a corrupted print spooler or a busted driver that's stuck in memory.

Before You Start

Make sure the printer itself is on, connected to the network, and has a static IP if possible. Check that other computers on the same network can print to it — that confirms the issue's on your machine, not the network or printer.

Step-by-Step Fix

  1. Stop the print spooler service. Open Command Prompt as Administrator. Type net stop spooler and hit Enter. You'll see the service stop.
  2. Clear the spool folder. In File Explorer, go to C:\Windows\System32\spool\PRINTERS. Delete everything in that folder. Don't worry — it's just queued print jobs and temp files.
  3. Restart the spooler. Back in the Command Prompt, run net start spooler. The service starts fresh.
  4. Remove the printer completely. Go to Settings > Bluetooth & devices > Printers & scanners. Find the problem printer, click it, and select Remove. If it won't remove, use printmanagement.msc from the Run dialog (Win+R) and delete it from there.
  5. Reinstall the driver. Download the latest driver from the printer manufacturer's site. Don't use Windows Update or the generic Microsoft driver — they're often stripped down. For network printers, install the full driver package, not a basic one.
  6. Add the printer again. In Settings, click Add device. Choose “The printer that I want isn't listed,” then select “Add a printer using an IP address or hostname.” Enter the printer's IP. Let Windows install it.

After these steps, the printer should show as ready. If it doesn't, move to the alternatives below.

Alternative Fixes if This Doesn't Work

Run the Printer Troubleshooter

Windows has a built-in tool that sometimes works. Go to Settings > System > Troubleshoot > Other troubleshooters. Run “Printer” — it'll check for driver issues, spooler problems, and network connectivity. I've seen it clear a bad print job that caused error 0x00000bcb.

Check the Print Server Properties

Open Print Management (printmanagement.msc). Under Print Servers > Drivers, look for any driver that shows a yellow warning triangle. Right-click it and remove it. Then reinstall the driver fresh. Had a client last month whose print queue died because of a leftover driver from an old HP OfficeJet.

Reset Winsock and TCP/IP Stack

A corrupted network stack can mess with printer connections. Run these commands in elevated Command Prompt, one at a time, then restart your PC:
netsh winsock reset
netsh int ip reset
ipconfig /release
ipconfig /renew
ipconfig /flushdns

Check for Windows Update Conflicts

Occasionally, a Windows update breaks printer sharing. If the error started after a recent update, go to Settings > Windows Update > Update history > Uninstall updates. Remove the latest one and see if the printer works. You can pause updates for a few weeks while you wait for a fix.

Use the Registry to Force a Clean Driver Removal

If the driver won't delete normally, edit the registry. Back it up first. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Environments\Windows x64\Drivers\Version-3 (or Version-4 for newer drivers). Delete the key for your printer model. Then reboot and reinstall the driver.

Prevention Tips

  • Set a static IP for the printer in your router's DHCP reservation or the printer's network settings. Dynamic IP changes break connections.
  • Update the printer firmware every 6 months. Most manufacturers post firmware fixes for connectivity bugs.
  • Keep the spooler clean — run net stop spooler and clear the PRINTERS folder monthly if you print a lot.
  • Use the manufacturer's driver, not the generic one. I've seen generic drivers cause this error on Brother and Canon printers specifically.

If none of this works, the issue might be hardware — a bad network card in the printer or a flaky switch port. Try a different network cable or move the printer to a different port. But 90% of the time, the spooler reset and driver reinstall do the trick.

Was this solution helpful?