Fix STATUS_NDIS_ADAPTER_NOT_READY (0XC0230011) in Minutes
This error means your network adapter isn't initialized yet—common after sleep or driver updates. Here's how to wake it up for good.
When This Error Pops Up
You're working away, maybe just woke your PC from sleep or plugged in an Ethernet cable after using Wi-Fi. Suddenly, your network icon shows a red X or yellow warning. You open Device Manager, and there it is: STATUS_NDIS_ADAPTER_NOT_READY (0XC0230011) right next to your Realtek PCIe GbE Family Controller or Intel Wi-Fi adapter. This tripped me up the first time too—it's especially common after Windows 10 or 11 feature updates (like 22H2) or driver updates that didn't fully complete.
Why It Happens
The NDIS (Network Driver Interface Specification) layer manages how your network card talks to Windows. When the adapter isn't ready, it means the driver isn't fully loaded, or the network stack wasn't initialized after a power state change (like sleep or hibernate). Sometimes a Quick Start or Fast Startup in Windows causes the adapter to skip full initialization. The real fix is forcing the adapter to reload its driver and reset the NDIS state.
Fix: Reset the Network Adapter
Skip the usual restart—this works without rebooting. I've used this on Dell XPS 13, HP EliteBook, and custom desktops. Steps are for Windows 10/11, but similar for Windows 8.1.
- Open Device Manager – Press Win + X and select Device Manager, or run
devmgmt.msc. - Find your adapter – Expand "Network adapters". Look for your wired or wireless adapter (e.g., "Realtek PCIe GbE Family Controller" or "Intel Dual Band Wireless-AC 8265").
- Disable it – Right-click the adapter, choose "Disable device". Yes, you'll lose connection temporarily—that's expected. Confirm any prompts.
- Wait 10 seconds – Give Windows time to fully unload the driver. Don't rush this.
- Enable it – Right-click the same adapter again, choose "Enable device". Wait a few seconds for the adapter to reinitialize.
That's it. Check your network icon—you should see connected again. If not, move to the next step.
What to Check If It Still Fails
Sometimes the adapter's power management settings keep it asleep. Here's the extra fix:
- In Device Manager, right-click your network adapter, go to Properties → Power Management tab.
- Uncheck "Allow the computer to turn off this device to save power". Apply and OK.
- Then run
ipconfig /releaseandipconfig /renewin an admin Command Prompt.
If you're still stuck, the driver might be corrupted. Download the latest driver from your hardware vendor (not Windows Update—go to Realtek, Intel, or your laptop maker's site). Manually install it via Device Manager → Update driver → Browse my computer → Let me pick from a list → Have Disk.
Last resort: disable Fast Startup. In Control Panel → Power Options → Choose what the power buttons do → Change settings that are currently unavailable → Uncheck "Turn on fast startup (recommended)". Reboot. I've seen this fix persistent cases after Windows updates.
Pro tip: If you get this error with a docking station (like a Dell WD19 or ThinkPad Thunderbolt Dock), try disconnecting and reconnecting the dock—it often forces the adapter to reinitialize. That saved me during a remote support session.
You should be back online now. If not, the hardware itself might be failing—test with a USB network adapter to confirm. But 90% of the time, the disable/enable trick does it.
Was this solution helpful?