Yeah, that error is a pain in the ass. You're mid-game or mid-spreadsheet and the screen freezes, goes black, and then you get that pop-up about the display driver stopping. The code is 0xC01B00EA. Let's get straight to it.
The Quick Fix: Increase the TDR Timeout
The error code 0xC01B00EA is a Windows feature called Timeout Detection and Recovery (TDR). It's a watchdog timer. If your GPU takes longer than 2 seconds to respond to a system request, Windows assumes the driver is hung and kills it. That's the black screen and the error.
So the fix isn't to reinstall drivers (though that's step zero if you haven't), it's to give the GPU more time. Here's how:
- Press
Win + R, typeregedit, hit Enter. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers - Right-click on the right pane, select New → DWORD (32-bit) Value.
- Name it
TdrDelay. (If it already exists, just edit it.) - Set the value data to
10(that's in seconds). Decimal, not hex. - Click OK and restart your PC.
That's it. The default TDR timeout is 2 seconds. Setting it to 10 seconds gives your GPU breathing room. If it's a borderline issue, this usually fixes it.
Why This Works
TDR is a safety net. It's supposed to catch a driver that's truly stuck, but it's trigger-happy. Modern GPUs occasionally take a bit longer to process a complex shader or a heavy texture load, especially if you're running a high-resolution monitor or multiple displays. When that happens, Windows panics and restarts the driver, which causes the flash and the error.
By bumping TdrDelay to 10, you're telling Windows to give the driver a full 10 seconds before pulling the plug. It's not a magic bullet, but it weeds out the false positives. Had a client last month whose entire print queue died because of this — the display driver kept resetting, and one of those resets corrupted the print spooler. A 30-second registry edit saved them a full system reinstall.
Less Common Variations
Sometimes the TDR timeout isn't the root cause. If the error persists after raising TdrDelay, here's what else to check:
1. Overclocking Instability
If you're overclocking your GPU or CPU, that's a common trigger. The GPU might be stable at 99% of workloads, but one specific game or app pushes it over the edge. Set everything back to stock clocks and test. If the error goes away, you need to dial back your overclock or increase voltage (if you're comfortable with that).
2. Driver Corruption
Use Display Driver Uninstaller (DDU) in safe mode to completely remove the old driver, then install the latest driver from NVIDIA, AMD, or Intel directly. Don't use the Windows Update driver — it's often outdated and buggy.
3. Power Supply Issues
This is a sneaky one. If your PSU is failing or undersized, the GPU can drop voltage under load, which causes the driver to hang. Check your power supply wattage and health. A cheap multi-meter on the 12V rail can tell you a lot.
4. GPU VRAM or Heating Problems
If the GPU is overheating, it'll throttle and then crash. Use MSI Afterburner or HWInfo to monitor temps. Max 85°C is a good rule of thumb for most GPUs. Also, run a VRAM test like Video Memory Stress Test to see if you've got bad memory chips.
5. Multiple Monitors with Different Refresh Rates
Mixing a 144Hz monitor with a 60Hz one can cause TDR issues, especially on older NVIDIA drivers. Set both to the same refresh rate (60Hz) temporarily to test. If that fixes it, you might need to update the driver or use a custom resolution tool.
Prevention: Stop It From Happening Again
Once you've fixed the immediate issue, these steps will keep it from coming back:
- Keep drivers current — but don't install beta drivers unless you know what you're doing. Stick to Game Ready or WHQL versions.
- Clean your PC — dust buildup causes overheating. A can of compressed air every six months works wonders.
- Don't overdo overclocking — if you must overclock, stress test with
FurMarkorOCCTfor at least an hour. - Check your event log — if you see
Event ID 4101right before the error, that's TDR. If you seeEvent ID 14(for NVIDIA) orEvent ID 17(AMD), that's a hardware issue. - Keep Windows updated — Microsoft has tweaked TDR behavior in cumulative updates. Windows 11 22H2 and later handle this better.
The TDR error is one of those things that look terrifying but usually just need a nudge. If the registry tweak doesn't do it, go through the variations above. You'll either find a quick fix or a hardware problem that needs replacing. Either way, you'll be back up and running without pulling your hair out.