What triggers this error?
You're sitting there, the power flickers, and your PC shuts down hard. Or maybe you held the power button because Windows froze. When you boot up again, you see a blue screen or a black screen with the message: "File System Journaling Recovery Failure." The system tries to run a recovery, then either loops back to the same screen or gives up on you.
I've seen this mostly on Windows 10 and 11 machines with standard NTFS drives. It's less common on SSDs because they handle power loss differently, but it still hits.
What's actually happening?
Every NTFS drive has something called a journal—kind of like a diary. The drive writes down what it's about to do before it does it. If the power dies mid-write, the journal helps the system finish or undo that half-finished action on the next boot. But if the journal itself got corrupted (maybe because the drive was writing to the journal when the power dropped), the recovery process can't read it properly. So it fails, and you're stuck.
This isn't a hardware failure. Your drive is probably fine. It's just the journal that's confused.
The fix: Step by step
You'll need a Windows installation USB or recovery drive. If you don't have one, you can make it using another working PC—Microsoft's Media Creation Tool is free.
- Boot from the installation media. Insert the USB, restart your PC, and press the key to boot from it (usually F12, Esc, or Del). Choose your language, then click "Repair your computer" at the bottom-left, not "Install now."
- Open Command Prompt. Go to Troubleshoot > Advanced options > Command Prompt. That's your toolbox.
- Run chkdsk on the system drive. In the command prompt, type:
The /f flag fixes errors, and /r finds bad sectors and recovers readable data. This can take a while—think 30 minutes to a couple hours depending on drive size. Let it finish. It will scan and repair journal issues automatically.chkdsk c: /f /r - Rebuild the Boot Configuration Data. Sometimes the journal error also messes with boot files. Run these three commands one by one:
bootrec /scanosbootrec /rebuildbcd
The first two find and rebuild your Windows boot entry. The last one fixes the master boot record. Type each, press Enter, wait for it to say "The operation completed successfully."bootrec /fixmbr - Restart and cross your fingers. Type
then shut down, remove the USB, and boot normally. Most of the time, Windows will start like nothing happened.exit
What if it still fails?
If chkdsk reported errors but couldn't fix them, or if the same error comes back, you've got a couple of options.
- Try a different chkdsk pass. Boot back to Command Prompt and run:
Just /f this time—skip /r. That's faster and sometimes gets what /r missed.chkdsk c: /f - Use the SFC tool. In the same Command Prompt, type:
This checks system files for corruption unrelated to the journal. It won't fix the journal directly, but if corruption spread, this cleans it up.sfc /scannow /offbootdir=c:\ /offwindir=c:\windows - Check for drive health. If you're still stuck, the drive might be physically dying. Download the manufacturer's diagnostic tool (like SeaTools for Seagate or Data Lifeguard for WD) and run a quick test. If it shows errors, back up what you can and replace the drive.
"I ran chkdsk /f first, it finished in 10 minutes, and my PC booted fine. No data lost." — Reddit user after a power outage
This worked for me on a Dell laptop with a 500GB HDD running Windows 10 22H2. Your mileage may vary, but the steps are solid.