The Problem
NTFS_FILE_SYSTEM (stop code 0x00000024) means the NTFS driver hit corruption in the on-disk structures it depends on — the master file table, a directory index, or the journal. Windows stops immediately rather than write more data on top of damaged metadata.
Two things cause it: the file system was damaged (sudden power loss, a bad shutdown, an interrupted update), or the drive underneath is failing and returning bad data. Treat your files as at risk from the moment you see this screen.
Before anything else: if the PC still boots, copy your important files to another drive now. Organise and back up important documents covers what to grab first. Cannot boot at all? See fix INACCESSIBLE_BOOT_DEVICE.
Symptoms
- Blue screen reading NTFS_FILE_SYSTEM, often on boot or when opening a particular folder.
- Files or folders that show as 0 bytes, have garbled names, or throw "The file or directory is corrupted and unreadable".
- File Explorer hangs when browsing one specific drive.
- Windows runs a disk check automatically at startup, then blue-screens again anyway.
Step 1: Get Your Data Off First
Every repair step below writes to the damaged volume. That is normal and usually safe, but it is not free.
- If Windows boots, copy documents, photos, and anything irreplaceable to an external drive or cloud storage right now.
- Copy the smallest, most important files first — a dying drive may not survive the whole transfer.
- If Windows will not boot, boot from a Windows installer USB, choose Repair your computer → Troubleshoot → Command Prompt, and copy files with
robocopy:
Drive letters differ in the recovery environment — runrobocopy C:\Users\YourName D:\Rescue /E /R:1 /W:1 /XJdiskpart, thenlist volume, thenexitto check. - If files are already missing: how to recover deleted files in Windows.
Step 2: Run CHKDSK Against the Affected Volume
- Open Terminal (Admin).
- Scan without repairing first, so you know what you are dealing with:
chkdsk C: /scan - To repair the Windows volume, schedule a full pass and reboot:
chkdsk C: /f /r - Type
Ywhen asked to schedule it for the next restart, then reboot. - The
/rpass reads every sector and can take several hours on a large mechanical drive. Do not interrupt it, and keep a laptop plugged in. - For a secondary drive, substitute its letter — for example
chkdsk D: /f /r— and no reboot is needed.
Step 3: Repair Windows System Files
Corrupted system files produce the same crash even when the disk is fine.
- In Terminal (Admin):
sfc /scannowDISM /Online /Cleanup-Image /RestoreHealth - Reboot and run
sfc /scannowonce more — the first pass often cannot replace files that are in use. - Step-by-step: how to run SFC and DISM.
Step 4: Check the Drive's SMART Health
- In Terminal (Admin):
wmic diskdrive get model,status - Read the detailed attributes with CrystalDiskInfo or your drive vendor's tool. Watch Reallocated Sector Count, Current Pending Sector Count, Uncorrectable Sector Count, and NVMe Percentage Used / Available Spare.
- Full guide: check SSD and hard drive health.
- A drive with growing pending sectors is failing. No amount of CHKDSK fixes that — replace it.
Step 5: Reseat Cables and Rule Out the Connection
- Shut down, unplug the power, and hold the power button for five seconds.
- Reseat SATA data and power cables at both ends, or the M.2 module in its slot.
- Try a known-good SATA cable and a different SATA port on the motherboard.
- An intermittent cable writes garbage to the file system repeatedly, so this is worth ruling out before you replace a drive.
Step 6: Disable Fast Startup
Fast Startup leaves the file system in a partially mounted state between sessions, which turns one bad shutdown into recurring corruption.
- Open Control Panel → Power Options → Choose what the power buttons do.
- Click Change settings that are currently unavailable.
- Untick Turn on fast startup (recommended) → Save changes.
- Always shut down from the Start menu rather than holding the power button. Related: fix Windows 11 not shutting down or restarting.
Step 7: Test the Memory
Bad RAM corrupts data on its way to disk, so the file system takes the blame for a memory fault.
- Windows + R →
mdsched.exe→ Restart now and check for problems. - Press F1 and set the Test Mix to Extended.
- Confirm with MemTest86 from a USB stick over four or more passes.
- Related: fix MEMORY_MANAGEMENT BSOD.
Step 8: Update Storage Drivers and Firmware
- Windows + R →
msinfo32→ note System Model and BIOS Version/Date. - Install the current chipset and storage controller (Intel RST / AMD RAID) drivers from the PC or motherboard manufacturer.
- Check the SSD manufacturer's toolbox for a firmware update — several NVMe firmware bugs caused exactly this crash.
- Related: how to update outdated drivers.
What Not to Do
- Don't keep rebooting and hoping. Each crash writes more damage into the metadata.
- Don't run
chkdsk /ron a drive with SMART warnings before you have copied your data off. Recovery is far harder after a failed repair pass. - Don't reformat immediately if you still need the files — reformatting makes recovery much less likely.
Still Not Working?
If CHKDSK finds and "fixes" errors on every run, the drive is failing — new corruption keeps appearing. Replace it, then either restore from backup or move the installation across: how to clone a hard drive to an SSD.
If the drive tests clean but Windows still crashes, do a repair install that keeps your files: reinstall Windows without losing data.
Related: fix UNEXPECTED_STORE_EXCEPTION and fix a corrupted USB or external drive.
Related guides
Fix UNEXPECTED_STORE_EXCEPTION in Windows 11
UNEXPECTED_STORE_EXCEPTION in Windows 11 usually points at a failing drive, a display driver, or antivirus. Work through these ordered checks to find the real cause and fix it.
How to Fix BAD_SYSTEM_CONFIG_INFO in Windows 11
BAD_SYSTEM_CONFIG_INFO means the registry or boot configuration is damaged. Repair BCD, restore the registry hives, and get back into Windows 11 with these ordered steps.
How to Fix CLOCK_WATCHDOG_TIMEOUT in Windows 11
CLOCK_WATCHDOG_TIMEOUT means a CPU core stopped responding to the rest of the processor. Fix unstable overclocks, bad drivers, and cooling faults with these step-by-step checks.
How to Fix WHEA_UNCORRECTABLE_ERROR in Windows 11
Blue screen showing WHEA_UNCORRECTABLE_ERROR in Windows 11? It means hardware reported a fault Windows cannot recover from. Isolate RAM, CPU, drive, or overclock with these fixes.
How to Clone a Hard Drive to an SSD in Windows 11
Move Windows 11 to a new SSD without reinstalling. Prepare the drive, clone the whole disk, fix the boot order, and verify the result with this step-by-step guide.