STATUS_HIBERNATION_FAILURE 0XC0000411 – Fix Sleep Mode
This error pops up when Windows can't finish hibernating. Usually it's a driver issue, a full disk, or corrupted system files. Here's how to fix it step by step.
Cause #1: Device Driver Blocks Hibernation (Most Common)
This error shows up right when you try to put your PC to sleep or hibernate. You'll see a blue screen with SYSTEM_SERVICE_EXCEPTION or STATUS_HIBERNATION_FAILURE and the code 0XC0000411. The number one culprit is a bad or outdated driver – usually a network card, graphics card, or storage controller. I've seen this on Dell XPS laptops and custom gaming rigs running Windows 11 22H2 or Windows 10 21H2.
Here's the fix that works 90% of the time:
- Press Windows + X and pick Device Manager.
- Expand Network adapters. Look for your Wi-Fi or Ethernet card – something like "Intel(R) Wi-Fi 6E AX211" or "Realtek PCIe GbE Family Controller."
- Right-click it and select Update driver > Browse my computer for drivers > Let me pick from a list of available drivers on my computer.
- If you see multiple drivers listed, pick the one that's not the most recent if the newest one is causing issues. But honestly, if you're here, you want the latest stable driver. Instead, go to the manufacturer's website (Intel, Realtek, Dell, etc.) and download the latest driver directly. Don't trust Windows Update for this.
- Install the driver, then restart your PC. After restart, try hibernating again. You should no longer see the error.
Still broken? Move to the next cause.
Cause #2: Not Enough Free Space for the Hibernation File
Windows needs a file called hiberfil.sys – it's the size of your RAM (roughly). If your system drive is almost full, hibernation fails and you get the 0XC0000411 error. This happens a lot on laptops with small 128GB SSDs or when you've installed too many games.
Check your free space: open File Explorer, right-click C:, and select Properties. You need at least as much free space as your RAM size. If you have 16GB RAM, you need 16GB free. For 8GB RAM, keep 8GB free. If you're under that, clean things up.
Here's how to free up space fast:
- Press Windows + R, type
cleanmgr, and hit Enter. - Select the C: drive, click OK. Wait for it to scan.
- Click Clean up system files. Again select C:.
- Check Windows Update Cleanup, Delivery Optimization Files, and Recycle Bin. Uncheck anything you don't want to delete.
- Click OK and confirm. This can free up 5-10GB easily.
- After cleaning, try hibernating. The error should be gone.
Cause #3: Corrupted System Files or Power Settings
If the first two fixes didn't work, your system files could be corrupted, or fast startup (which is tied to hibernation) is borked. Windows 11 loves to break this feature after a feature update. I've fixed dozens of PCs where the only solution was to disable and re-enable hibernation.
Run these commands in an elevated Command Prompt or PowerShell:
- Press Windows + X and select Terminal (Admin) or Command Prompt (Admin).
- Type
sfc /scannowand press Enter. Let it finish – it checks system files. If it finds corrupted files and fixes them, restart and test hibernation. - If
sfcfound nothing or didn't fix it, typeDISM /Online /Cleanup-Image /RestoreHealthand press Enter. This repairs the system image. It takes 10-20 minutes. After it's done, restart. - Still no luck? Type
powercfg /hibernate offand press Enter. Then typepowercfg /hibernate on. This resets the hibernation file. - Finally, disable fast startup: go to Control Panel > Power Options > Choose what the power buttons do. Click Change settings that are currently unavailable, then uncheck Turn on fast startup. Save changes.
- Restart your PC again. Hibernation should work now.
Quick-Reference Summary Table
| Cause # | Symptom | Likely Fix | Time to Try |
|---|---|---|---|
| 1 | Error after clicking Sleep/Hibernate, often with network or graphics driver | Update or roll back the driver from the manufacturer's website | 10 minutes |
| 2 | System drive has less free space than RAM size | Run Disk Cleanup, delete temporary files | 5 minutes |
| 3 | sfc /scannow finds corruption, or quick fix didn't work | Run DISM, reset powercfg, disable fast startup | 20 minutes |
If none of these work, you might have a failing drive or a BIOS setting that's blocking hibernation. Check your motherboard manual for "S4/S5" sleep states – make sure they're enabled. Good luck.
Was this solution helpful?