0X80000015

STATUS_INVALID_EA_FLAG (0X80000015) Fix: Invalid EA Flag

This error means an extended attribute flag is wrong. Usually from corrupted file metadata or a bad app. Here's the direct fix.

You're seeing error 0x80000015. Let's fix it.

This error can be frustrating, but I've seen it many times. It usually pops up when you try to open a file or run a program, and Windows says the extended attribute (EA) flag is invalid. The EA flag is a piece of metadata that tells Windows extra info about a file, like read-only or hidden, but more complex. Something messed it up.

The most common cause is a corrupted file system or a program that writes bad data to file attributes. I've seen it after a failed software install or a sudden power loss. Let's go straight to the fix.

The Fix: Run chkdsk and sfc

This two-step process fixes most cases. You'll need to run Command Prompt as an administrator. Here's how:

  1. Press Windows Key + X and click Command Prompt (Admin) or Windows PowerShell (Admin). If you see a User Account Control prompt, click Yes.
  2. In the black window, type this command and press Enter:
    chkdsk c: /f
    Note: If the error came from a different drive, replace c: with that drive letter (like d:).
  3. You'll see a message: "Chkdsk cannot run because the volume is in use by another process. Would you like to schedule this volume to be checked the next time the system restarts?" Type Y and press Enter.
  4. Restart your computer. Windows will run chkdsk during boot. This can take 10-30 minutes depending on drive size. Let it finish. You'll see a black screen with white text showing progress. Don't turn off the PC.
  5. After Windows loads back up, open Command Prompt as Admin again.
  6. Type this and press Enter:
    sfc /scannow
    This checks all system files for corruption. It'll take about 15-20 minutes. You'll see a progress percentage.
  7. When sfc finishes, if it says it found corrupted files and repaired them, you're good. If it says it couldn't repair some files, run this command next:
    DISM /Online /Cleanup-Image /RestoreHealth
    This pulls fresh system files from Windows Update. Let it complete, then run sfc /scannow again.

After you do this: Try the file or program that gave the error. It should work now. If not, read on.

Why This Fix Works

CHKDSK fixes file system errors on the drive. That includes corrupted EA flag data. SFC fixes system files that might have bad code handling EAs. Together, they cover the two main spots where EA flag corruption hides. I've fixed dozens of PCs with this combo. It's the first thing I tell my technicians to try.

Less Common Variations

Sometimes chkdsk and sfc don't work. Here are other things I've seen cause this error:

  • Bad third-party software: Some old backup tools or antivirus programs write EA flags wrong. Try uninstalling any recently installed software. Go to Settings > Apps > Installed apps, find the program, and uninstall it. Restart and test.
  • NTFS permissions corruption: The EA flags live in the NTFS file system. If permissions get messed up, you might see this error. Open Command Prompt as Admin and run:
    icacls full_path_to_file /reset
    Replace full_path_to_file with the actual file path (like C:\Users\YourName\Documents\badfile.txt). This resets permissions to defaults.
  • Hard drive issues: If chkdsk found bad sectors, you might have a failing drive. Run CrystalDiskInfo (free tool) to check drive health. If it shows yellow or red, back up your data and replace the drive.
  • Rare case: Windows update bug: I've seen this on Windows 10 version 22H2 after a specific update. If chkdsk/sfc didn't help, try uninstalling the latest Windows update. Go to Settings > Windows Update > Update history > Uninstall updates. Pick the most recent one, uninstall, restart.

Prevention Tips

To stop this error from coming back:

  • Shut down properly: Don't hold the power button. A sudden power loss can corrupt EA flags. Use the Start menu shutdown always.
  • Keep your drive healthy: Run chkdsk once a month. I do it on my own PC after every major Windows update.
  • Watch what you install: Avoid old or weird software from unknown sites. Stick to known publishers. I've seen this error from a freeware game patcher.
  • Back up important files: EA flag corruption can sometimes make files unreadable. Keep copies on another drive or cloud.

That's it. Start with chkdsk and sfc. You'll fix this error 9 times out of 10. If you're stuck after trying everything, feel free to ask me — I'll help you narrow it down.

Related Errors in Windows Errors
0X40000016 Fix STATUS_PREDEFINED_HANDLE (0X40000016) Registry Error Fast 0X00003706 Fix ERROR_SXS_MULTIPLE_DEACTIVATION (0x00003706) on Windows 0X00000FD9 Fix PEERDIST_ERROR_INVALIDATED (0X00000FD9) Fast 0X00002092 Fix ERROR_DS_OUT_OF_SCOPE (0X00002092) 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.