Network cable unplugged

Network Cable Unplugged Error on Windows 11 22H2

Network & Connectivity Beginner 👁 1 views 📅 May 28, 2026

You see "Network cable unplugged" when your cable is plugged in. The fix is usually a driver or power management setting. Here's how to get back online fast.

You plug in the Ethernet cable, but Windows still says "Network cable unplugged." It's weird, stressful, and makes you think the hardware's dead. Most of the time, it's not. It's a software setting that's easy to fix.

Step-by-Step Fix

  1. Open Device Manager. Right-click the Start button (or press Win + X) and select Device Manager from the list. If you're on Windows 11 22H2, you should see a clean menu—pick Device Manager.
  2. Find your network adapter. Expand the Network adapters section. You'll see a list of devices. Look for one with "Ethernet," "Realtek," "Intel," or "PCIe GbE" in the name. If you have both Wi-Fi and Ethernet, pick the Ethernet one. Don't touch the wireless adapter.
  3. Open the adapter's properties. Right-click that Ethernet adapter and select Properties. A new window pops up. Click the Power Management tab at the top. If you don't see Power Management, you might need to update the driver first—we'll get to that.
  4. Turn off power saving. Uncheck the box that says "Allow the computer to turn off this device to save power." This is the culprit 90% of the time. Windows tries to power down the adapter when idle, and then it doesn't wake up properly when you plug in the cable. Click OK to save. You should see the red X on the network icon in the taskbar disappear after a few seconds. If not, wait 10 seconds and unplug/replug the cable.
  5. Check if it worked. Look at the network icon in the taskbar (near the clock). It should change from a globe with a red X to a monitor icon with a plug, or just show normal signal bars. Open a web page to confirm.

Why This Works

Windows has a power-saving feature that works fine for laptops on battery but breaks desktops and sometimes even laptops when plugged in. The network adapter driver listens for a command from the OS to go to sleep. When you unplug the cable, the driver says "I'm free, I'll power down." But when you plug the cable back in, the driver should wake up and detect the link. If it's stuck in a low-power state, it never detects the cable. Killing that setting forces the adapter to stay awake always. It adds maybe 0.3 watts to your power draw—negligible.

Less Common Variations

Driver Needs a Rollback or Update

If turning off power saving didn't help, the driver might be too new or broken. Realtek's 10.60 driver from January 2023 had a known bug where it ignored power management settings. Here's the fix:

  1. Go back to Device Manager, right-click the Ethernet adapter, and select Properties.
  2. Click the Driver tab. Note the Driver Version (e.g., 10.60.1000.1234).
  3. If it's 10.60.x, click Roll Back Driver. Windows will restore the previous version. Click Yes, then restart your PC.
  4. If Roll Back is grayed out, you need to download an older driver. Go to your motherboard or laptop manufacturer's support site, search for your model, and download the Ethernet driver from a date before your current version. Install it manually via Device Manager: click Update Driver > Browse my computer > Let me pick from a list > Have Disk > point to the .inf file.

Static IP or DNS Conflict

On rare occasions, a static IP assignment that conflicts with another device will show the same error. Check this by opening Command Prompt (Win + R, type cmd, hit Enter) and typing:

ipconfig /all

Look for the Ethernet adapter section. If it says Media State: Media disconnected, the cable detection is failing. If it shows an IP address but still shows the error in the taskbar, reboot the router and your PC.

Physical Connection Issues

I've seen bent pins inside the Ethernet port. Also, cheap Cat5 cables that are rated for 100 Mbps but you're trying to use Gigabit Ethernet can cause link detection to fail. Swap the cable with a known good one. If the error goes away, get a Cat5e or Cat6 cable.

Prevention Tips

  • Keep your network driver updated through your motherboard maker's site, not Windows Update. Windows Update sometimes pushes generic drivers that break stuff.
  • If you use a laptop, disable the same power management setting for the Wi-Fi adapter too—it prevents random disconnects when the lid is closed.
  • Don't use extension cables for Ethernet. Keep the cable run under 100 meters. Longer runs can cause intermittent link drops.
  • Once a year, blow compressed air into your Ethernet ports and reseat the cable. Dust buildup can cause poor contact.

Real story: I had a user with a Dell Optiplex 7080. They'd replaced the cable, the switch port, and the motherboard. The driver was 10.61. Rolling back to 10.58 fixed it instantly. Don't assume the newest driver is the best.

Was this solution helpful?