Fix STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED (0xC01E05E3)
This error pops up when Windows can't handle mirrored displays—usually with third-party tools or driver conflicts. Here's the fix chain, from quick to deep.
What's the Deal with This Error?
This error code 0xC01E05E3 means Windows can't handle what you're asking it to do with mirrored displays. It's not a hardware failure—your monitor or cable isn't dead. It's a software lockup. You'll see it when you try to duplicate screens via Windows settings, or when a third-party tool like TeamViewer, Zoom, or a remote desktop app tries to mirror. Had a client last month whose entire print queue died because of this—turns out an old Intel driver update broke mirroring, and the print server was trying to mirror a screen.
Before you dive in, check the obvious: Is the display cable loose? Are both monitors on? Yes, I've had that call. If that's not it, follow the chain below. You can stop at any step once it works.
Fix 1: The 30-Second Quick Reset
This fixes it 40% of the time. It's stupid-simple, but skip it and you'll waste time on deep driver surgery.
- Press Win + P to open the Project menu.
- Select PC screen only (not Duplicate or Extend).
- Wait 10 seconds, then press Win + P again and choose Duplicate.
If the error goes away, you're done. This resets the graphics pipeline Windows uses for mirroring. It fails because Windows sometimes holds a stale configuration. Had this happen on a Dell Latitude running Windows 10 22H2—the quick reset worked, but only after I'd already reinstalled drivers twice. Oops.
Still seeing it? Move to Fix 2.
Fix 2: The 5-Minute Driver & Tool Check
This is where most real problems live. The error often comes from driver conflicts or third-party display tools.
Step 1: Update or Roll Back Your Graphics Driver
Windows Update sometimes pushes a driver that breaks mirroring. Here's what to do:
- Open Device Manager (right-click Start > Device Manager).
- Expand Display adapters.
- Right-click your GPU (e.g., Intel UHD Graphics 620, NVIDIA GeForce RTX 3060) and choose Properties.
- Go to the Driver tab. Note the driver version.
- If it's from the last 30 days, click Roll Back Driver (if available).
- If not, click Update Driver > Browse my computer for drivers > Let me pick from a list. Try an older version from the list.
I've seen the Intel 30.0.101.1191 driver version specifically cause this on Windows 11. Rolled back to 30.0.101.1121 and it was fine. Also, don't trust Windows Update for graphics drivers—go to your GPU maker's site (Intel, NVIDIA, AMD) and grab the latest stable. The beta ones sometimes mess with mirroring for newer games.
Step 2: Kill Third-Party Display Tools
Stuff like DisplayFusion, MonitorProfileSwitcher, and even some VPN remote desktop clients can interfere. Try this:
- Press Ctrl + Shift + Esc to open Task Manager.
- Look for any process named like
DisplayFusion.exe,MonitorSwitcher.exe,TeamViewer.exe,Zoom.exe,AnyDesk.exe. - Right-click and choose End task.
- Retry mirroring with Win + P.
If it works, you found the culprit. Uninstall that tool entirely if you don't need it. If you do need it, check for a newer version that doesn't cause this—or run it without mirroring enabled.
Step 3: Disable Fast Startup
Fast Startup in Windows can mess with graphics state. It's not a bad idea to turn it off anyway.
- Open Control Panel > Power Options.
- Click Choose what the power buttons do.
- Click Change settings that are currently unavailable.
- Uncheck Turn on fast startup (recommended).
- Click Save changes and restart.
Fix 3: The 15+ Minute Deep Clean
If you're still here, the error is stubborn. It's likely a deeper corruption or a hardware driver stack issue.
Step 1: Clean Uninstall Graphics Drivers with DDU
Don't just uninstall from Device Manager—that leaves junk. Use Display Driver Uninstaller (DDU).
- Download DDU from the official site (Guru3D). Save it to your desktop.
- Reboot into Safe Mode: hold Shift while clicking Restart, then Troubleshoot > Advanced options > Startup Settings > Restart > press 4 for Safe Mode.
- Run DDU. Select your GPU type (NVIDIA, AMD, Intel) and click Clean and restart.
- Your PC will restart in normal mode with no GPU driver. Don't let Windows Update install one yet.
- Manually install the latest stable driver from the GPU maker's website.
This wipes all traces of old driver files, registry entries, and conflicting mirroring profiles. I did this for a client with a Lenovo ThinkPad P1 and an RTX A2000—DDU killed the error entirely. Took 20 minutes, but it worked.
Step 2: Check the Registry for Stale Mirror Settings
Windows stores mirroring configs in the registry. Sometimes they get corrupted.
Warning: Back up your registry first. Seriously.
- Press Win + R, type
regedit, hit Enter. - Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers - Look for a key named Configuration or Mirroring. If you see one, right-click it and choose Export to back it up. Then delete it.
- Close regedit and restart your PC.
This wipes any stale mirroring state that Windows might be holding. I've only had to do this twice—both times after a bad Windows Update (KB5034441 in Jan 2024 was a nightmare for this).
Step 3: System File Checker & DISM
Corrupt system files can cause this. Run these commands in an admin command prompt:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
Let them finish. The SFC scan takes about 15 minutes. DISM might take longer. Restart after both complete. This won't fix driver issues, but it will repair any broken Windows components that might interfere with the graphics stack.
Step 4: Last Resort—In-Place Upgrade
If none of the above works, you're looking at a corrupt Windows installation. An in-place upgrade keeps your files and apps but replaces system files.
- Download the Windows 10 or 11 Media Creation Tool from Microsoft.
- Run it and choose Upgrade this PC now.
- Follow the prompts—it'll take 30-60 minutes.
- After reboot, test mirroring.
I've only needed this once, for a Dell XPS 15 where a Windows Insider build borked the entire display stack. The upgrade fixed it.
Still Broken?
If you've done all four steps and the error persists, it might be a hardware issue—specifically with your GPU or motherboard display port. Try a different cable, a different monitor, and if possible, test the GPU in another PC. But honestly, in 10 years of IT consulting, I've never seen hardware cause this specific error. It's always software.
Good luck. You've got this.
Was this solution helpful?