Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home»Windows»How to Fix NTFS FILE SYSTEM Error on Windows

How to Fix NTFS FILE SYSTEM Error on Windows

Anup ThapaBy Anup ThapaSeptember 8, 2022
ntfs file system error

The NTFS_FILE_SYSTEM bug check, which has a value of 0x00000024, generally occurs if there’s some problem with ntfs.sys. This driver file enables read and write operations between the system and NTFS drives.

Aside from this, the presence of bad sectors on the disk, corrupt storage controller drivers, or memory problems can also cause this BSOD.

The NTFS FILE SYSTEM error can prevent you from booting at all, in which case, you’ll have to try and troubleshoot via the recovery console or using an installation media. We’ve detailed how you can do this in this article.

Table of Contents

  • Ways to Fix NTFS FILE SYSTEM Error
    • Boot to Safe Mode / Installation Media [Situational]
    • Check Drive Space
    • Use Diagnostic Tools
    • Use Memory Diagnostic Tool
    • Repair Corrupt System Files
    • Disable Monitoring Programs
    • Use System Restore

Ways to Fix NTFS FILE SYSTEM Error

Before you start, reseat the memory modules and the storage media to get any connection issues out of the way.

Boot to Safe Mode / Installation Media [Situational]

After encountering this bugcheck, a restart is often all that’s needed to be able to boot normally. In such cases, you should back up all important data elsewhere, as there’s a possibility that your drive is corrupted/failing. Afterward, you should check out some of the fixes listed below to ensure you don’t encounter the BSOD again.

However, more often, the system will just keep crashing and won’t be able to boot. In such cases, you should first try booting to safe mode. Here’s how you can do this:

  1. Force restart the computer 3 times a row to boot into the Recovery Environment.
  2. Select Troubleshoot > Advanced Options > Startup Settings > Restart.
    restart-to-change-windows-options
  3. Press 5 or F5 to select Safe Mode with Networking and restart.
    winre-startup-settings
  4. You should be able to try out the fixes listed below in safe mode.

In rare cases, you won’t even be able to access the recovery environment. This indicates that the disk is seriously corrupt, and your priority should be to save as much as you can. 

In cases like this, you can use a Live Linux Drive to try to recover data, or you can boot using an installation media and try some of the fixes from this article. Here are the steps for the second method:

  1. Connect the installation media to your system and restart.
  2. Press the Boot Options key shown on the screen (usually F12).
  3. Select the installation media to boot from it.
    Boot-options-device
  4. In the Installation Wizard, select Repair your computer.
  5. Select Troubleshoot > Advanced Options.
    winre-advanced-options
  6. Your options will be limited here, but you can still try out some of the fixes like chkdsk. If none of the fixes resolve the BSOD at the end, you can also use the same method to reinstall the OS.

Check Drive Space

Microsoft recommends having a certain amount of free space on the drive (generally 10% – 15%) for various Windows functions, including swap files. If this space isn’t available, that can lead to this BSOD. As such, you’ll want to clear up a bit of space if necessary.

disk management unallocated space

Inbuilt tools like Storage Sense and Disk Cleanup will be helpful for this purpose. Additionally, you could use Disk Management to check if there’s any unallocated space.

Use Diagnostic Tools

If your system manufacturer has provided any hardware diagnostics tools, especially ones for the storage sub-system, it would be best to use those. Otherwise, the native CHKDSK utility will also be helpful. Here’s how you can use it:

  1. Press Win + R, type and Enter cmdEnter.
  2. Type chkdsk c: /f /r, replace c: with your system drive letter if different, and press Enter.
    chkdsk-f-r
  3. Enter Y to accept the prompt and restart your PC. The disk scan will run upon restarting.

In the recovery environment, the steps to use chkdsk are slightly different:

  1. Select Command Prompt from the Advanced Options page.
  2. Execute the following commands and note the system drive letter:
    Diskpart
    list vol

    diskpart-list-vol
  3. Enter exit.
  4. Type chkdsk c: /r, replace c: with the drive letter from Step 2, and press Enter.

Use Memory Diagnostic Tool

If the available nonpaged pool memory is very low or completely depleted, that can also stop the system and lead to this BSOD. As such, you’ll want to check for any memory issues in your system. Here’s how you can do this with the Memory Diagnostic Tool:

  1. Press Win + R, type mdsched, and press Enter.
  2. Select Restart now and check for problems.
    mdsched
  3. The tool will begin tests automatically upon restarting, but you can also press F1 and specify whether you want to perform a Basic, Standard, or Extended test. The number of tests and time taken will vary accordingly.
    memory-diagnostic-option
  4. After the tests are complete, the results will be displayed briefly. 

You can also view the results later on through the event viewer. Here’s how you can do this:

  1. Press Win + R, type eventvwr, and press Enter.
  2. Select Windows Logs > System.
  3. Click on Find from the left pane, type MemoryDiagnostic, and press Find Next.
    memory-diagnostic-logs
  4. Select the log and check its description for details on what the problem is.

Repair Corrupt System Files

Missing or corrupted system files are another potential reason for this BSOD. As such, we recommend using the DISM and SFC utilities to repair system corruption. Here are the steps for this:

  1. Press Win + R, type cmd, and press Enter.
  2. Execute the following commands:
    dism /online /cleanup-image /restorehealth
    sfc /scannow

    dism sfc

If you’re booting from an installation media, here’s how you can use these utilities via the recovery environment:

  1. Select Troubleshoot > Advanced Options > Command Prompt.
  2. Execute the following commands and note the system drive letter:
    Diskpart
    List vol

    diskpart-list-vol
  3. Enter exit.
  4. Type DISM /image:C:\ /cleanup-image /restorehealth.
    dism-restorehealth-recovery-environment
  5. Replace C: with the system drive letter if different and press Enter.
  6. Next, type sfc /scannow /offbootdir=C:\ /offwindir=C:\windows.
    sfc-scannow-recovery-environment
  7. Once again, replace C: with the system drive letter if different and press Enter.

Disable Monitoring Programs

Although rare, things that continually monitor the system, like antiviruses, disk defragmenters, or backup programs, have a possibility of causing this BSOD. As such, disabling or removing any such programs atleast temporarily will be helpful for resolving this BSOD. 

Use System Restore

If you had created a system restore point before this BSOD first started, restoring your system to that point would be one of the easiest ways to fix the NTFS FILE SYSTEM error. Here’s how you can do this via the live Windows environment:

  1. Press Win + R, type rstrui, and press Enter.
  2. Press Next and select the restore point to use.
    System-restore-selected
  3. Accept the confirmation prompts and press Finish.
  4. After 30 – 60 minutes, the system restore should finish, and you’ll receive a completion message.
    system-restore-process

You can also use System Restore via the Recovery Environment. Here are the steps for this:

  1. Select Troubleshoot > Advanced Options > System Restore.
  2. Pick the system restore point to use.
    system-restore
  3. Select Next > Finish and accept the confirmation prompt.
fix
Anup Thapa
  • LinkedIn

Anup Thapa is a tech writer at TechNewsToday. He mostly writes informative articles, tutorials, and troubleshooting guides related to Windows systems, networking, and computer hardware. Anup has been writing professionally for almost 5 years, and tinkering with PCs for much longer. His love for all things tech started when he got his first PC over 15 years ago. It was a Pentium IV system running Windows XP on a single 256 MB stick. He spent his formative years glued to this PC, troubleshooting any hardware or software problems he encountered by himself. Professionally, Anup has had brief forays into a variety of fields like coding, hardware installation, writing, etc. In doing so, he's worked with people of different backgrounds and skill levels, from average joes to industry leaders and experts. This has given him not just a versatile skillset, but also a unique perspective for writing that enables him to concisely communicate complex information and solve his reader's problems efficiently. You can contact him at anup@technewstoday.com

Related Posts

computer suddenly slow

Why is My Computer Suddenly Slow? 11 Ways to Fix It

March 31, 2023
scheduled task reboot

How to Create a Reboot Scheduled Task in Windows

March 31, 2023
slow computer startup

14 Ways to Fix Slow Computer Startup

March 26, 2023
boot loop

14 Ways to Fix Windows Boot Loop

March 19, 2023
how to change windows startup sound

How to Change Windows Startup Sound

March 17, 2023
scan disk windows 10

How to Scan Disk Windows

March 16, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
what-does-collate-mean-on-a-printer

What Does Collate Mean on a Printer?

March 31, 2023
usb-vs-pcie-wifi

USB Vs PCIe Wi-Fi—Which One is Better?

March 31, 2023
how often to replace laptop

How Often Should You Replace a Laptop

March 29, 2023
You may also like
computer suddenly slow

Why is My Computer Suddenly Slow? 11 Ways to Fix It

March 31, 2023
HTTP-Error-431

How to Fix HTTP Error 431

March 31, 2023
scheduled task reboot

How to Create a Reboot Scheduled Task in Windows

March 31, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Our Team
  • Editorial Guidelines
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday, editor@technewstoday.com | Tech Central Pvt. Ltd.

Type above and press Enter to search. Press Esc to cancel.