0XC01C000A

STATUS_FLT_INTERNAL_ERROR (0XC01C000A) Fix Guide

This error means the Windows Filter Manager crashed. It usually happens when a third-party driver or antivirus conflicts with the system's file filter stack.

Cause #1: Antivirus or Security Software Conflict

This is the most common reason for the 0XC01C000A error. Security programs like Norton, McAfee, Bitdefender, or even some versions of Malwarebytes hook into the file system filter stack the same way Windows Filter Manager does. When they don't play nice together, the whole thing crashes. You'll usually see this error as a blue screen (BSOD) right after booting or when you're copying files to an external drive.

Here's how to fix it:

  1. Boot into Safe Mode with Networking. Restart your PC, and as soon as the screen lights up, press and hold the Shift key while clicking Restart. That brings up the recovery menu. Then go to Troubleshoot > Advanced Options > Startup Settings > Restart. After it restarts, press 5 on your keyboard to enable Safe Mode with Networking.
  2. Uninstall your third-party antivirus completely. Don't just disable it. Open Control Panel > Programs and Features, find your antivirus, and select Uninstall. Most modern antivirus programs leave behind leftover services that still cause problems.
  3. Run the vendor's removal tool. That's the real trick. Norton has the Norton Remove and Reinstall tool. McAfee has the McAfee Consumer Product Removal tool. Bitdefender has a removal tool too. Download them from the official site and run them. This digs out the kernel-level hooks the standard uninstaller leaves behind.
  4. Reboot normally. After the cleanup, restart your PC without Safe Mode. If Windows comes up clean and you don't see the error, the antivirus was the problem.
  5. Switch to Windows Defender permanently. I'm serious. Defender is already built-in, lightweight, and doesn't conflict with Windows Filter Manager. It gets updates through Windows Update. And it's free. No need for a third-party suite that breaks your system.

Note: If you need real-time protection and can't stand Defender, try a modern antivirus like Kaspersky Free or Avast One—but test them one at a time. Never run two antivirus programs at once. That's asking for a filter crash.

Cause #2: Corrupted or Conflicting Third-Party Filter Drivers

If your antivirus isn't the issue, it's likely a different driver that also registers as a file system filter. Programs like backup software (Carbonite, Acronis, EaseUS Todo Backup), cloud sync tools (Dropbox, Google Drive, OneDrive), or even old DVD burning software can install their own filter drivers. These pile on top of each other until one of them triggers the STATUS_FLT_INTERNAL_ERROR crash.

How to identify and fix it:

  1. Open an elevated Command Prompt. Press Win + X, then select Windows Terminal (Admin) or Command Prompt (Admin).
  2. Run the Filter Manager diagnostic command. Type this and hit Enter:
    fltmc instances
    You'll see a list of all registered filter drivers. The Altitude column shows their load order. Look for anything unusual—like FileInfo, Symantec, avc3, bindflt, wlfilter, or FileSystem. Anything not from Microsoft could be the culprit.
  3. Check the Frame column. If you see any filter with a Frame number other than 0, that driver is running in a different filter frame—rare but can cause crashes.
  4. Identify the driver's source. Run this command to see the file path:
    fltmc filters
    That shows the driver name and its image path, usually \SystemRoot\System32\drivers\[name].sys. Note the name.
  5. Disable the suspicious driver. Use this command, replacing [driver_name] with the actual name you found:
    sc config [driver_name] start= disabled
    For example: sc config avc3 start= disabled. Reboot normally. If the error stops, you found the problem.
  6. Uninstall the software that installed the driver. Going back to Control Panel > Programs and Features, remove the backup tool or sync software. That's cleaner than leaving the driver disabled, because the software might try to re-enable it on update.

Real-world example: I once saw a client who ran Dropbox, Google Drive, and OneDrive all at once. Each one installed a mini-filter driver. Windows Filter Manager couldn't handle three sync engines fighting over file access, and it crashed on every file copy over 2GB. Uninstalling two of them fixed it instantly.

Cause #3: Corrupted Filter Manager Registry or System Files

If neither of the above fixes it, the Filter Manager itself might be broken. This happens after a failed Windows update, a bad shutdown, or a disk error that corrupted fltmgr.sys or its registry entries. You'll see the error randomly, not tied to any specific software install.

Step-by-step repair:

  1. Run System File Checker (SFC). Open Command Prompt as Admin (same as before) and type:
    sfc /scannow
    Wait for it to finish. It could take 10–20 minutes. It will replace any corrupted system files with cached copies. If it finds errors but can't fix them, move to the next step.
  2. Run DISM to fix the system image. In the same Admin prompt, type:
    DISM /Online /Cleanup-Image /RestoreHealth
    This downloads fresh system files from Microsoft's servers. Let it complete—it might show a progress bar at 20% for a while. Don't interrupt it.
  3. Check the Filter Manager registry key. Press Win + R, type regedit, and press Enter. Navigate to:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FltMgr
    Look at the Start value. It should be 0x00000000 (0). If it's anything else, double-click it and change it to 0. Reboot.
  4. Repair the registry entry for the filter stack. Still in Regedit, go to:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\I/O System
    Look for a key named FilterList or FilterStart. If it exists and contains malformed entries (like random symbols or missing drivers), delete the entire key. Don't worry—Windows regenerates it on next boot.
  5. Check disk for errors. Run this command in Admin prompt:
    chkdsk c: /f /r
    It'll ask to schedule a check on next reboot. Type Y and restart. Let it run—it can take an hour on larger drives. This fixes underlying corruption that could mess with Filter Manager data.

One more thing: If you're still crashing after all this, consider a Windows repair install. Use the Windows 10/11 Media Creation Tool to create installation media, then boot from it and choose "Keep personal files and apps." That reinstalls all system components, including Filter Manager, without wiping your data.

Quick-Reference Summary Table

Cause Fix Time Estimate
Antivirus conflict Uninstall third-party AV, run removal tool, switch to Defender 15–30 minutes
Third-party filter driver Use fltmc instances to ID driver, disable it, uninstall software 20–40 minutes
Corrupted system files/registry SFC, DISM, chkdsk, check FltMgr Start value 30–90 minutes

If you've tried all three and the 0XC01C000A error still shows up, you've hit a rare edge case. Try posting the output of fltmc instances to a tech forum like the Microsoft Community or Reddit's r/techsupport. Include what you've tried. Someone will spot the odd driver you missed.

Related Errors in Windows Errors
0X000000B6 Fix 0X000000B6 (ERROR_INVALID_ORDINAL) on Windows 10/11 0X00003B61 Fix ERROR_MCA_INVALID_VCP_VERSION (0X00003B61) on Windows 0X00000193 Fix ERROR_PROCESS_MODE_NOT_BACKGROUND (0x00000193) – 3 Steps 0X80093018 Fix OSS_CANT_OPEN_TRACE_WINDOW (0x80093018) in 3 Steps

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.