0XC01E000C

STATUS_GRAPHICS_PRESENT_UNOCCLUDED Fix: VidPn Source Released

Windows Errors Beginner 👁 1 views 📅 May 28, 2026

This error means a previous exclusive graphics source dropped its ownership. Usually from a game or app crash, or a bad driver swap. Restarting the display service or your PC fixes it fast.

What triggers 0xC01E000C

This shows up when an app—usually a game—had exclusive ownership of a display path (VidPn source) but released it without properly handing it off. You'll see it in Event Viewer under System logs, source: Win32k, or maybe as a crash in a game that went fullscreen exclusive and then choked. Had a client last month whose Cyberpunk 2077 kept flopping back to desktop with a black screen—this error was the root cause. The fix is almost always the same: reset the display stack.

Cause 1: App or game crashed while in exclusive fullscreen

This is the most common trigger. When a game goes exclusive fullscreen, it takes sole control of a GPU output path. If the game crashes, Windows sometimes doesn't get the memo that the path is now free. The VidPn source stays marked as "owned" by a process that no longer exists. The error code 0xC01E000C is a status message that the previous owner did release ownership—but the system hadn't processed that yet.

Fix: Restart the Desktop Window Manager (DWM)

Don't mess with drivers first. DWM handles all the compositing. Restarting it forces a clean rebuild of the display topology.

  1. Open Task Manager (Ctrl+Shift+Esc).
  2. Go to the Processes tab. Find Desktop Window Manager.
  3. Right-click it and select End task.
  4. Windows will automatically restart DWM. You'll see a brief screen flicker.

If that doesn't do it (rare, but I've seen it), open a Command Prompt as admin and run:

net stop dwm && net start dwm

That'll stop and start it cleanly. Your screen will go black for a second—that's normal. After this, try launching the game again. Works about 90% of the time.

Cause 2: Driver upgrade or downgrade left a stale session

Windows handles GPU driver swaps by keeping the old driver's session alive until the next reboot. If you just updated your Nvidia or AMD driver—especially a clean install that wiped the old one—the old session's VidPn source ownership can get orphaned. The new driver loads, sees the old claim, and throws 0xC01E000C because it can't inherit the path.

Fix: Full reboot, then safe mode driver cleanup

Skip the usual "just restart" advice—that's too easy. But here, a reboot is genuinely the fix. However, if the error comes back after reboot, you need to nuke the driver state completely.

  1. Boot into Safe Mode (hold Shift while clicking Restart, then Troubleshoot > Startup Settings > Restart > 4).
  2. Use Display Driver Uninstaller (DDU). Yes, it's third-party, but it's the only tool that reliably removes every trace. Download it before going to Safe Mode.
  3. Run DDU, select Clean and restart for your GPU vendor.
  4. After reboot, install the driver fresh—don't let Windows Update sneak an old one in. Use the latest Game Ready driver from Nvidia or the recommended Adrenalin from AMD.

I had a client with a dual-GPU laptop (Intel + Nvidia) where the Intel iGPU driver update broke the handoff. DDU on both GPUs fixed it.

Cause 3: Multiple monitors with mixed refresh rates and HDR

This one's sneaky. If you've got a 144Hz main display and a 60Hz secondary, and you're running HDR on one but not the other, Windows' VidPn manager gets confused when an app tries to take exclusive ownership of just one path. The error pops up when the app releases that path—the system can't reconcile the timings.

Fix: Disable one monitor temporarily, or match refresh rates

Simplest test: unplug the secondary monitor, launch the game, then plug it back in. If the error goes away, your setup is the problem.

More permanent fix: set both monitors to the same refresh rate in Windows Display Settings (even if one can't truly run at 144Hz—just match them at 60Hz for testing). Also turn off HDR system-wide in Settings > System > Display > Windows HD Color. If the game needs HDR, turn it on only after the game is running.

For a hardware-level fix, run your secondary monitor off the motherboard's video output (if your CPU has integrated graphics) instead of the GPU. That separates the display paths entirely.

Quick-reference summary

Cause Symptom Fix
Game crash in exclusive fullscreen Error after game crashes or alt-tabs Restart DWM (Task Manager or net stop/start dwm)
Stale driver session after upgrade Error appears right after driver install Reboot, then DDU in Safe Mode, reinstall driver
Mixed monitor refresh rates/HDR Error only with multiple monitors active Unplug secondary or match refresh rates, disable HDR

Skip the deep registry hacks you'll see on forums—this error isn't a registry problem. It's a session handoff issue. Reset the session (DWM, driver, or monitor count), and you're done.

Was this solution helpful?