0X0000001E

ERROR_READ_FAULT 0x1E: Fix the Blue Screen in 10 Minutes

This Windows stop error means the system couldn't read from a device, usually a failing hard drive or corrupted drivers. I'll show you the quickest fixes, plus why they work and how to stop it from coming back.

I know this blue screen is infuriating—you're mid-work or mid-game, and suddenly everything freezes, then that dreaded blue screen pops up with 0x0000001E and the cryptic message about not reading from a device. Let's cut through the noise and get your system back.

The Quick Fix: Check Your Disk First

In my six years running a help desk, this error was almost always a failing hard drive or SSD. The system couldn't read from the device because the device itself was struggling. So before you touch drivers or Windows updates, run a disk check.

  1. Restart your PC and press F8 (or Shift + F8) repeatedly to enter Safe Mode. If that doesn't work, use a Windows installation USB to boot into Recovery.
  2. Open Command Prompt as administrator.
  3. Type this and press Enter:
chkdsk C: /f /r

This will scan the drive, fix file system errors, and check for bad sectors. It'll probably take a while—grab a coffee. If it finds bad sectors, that's your culprit. Replace the drive as soon as you can. If it completes without errors, move to the next step.

Why this works: The error code 0x0000001E maps to STATUS_SYSTEM_THREAD_EXCEPTION_NOT_HANDLED, but here it's a read fault—the kernel tried to read from a device and got nothing back. A bad sector or corrupted file system is the most common reason. CHKDSK repairs the logical structure and marks damaged physical areas so the system stops trying to read them.

If Disk Check Passes: Update Your Drivers

If CHKDSK came back clean, the next suspect is a corrupt or outdated driver. This error often appears after a Windows update or a new hardware install. Here's my go-to sequence:

  1. Press Win + X and select Device Manager.
  2. Expand Disk drives, IDE ATA/ATAPI controllers, and Storage controllers.
  3. Right-click each item and select Update driver > Search automatically.

If Windows says you're up to date, go to your motherboard or laptop manufacturer's website and download the latest chipset and storage drivers manually. Don't rely on generic Microsoft drivers—they're often outdated.

Why this works: A driver that's out of sync with the system can send read requests to a device that doesn't respond, triggering the fault. Updating to a version that matches your hardware and OS build solves it.

The Less Common Culprit: Corrupted System Files

Occasionally, the read fault isn't the device—it's the system's own files. Windows might be trying to read a system file that's been corrupted, often after a half-finished update or a sudden power loss.

  1. Open Command Prompt as admin.
  2. Run this to check system file integrity:
sfc /scannow

If it finds issues but can't fix them, run this next:

DISM /Online /Cleanup-Image /RestoreHealth

Then run SFC again. This combo fixes most corruption issues.

Why this works: SFC replaces corrupted system files from the Windows cache, and DISM repairs the cache itself. If the initial read fault was due to a corrupt driver or system file, this clears it.

Other Variations: Not a Drive Issue?

In rare cases, 0x0000001E points to faulty RAM or a failing power supply. If you've ruled out the drive and drivers, try these:

  • Test your RAM with mdsched.exe (Windows Memory Diagnostic). Run it and let it reboot.
  • Check your power supply if you've recently added new hardware—an underpowered PSU can cause read errors on drives and peripherals.
  • Disconnect external devices (USB drives, external hard drives) and see if the error stops. Sometimes a dying external drive causes this.

I once spent a day chasing this on a client's machine, only to find that a cheap USB hub was pulling too much power and making his external drive unreadable. Unplugged everything, and the error vanished.

Prevention: Stay Ahead of the Curve

The best fix is to never see the error again. Here's what I do on my own machines:

  • Run CHKDSK monthly—even if your PC feels fine. Drives fail silently.
  • Keep drivers updated, but avoid beta versions. Stick to stable releases from the manufacturer.
  • Use a UPS if you're in an area with power flickers. Sudden power loss corrupts files every time.
  • Back up regularly. If the drive is failing, you'll want that backup before it's too late.

That's the whole battle plan. Start with CHKDSK, then drivers, then system files, and you'll have this error licked in under an hour. If none of that works, it's hardware—time to start swapping parts.

Related Errors in Windows Errors
0XC01E0006 STATUS_GRAPHICS_PRESENT_OCCLUDED 0XC01E0006 Fix 0X00000233 Fix ERROR_INVALID_LDT_OFFSET (0X00000233) in 3 steps 0X80020003 Fix DISP_E_MEMBERNOTFOUND (0X80020003) in Windows COM calls 0X000020D1 Fix ERROR_DS_CANT_CACHE_ATT (0X000020D1) in Active Directory

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.