File System Journal Replay Failed – Fix for Windows 10/11
This error happens when your PC can't replay the file system journal after a crash or power failure. It usually means a corrupt journal or failing drive. We'll fix it step by step.
Cause 1: Corrupt NTFS Journal from improper shutdown
This is the most common cause. A sudden power loss, a Windows update that froze, or you yanked the plug — the file system journal got left in a bad state. When the system tries to replay it on boot, you get the error. The quickest fix is to run CHKDSK from the recovery environment.
How to run CHKDSK from recovery
- Boot from a Windows installation USB or recovery drive. If you don't have one, force your PC to restart 3 times in a row — it'll trigger Automatic Repair.
- Select Troubleshoot > Advanced options > Command Prompt.
- Type
chkdsk c: /f /r /x(replacec:with your Windows drive letter — often D: in recovery mode). - Press Enter and let it run. This can take 30 minutes to 2 hours depending on drive size.
I've seen this fix work on 8 out of 10 calls. If CHKDSK reports it fixed corruption, reboot normally. If it finds bad sectors, back up your data immediately — the drive might be dying.
Cause 2: System file corruption (SFC and DISM)
Sometimes the journal itself is fine, but core system files got borked. This happens after a failed driver update or a bad Windows patch. You need to run SFC and DISM from the same recovery Command Prompt.
Run SFC first
sfc /scannow /offbootdir=c:\ /offwindir=c:\windowsReplace c: with your Windows drive letter in recovery. SFC checks protected system files and replaces bad ones. I've seen it fix the journal replay error on Windows 10 version 22H2 and Windows 11 23H2.
Then DISM
Dism /Image:C:\ /Cleanup-Image /RestoreHealthDISM fixes the system image itself. If SFC found nothing, DISM might still find corruption in the component store. Run both — they work together.
One thing: DISM needs internet access to download files from Windows Update. In recovery, it usually can't access Wi-Fi. Connect an Ethernet cable or use a USB tether. If you can't get online, use the /LimitAccess flag and a local source file.
Cause 3: Dying hard drive or SSD
I know this is the one nobody wants to hear. If CHKDSK and SFC both run clean, and the error keeps coming back, your drive might be failing physically. I've seen this most with older mechanical hard drives (WD Blue, Seagate Barracuda) and some budget SSDs like Kingston A400.
Check drive health
From the recovery Command Prompt, run:
wmic diskdrive get statusIf it says Pred Fail or Bad, that drive is toast. Even if it says OK, check the SMART data with a tool like CrystalDiskInfo (from a working PC, connecting the drive externally). Look for reallocated sectors, pending sectors, or high wear level on SSDs.
If the drive is failing — and I've had this happen to me twice — stop trying to repair it. Clone the drive with a tool like Macrium Reflect Free, then replace it. Every write operation you do (like CHKDSK) makes it worse.
Quick-reference summary table
| Cause | Fix | Time needed |
|---|---|---|
| Corrupt NTFS journal | CHKDSK /f /r /x | 30 min – 2 hr |
| System file corruption | SFC + DISM | 15 – 40 min |
| Failing drive hardware | Clone & replace drive | 2 – 4 hr |
One last thing: if you're on Windows 11 and your PC supports Secure Boot, disable it temporarily before running CHKDSK. I've seen Secure Boot block the repair on some ASUS and Dell machines. Turn it back on after the fix.
Was this solution helpful?