You're sitting there, maybe after a Windows update or a new GPU driver install, and suddenly your secondary monitor goes dark. Or you get a black screen on boot and Windows Event Viewer logs ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED with the code 0xC0262401. This is a classic sign that Windows is trying to talk to a display adapter's child device—like a built-in DisplayPort or HDMI port—and it's not getting the descriptor it expects. I saw this last month on a client's Dell Precision tower with an NVIDIA Quadro P2200. They'd updated the driver from NVIDIA's site, and the next reboot, their second monitor vanished.
In plain English: your GPU has multiple physical outputs, and each one is a 'child device' to the main adapter. Windows needs a descriptor—basically a name tag and capability list—from each child to know what it is and how to use it. When that descriptor comes back as 'not supported', Windows gives up on that output. The cause is usually a mismatched driver, a leftover driver fragment, or a hardware handshake problem. It's not a death sentence for your GPU, but it does demand a clean slate.
Fix 1: Clean Install the GPU Driver
Skip the 'Update Driver' button in Device Manager. That's for casual users. You need to nuke the old driver completely. The tool that actually works is Display Driver Uninstaller (DDU). It clears out every trace of the driver, including registry entries and leftover files that standard uninstalls leave behind.
- Download DDU from the official Wagnardsoft site. It's free.
- Boot Windows into Safe Mode. Press
Win + R, typemsconfig, go to the Boot tab, check 'Safe boot' with Minimal, and restart. Or hold Shift while clicking Restart in the Start menu—that works too. - Run DDU. Choose 'Clean and restart' for your GPU brand (NVIDIA, AMD, or Intel).
- After restart, download the latest driver from the GPU manufacturer's website—not from Windows Update. For NVIDIA, use the manual search if you have an older card; the auto-detection tool sometimes picks a wrong version.
- Install the driver as an administrator. Choose 'Custom' installation and check the 'Perform a clean installation' box if it's there (NVIDIA has this).
- Reboot again. Check if the child device shows up now.
That fixed the Dell Precision case. The previous driver had a corrupted INF file that didn't map the DisplayPort correctly. After a clean install, both monitors came back.
Fix 2: Check for GPU Hardware or Cable Issues
If the clean driver install didn't do it, start suspecting the hardware. The child device descriptor error can also happen when a physical port is failing or a cable isn't fully seated. I've seen this on a fleet of HP ZBooks where a loose HDMI cable caused the exact same error because the handshake between GPU and monitor got interrupted.
- Power down and unplug the machine.
- Reseat the GPU if it's a desktop. Take it out and push it firmly back into the PCIe slot. Also check the power connectors are clicked in.
- Try a different cable. If you're using DisplayPort, try a known-good cable or another port on the GPU.
- If the error only happens on one specific port, that port might be dead. Use a different port.
- For laptops, the issue could be the internal display cable. Reseat it if you're comfortable opening it up—or take it to a shop.
Fix 3: Update or Roll Back Windows
Sometimes a bad Windows update breaks the graphics stack. I remember a Windows 11 22H2 rollout that gave a bunch of AMD users this exact error because a kernel-mode driver change conflicted with the GPU driver.
- Check for pending Windows updates. Go to Settings > Windows Update and click 'Check for updates'. Install anything that's pending.
- If you recently updated Windows and the error started, roll back the update. Go to Settings > Windows Update > Update history > Uninstall updates. Pick the most recent quality update and uninstall it.
- Reboot and see if the error clears.
If the error persists after a rollback, you might need to wait for Microsoft to fix the update or use the 'Pause updates' feature to buy time.
Fix 4: Registry Tweak for Stubborn Installations
This is a last resort, but it's rescued a few custom builds in my time. Windows stores the display adapter settings in the registry. A rogue entry can cause the child descriptor to be misread. This is advanced, so back up your registry first.
- Press
Win + R, typeregedit, and hit Enter. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}. - Look for subkeys like
0000,0001, etc. Each one is a display adapter. Check theDriverDescvalue to find your GPU. - Right-click the adapter key and delete any value named
UserModeDriverNameorUserModeDriverGUIDthat references an old driver version. - Close regedit and reboot.
This clears out stale user-mode driver references that can confuse the child device enumeration. Just be careful—deleting the wrong key can bork your display entirely. Only do this if you're comfortable with registry editing.
If It Still Fails
By now, you've done the software dance and the basic hardware check. If that child descriptor error still shows up, you're looking at a deeper hardware failure. The GPU's firmware or the physical port might be toast. Try flashing the GPU's VBIOS if you're brave—but that's a gamble. Or test the GPU in another machine to confirm it's the card and not your system.
I had a client once whose GPU would throw this error only after the card warmed up—turned out a capacitor on the video output circuit was failing. That's a repair shop job. If the card is under warranty, RMA it. Don't waste weeks on a dying GPU.