STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED (0xC01E0401) Fix
Your display adapter can't report a descriptor the system expects. The fix is almost always a driver rollback or a registry tweak. Don't bother with hardware swaps yet.
Quick Answer
Roll back your graphics driver to the previous version or delete the ChildDeviceDescriptor registry key under HKLM\SYSTEM\CurrentControlSet\Enum\PCI\... for your GPU.
What's This Error?
You're seeing STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED (0xC01E0401) when Windows tries to talk to your display adapter. The culprit here is almost always a botched driver update or a corrupted registry entry tied to your GPU's child device. I've seen this on Windows 10 22H2 and Windows 11 23H2, mostly after a Windows Update pushed a new driver that didn't play nice with the existing configuration. Sometimes it happens after a clean driver install where the old registry value didn't get cleaned up properly. Don't bother swapping cables or reseating the card yet — that rarely fixes it.
Fix Steps (in order)
- Boot into Safe Mode. Restart your PC, hit F8 or Shift + Restart, choose Safe Mode with Networking. You need to disable the driver from loading first.
- Roll back the graphics driver. Open Device Manager, expand Display adapters, right-click your GPU (e.g., Intel UHD Graphics 630, NVIDIA GeForce RTX 3060), go to Properties > Driver tab, click Roll Back Driver. If it's grayed out, move to step 3.
- Delete the offending registry key. Run
regeditas admin. Navigate toHKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\PCI. Find your GPU by looking at the subkeys withVEN_<vendor>&DEV_<deviceID>. For Intel, it'sVEN_8086. For NVIDIA,VEN_10DE. For AMD,VEN_1002. Drill down into the subkey until you see a key calledChildDeviceDescriptor. Delete it. Don't delete anything else. Close regedit. - Restart normally. Let Windows load the driver fresh. It should rebuild the descriptor automatically. If the error is gone, you're done.
- Reinstall the driver cleanly. If it comes back, download the latest driver from your GPU manufacturer's site, not Windows Update. Use DDU (Display Driver Uninstaller) in Safe Mode to wipe everything, then install the fresh driver.
Alternative Fixes (if main fails)
- System Restore. Roll back to a point before the error started. Go to Control Panel > Recovery > Open System Restore. Pick a restore point dated before the problem began. This has saved my ass more than once.
- SFC and DISM. Open Command Prompt as admin. Run
sfc /scannow, thenDISM /Online /Cleanup-Image /RestoreHealth. This fixes corrupted system files that can mess with GPU descriptors. Takes about 15 minutes. - Hardware check. If nothing works, your GPU might be failing. Try a different slot if you have one, or test the card in another machine. I've seen this error on dying GPUs, but it's rare.
Prevention Tip
Disable automatic driver updates via Windows Update. Go to Settings > Windows Update > Advanced Options > turn off 'Receive updates for other Microsoft products'. Then only install GPU drivers you manually download from the manufacturer. This keeps Windows from pushing a bad driver that hoses your registry key. Do it today, save the headache tomorrow.
Was this solution helpful?