0XC0262333: No Available VidPN Target Fix
Your GPU can't find a display to connect to. Driver corruption or a bad cable usually causes this. Here's the quick fix and why it works.
You're staring at a black screen or an error code that means nothing useful. I get it. Let's get your display back.
The error 0XC0262333 — ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET — means your graphics driver lost track of which display port is connected to which monitor. It's a routing problem, not a hardware failure. Happens all the time after a driver update, a bad cable swap, or waking from sleep with a dock.
The Quick Fix: Roll Back Your Graphics Driver
Nine times out of ten, this is caused by a recent driver update that botched the display topology. The fix is stupid simple:
- Press Win + X and select Device Manager.
- Expand Display adapters.
- Right-click your GPU (NVIDIA, AMD, Intel) and choose Properties.
- Go to the Driver tab, click Roll Back Driver.
- Reboot. That's it.
If the button is grayed out (no previous driver saved), download the previous version from your GPU vendor's site and do a clean install using DDU (Display Driver Uninstaller). Don't skip DDU — regular uninstalls leave junk that causes the same error to come back.
DDU steps:
1. Boot into Safe Mode
2. Run DDU, select "Clean and restart"
3. Install the older driver
Why This Works
Your GPU's driver maintains a table called the VidPN (Video Present Network). It maps each physical display connector (VidPN target) to a framebuffer (VidPN source). When you update the driver and the new version has a bug — or your monitor's EDID data gets corrupted during the update — that mapping breaks. The driver sees the source but can't find a target to connect it to. Rolling back restores the working mapping table from the previous driver version.
Less Common Variations
Driver rollback didn't work? Here's what else I've seen cause this:
1. Bad Cable or Adapter
Cheap DisplayPort-to-HDMI adapters are the worst offenders. The GPU negotiates the link, gets garbage EDID back, and marks the target as unavailable. Swap the cable with a known-good one — preferably a direct connection (no adapter). Test each port one at a time. If a specific port triggers the error, that port's target table is corrupted in the driver. Try a different port.
2. Monitor Power State
Some monitors go into a deep sleep mode that doesn't report back to the GPU. Wake the monitor manually — unplug and replug its power cable, not just the video cable. Then reboot. I've seen this on Dell U-series monitors and some Samsung TVs.
3. Registry Corruption
Rare, but it happens after a failed Windows update. The driver's topology settings get stuck. Here's the nuclear option:
reg delete "HKLM\SYSTEM\CurrentControlSet\Control\GraphicsDrivers\Configuration" /f
reg delete "HKLM\SYSTEM\CurrentControlSet\Control\GraphicsDrivers\Connectivity" /f
Run those two commands in an admin command prompt, then reboot. Windows rebuilds the display configuration from scratch. This nukes any custom multi-monitor layout, so you'll need to rearrange them in Display Settings afterward.
4. BIOS/UEFI Settings
On laptops with hybrid graphics (Intel + NVIDIA/AMD), check if the BIOS is set to UMA Graphics instead of Switchable Graphics. Some BIOS updates flip this. While booting, mash Del or F2, look under Advanced > Graphics Configuration. Set it to Switchable or Hybrid.
Prevention
This error keeps coming back if you don't fix the root cause:
- Stick to stable driver branches. On NVIDIA, use the Studio drivers (not Game Ready). On AMD, wait a month after a new driver release before updating. On Intel, just use whatever Windows Update pushes — their beta drivers are a mess.
- Never hot-plug DisplayPort cables. Always shut down before plugging or unplugging DP cables. HDMI and USB-C are safe to hot-plug. DisplayPort can send power spikes that confuse the GPU's target detection.
- Keep your monitor's firmware updated. Some monitors (looking at you, LG 27GP950) have known EDID bugs that get fixed via firmware updates. Check the manufacturer's support page.
- Use DDU before every major driver install. Yeah, it's a pain, but it prevents exactly this kind of corruption. Takes 5 minutes, saves you an hour of debugging.
If you hit this error on a brand-new system, return the GPU or cable. There's a small chance the hardware itself is flaky — especially with DisplayPort 2.0 hardware that's still finicky. Don't waste weeks debugging a hardware issue.
Was this solution helpful?