STATUS_INSUFFICIENT_POWER (0XC00002DE) Fix for USB & devices
Your PC can't power a device or port. Usually a USB power surge or bad driver. Fix it in Device Manager or check your PSU.
1. USB selective suspend is choking your device (most common)
This error shows up when a USB device asks for more juice than Windows wants to give. I've seen it most often with external hard drives, wireless adapters, and USB hubs that draw a steady 500mA or more. The real trigger: Windows puts the port into a low-power state called selective suspend, then the device tries to wake up and can't—boom, error 0XC00002DE.
Had a client last month whose external SSD kept dropping offline during backups. Popped this fix in and it never happened again.
Disable USB selective suspend setting
- Open Control Panel → Power Options.
- Click Change plan settings next to your active plan.
- Click Change advanced power settings.
- Scroll down to USB settings → USB selective suspend setting.
- Set both On battery and Plugged in to Disabled.
- Click Apply → OK.
That's it. Restart the computer and try the device again. If the error's gone, you're done. If not, move to the next fix.
2. Device driver is stuck in a low-power state
Sometimes a driver (especially for USB hubs or PCIe controllers) gets confused and refuses to hand out more power. This happened on a Dell Latitude I worked on—every USB port would error until I forced the driver to renegotiate.
Here's the quick way to reset power negotiation:
- Press Win + X → Device Manager.
- Expand Universal Serial Bus controllers.
- Right-click each device named USB Root Hub or Generic USB Hub → Properties.
- Go to the Power Management tab.
- Uncheck Allow the computer to turn off this device to save power.
- Click OK. Do this for every hub in the list.
If the tab is missing (happens on some Lenovo machines), skip it. Then restart.
Still no luck? Try uninstalling the problematic device driver entirely:
- In Device Manager, right-click the device showing the error (often a yellow triangle).
- Select Uninstall device.
- Check Delete the driver software for this device if prompted.
- Restart the computer. Windows will reinstall the driver fresh.
Important: This fix works best if you unplug the device first, then restart, then plug it back in. The fresh driver handshake often resolves the power negotiation.
3. Power supply unit (PSU) isn't delivering enough juice
This one's rarer but brutal. If you're plugging in a high-power device like a USB-C laptop charger, a powered USB hub, or an external RAID array, the motherboard might not have the headroom. Especially on older desktops with cheap 300W PSUs.
I had a guy with a desktop running a GTX 1060, four drives, and a USB-powered monitor. The PSU couldn't handle the 12V rail for USB ports—error showed up every time he plugged in the monitor.
Check in BIOS/UEFI if your motherboard has a USB power or +5VSB setting. Some boards let you boost USB voltage (e.g., Asus boards have a setting called USB power delivery). But honestly, if you're in this situation, you might need a bigger PSU or an externally powered USB hub.
Quick test: Use a powered USB hub with its own AC adapter. If the error disappears, your PSU is the bottleneck. Buy a hub—cheaper than replacing the whole PSU.
Quick-reference summary table
| Cause | Fix | Difficulty | Time |
|---|---|---|---|
| USB selective suspend | Disable in Power Options | Beginner | 2 minutes |
| Stuck driver low-power state | Uncheck power management or reinstall driver | Intermediate | 5 minutes |
| Insufficient PSU power | Use powered hub or upgrade PSU | Advanced | 30+ minutes |
Was this solution helpful?