You're staring at that error message. Let's fix it.
This one's annoying because it kills all network traffic — Wi-Fi, Ethernet, even Bluetooth can stop working. Had a client last month whose print queue died because of this. His whole office went offline.
The Fast Fix: Reset the Driver
- Press Windows Key + X and click Device Manager.
- Expand Network adapters. Look for your active network card (usually Realtek, Intel, or Qualcomm).
- Right-click it and select Disable device. Wait 10 seconds.
- Right-click again and select Enable device.
That's it. Works 90% of the time. The error happens when the NDIS driver loses its state — like a software glitch. Disabling and re-enabling forces Windows to reload the driver fresh.
If That Doesn't Work: Command Line Reset
Sometimes the driver's stuck harder. Run these commands in an admin Command Prompt:
netsh int ip reset
netsh winsock reset
ipconfig /flushdns
Reboot after. This resets the whole network stack. A client with a Dell Latitude 5490 had this error after a Windows update last year. These commands got him back online.
Why This Error Happens
The NDIS (Network Driver Interface Specification) layer is like a middleman between Windows and your network hardware. When it gets an invalid request — like trying to set a power state that the driver doesn't support — it throws 0x80340010.
Common triggers:
- Windows update that changes driver settings (happens a lot with Windows 10 22H2)
- Power saving modes that turn off the adapter too aggressively
- Third-party firewall or VPN software that interferes
Less Common Variations
1. Driver Corruption
If resetting doesn't help, uninstall the driver completely:
- In Device Manager, right-click the adapter and choose Uninstall device.
- Check Delete the driver software for this device if it shows.
- Reboot. Windows will reinstall the driver automatically.
2. Power Management Settings
Windows can shut down the adapter to save power. This causes conflicts:
- In Device Manager, right-click the adapter and go to Properties > Power Management.
- Uncheck Allow the computer to turn off this device to save power.
- Click OK.
3. IPv6 or Dual-Stack Issues
Some routers or drivers have problems with IPv6. Disable it:
- Open Network Connections (run
ncpa.cpl). - Right-click your connection and select Properties.
- Uncheck Internet Protocol Version 6 (TCP/IPv6).
- Click OK.
Prevention for Next Time
Keep your network driver updated. Check your adapter manufacturer's site (Intel, Realtek, etc.), not just Windows Update. I've seen Windows Update push a generic driver that breaks specific chipsets — like the Realtek 8168 that's in tons of motherboards.
Also avoid using VPN software that replaces your network stack (like some older OpenVPN versions). If you see this error after installing a VPN, uninstall it first, fix the driver, then reinstall a newer version.
One more thing: if your PC has a physical Wi-Fi switch or Fn key combo (like Fn+F2 on many laptops), toggle it off and on. Sometimes that's all the hardware needs.
That's it. You should be back online. If not, reply below with your adapter model and I'll dig deeper.