Share via

How to Repair Corrupt System Files on Windows 11 Boot Disk

JenRG 41 Reputation points
2026-03-10T15:01:06.71+00:00

For background info...we noticed that Outlook desktop could not perform searches. Decided to run a scanpst. However, Windows reported that the entire pst directory was corrupted.

All programs and data are stored on the same internal disk drive.

Event Viewer shows Errors with Event IDs 55, 131, 1801, 7024, 7031 & 7034.

Here's what we've tried so far:

Repaired MS Office. (Other than not being able to run searches, all other aspects of Office are working. Given the other problems going on with the disk, I'm not inclined to uninstall and reinstall for concerns it may stop working all together.)

Ran sfc /scannow. It found no issues.

Ran chkdsk /f - After reboot, Event Viewer says that the disk could not be corrected and is throwing Event ID 131.

chdsk /r

chkdsk c: /scan - This ran for over 24 hours. It listed files in approx 6 directories that were corrupted and were queued for offline scan, but seemed hung up and not progressing.

chkdsk /x

chkdsk /spotfix

dism /online /cleanup-image /restorehealth

in PowerShell ran Repair-Volume c:

Ran disk utility from drive manufacturer. Reported that there were no problems on the drive

Disk management shows that the drive is healthy.

Would appreciate any help anyone could give. Thanks

Windows for home | Windows 11 | Performance and system failures
0 comments No comments

Answer accepted by question author

  1. Clary-N 10,925 Reputation points Microsoft External Staff Moderator
    2026-03-11T09:18:52.3433333+00:00

    Hi JenRG,

    Thank you for reaching out to Microsoft Q&A forum.

    I can see that Q&A Assist has already suggested a few troubleshooting steps. If you’ve tried those and the issue is still not resolved, it usually indicates that the problem is occurring at the disk or file system level rather than with Windows system files alone.

    To help you move forward safely, I’d recommend the following approach:

    Step 1: Back up any accessible data

    If you’re still able to access any files, please back them up to an external drive or cloud storage as soon as possible. When file system errors are present, continued use of the device may increase the risk of further data loss, so securing your data first is very important.

    Step 2: Proceed with a clean installation if the issue persists

    The next recommended step would be to perform a clean installation of Windows. A clean install rebuilds Windows on a fresh file system structure and avoids carrying over any existing disk or file system corruption that repair installs may not resolve.

    *Disclaimer: At this point, we have exhausted all troubleshooting and I recommend that we try to perform a clean install to get your computer back into a working condition. Please ensure that you backup any important data, including Documents, Pictures, Videos, and more.

    I hope this helps. Please feel free to let me know if you have any other questions or need further assistance.


    If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Q&A Assist
    2026-03-10T15:01:23.7233333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Based on the steps already completed (SFC, DISM, multiple CHKDSK variants, Office repair, and PowerShell Repair-Volume), the supported next actions are:

    1. Re-run DISM then SFC in the recommended order Even though SFC previously found no issues, the recommended sequence is:
      1. Open an elevated Command Prompt (Run as administrator).
      2. Run:
              DISM.exe /Online /Cleanup-image /Restorehealth
        
        Wait for it to complete and report “The operation completed successfully.”
      3. Then run:
              sfc /scannow
        
        Wait for “Verification 100% complete.”
      This combination ensures that if the component store used by SFC was damaged, DISM repairs it first so SFC can correctly validate and repair protected system files.
    2. Interpret SFC results and act accordingly After sfc /scannow, check the result message and follow the documented action:
      • If it reports “Windows Resource Protection did not find any integrity violations.”
        • System files on the Windows volume are not corrupted; the remaining problem is likely file-system level or data (PST) corruption rather than core OS files.
      • If it reports “Windows Resource Protection found corrupt files and successfully repaired them.”
        • System file corruption was fixed. Reboot and test Outlook search again.
      • If it reports “Windows Resource Protection found corrupt files but was unable to fix some of them.”
        • Use the CBS log to identify specific files and manually replace them with known-good copies as documented.
      • If it reports “Windows Resource Protection could not perform the requested operation.”
        • Run SFC again in Safe Mode as documented, and verify the PendingDeletes and PendingRenames folders exist under %WinDir%\WinSxS\Temp.
    3. Use the simplified SFC/DISM workflow for Windows 11 For Windows 11 specifically, the documented workflow is:
      1. Install the latest Windows Updates and restart the machine.
      2. Open Command Prompt as administrator.
      3. Run:
              DISM.exe /Online /Cleanup-image /Restorehealth
        
      4. When it completes successfully, run:
              sfc /scannow
        
      5. When verification reaches 100%, type exit and press Enter.
      This ensures both the component store and protected system files are in a known-good state.
    4. If corruption persists or CHKDSK cannot correct the disk The provided documentation does not go beyond DISM + SFC for repairing system files. If CHKDSK continues to report uncorrectable file-system errors and SFC/DISM complete successfully, the remaining supported path is to:
      • Ensure personal data is backed up where possible.
      • Use Windows’ built-in reset options (e.g., “Reset this PC” with Keep my files) to lay down a clean OS image while preserving user data, as suggested in similar corruption scenarios in the context.
      This approach replaces all system files and registry configuration with a fresh copy, which is the documented next step when in-place repair tools (CHKDSK, DISM, SFC) are not sufficient.

    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.