STATUS_GRAPHICS_PRESENT_OCCLUDED 0XC01E0006 Fix
This error means the graphics driver has nothing to present because the window is hidden or occluded. Real fix: disable fullscreen optimizations or update graphics drivers.
1. Disable Fullscreen Optimizations (most common fix)
This error happens most often in Windows 10 and 11 when a game or app uses fullscreen optimizations. The system tries to overlay the game with the desktop compositor, and if something else (like a notification or another window) covers the game window, the driver reports occlusion and stops rendering. The result is the error 0XC01E0006.
Here's the fix that works 9 out of 10 times:
- Right-click the shortcut or executable for the game or app that crashes.
- Select Properties from the context menu.
- Go to the Compatibility tab.
- Under the Settings section, check the box that says Disable fullscreen optimizations.
- Click Apply, then OK.
- Launch the game again. You should see the game run in exclusive fullscreen mode, and the error should be gone.
Why this works: With fullscreen optimizations disabled, Windows stops trying to treat the game as a composited window. The graphics driver gets exclusive access to the screen buffer, so nothing else can occlude it. No occlusion, no error.
2. Update Your Graphics Driver
If disabling fullscreen optimizations didn't fix it, the next suspect is an outdated or buggy graphics driver. I've seen this error with older Intel HD Graphics drivers especially, but it can happen with NVIDIA and AMD too. Driver bugs can cause the Desktop Window Manager to incorrectly report occlusion even when nothing is covering the window.
Do this:
- Press Win + X and select Device Manager.
- Expand Display adapters.
- Right-click your graphics card (it might say Intel, NVIDIA, or AMD) and choose Update driver.
- Select Search automatically for drivers.
- Let Windows search. If it finds a new driver, install it and restart your computer. If it says you're up to date, go to step 6.
- Go to the manufacturer's website (Intel.com, NVIDIA.com, or AMD.com) and download the latest driver for your exact model.
- Run the installer. Choose Clean Installation if offered (this removes old driver files that might be corrupt).
- Restart your PC.
After updating, test the game again. In my experience, Intel users have the most trouble with this error, especially on Windows 11. If you're using a laptop with Intel integrated graphics, make sure you also check for a BIOS update from your laptop manufacturer — sometimes the fix is on the system board side.
3. Run the App in Windowed Mode
If the first two fixes don't work, the problem might be a specific application that just doesn't like fullscreen mode at all. This is common with older games or niche productivity software. Forcing windowed mode bypasses the occlusion check entirely because windowed apps don't trigger the fullscreen optimization code path.
Here's how to force windowed mode:
- Right-click the shortcut or executable of the problematic app.
- Select Properties.
- Go to the Shortcut tab.
- In the Target field, add
-windowedor-wat the end, outside the quotes. So if the target is"C:\Games\game.exe", change it to"C:\Games\game.exe" -windowed. - Click Apply and OK.
- Launch the app.
If the game supports a borderless window option in its video settings, use that instead. It gives you the look of fullscreen without the occlusion problem. Some games have a specific launch option in their launcher (like Steam) set the launch option to -windowed -noborder.
One more thing: if you're using multiple monitors, check that the app isn't spanning across both monitors. That can cause the Desktop Window Manager to get confused and report occlusion. Set the app to only use one display. You can do this by pressing Win + Shift + Arrow key to move the window to a single monitor.
Quick-Reference Summary
| Cause | Fix | Difficulty | Success Rate |
|---|---|---|---|
| Fullscreen optimizations interfere | Disable fullscreen optimizations in Compatibility tab | Beginner | ~90% |
| Outdated or buggy graphics driver | Update to latest driver from manufacturer | Intermediate | ~70% |
| App doesn't support fullscreen correctly | Force windowed mode via launch options or settings | Beginner | ~50% |
That's it. Try these three things in order, and you'll almost certainly kill that 0XC01E0006 error. If none of them work, you might have a deeper system corruption — then run an SFC scan (sfc /scannow in an admin command prompt) and check your event log for more clues. But honestly, for occlusion errors, the fullscreen optimization toggle is the real hero.
Was this solution helpful?