0X80000014

STATUS_EA_LIST_INCONSISTENT (0X80000014) Fix

Windows Errors Intermediate 👁 8 views 📅 Jul 3, 2026

This error means your NTFS file system has a corrupt Extended Attribute list. Fix it with chkdsk or a disk cleanup tool.

Quick answer

Run chkdsk /f X: (replace X with the drive letter showing the error). Reboot. That's it for 9 out of 10 cases.

What's going on here

This error pops up when Windows can't read the Extended Attribute (EA) list on an NTFS drive. EA is metadata that some apps — like antivirus software or older file managers — attach to files. Think of it as a tiny tag. When that tag list gets corrupted, the file system throws 0X80000014. I've seen this mostly on external USB drives that got yanked out without safe removal, or on drives with failing sectors. It can also hit after a sudden power loss or a crash during a file copy. The error message is exact: {Inconsistent EA List} The extended attribute (EA) list is inconsistent.

Step-by-step fix

  1. Identify the drive — The error message or event log will tell you which drive. If it's your system drive (C:), you'll need a reboot. If it's external, plug it in.
  2. Open Command Prompt as admin — Press Win+X, then select "Command Prompt (Admin)" or "Terminal (Admin)" if you're on Windows 10/11.
  3. Run chkdsk with the /f flag — Type:
    chkdsk /f D:
    Replace D with the actual drive letter. For the system drive, it will ask to schedule it at next reboot. Type Y and restart.
  4. Wait for it to finish — chkdsk scans, fixes EA list corruption, and reports what it did. This can take a while on large drives.
  5. Reboot and test — After chkdsk runs, try accessing the files or folders that caused the error. It should work now.

If chkdsk doesn't fix it

Sometimes chkdsk can't repair the EA list because the drive has physical bad sectors. Try these alternatives:

  • Run chkdsk with /r instead of /f — The /r flag does everything /f does plus locates bad sectors and recovers readable data. It's slower but more thorough.
    chkdsk /r D:
  • Use a third-party disk tool — If chkdsk fails, try something like HDD Regenerator or SpinRite for deep sector repairs. But honestly, if the drive has physical damage, copy off your data now and replace it.
  • Check the drive's SMART status — Download CrystalDiskInfo (free). If SMART shows reallocated sectors or pending errors, that drive is dying. Swap it out.

How to avoid this in the future

This error almost always comes from yanking a drive out without using "Safely Remove Hardware". Don't do that. Also, if you notice the error happens repeatedly on the same drive, schedule a weekly chkdsk scan via Task Scheduler. And for external drives, always use a UPS if they're plugged into a PC — power drops corrupt EA lists fast.

One more thing: some older antivirus tools mess with EA lists. If chkdsk keeps finding corruption right after a scan, try disabling the AV's real-time protection temporarily. That narrowed it down for me on a Dell Optiplex 7060 running Windows 10 Pro. Switched the AV to a lighter one (Bitdefender) and the problem never came back.

Was this solution helpful?