
Windows 11's upcoming 24H2 update has been making headlines, but not all for the right reasons. A peculiar glitch involving the System File Checker (SFC) tool has emerged, leaving many users puzzled and concerned about their system integrity. This in-depth guide explains what's happening, why it occurs, and how to resolve it.
Understanding the System File Checker Glitch
The System File Checker (SFC) is a built-in Windows utility designed to scan and repair corrupted system files. However, in early builds of the Windows 11 24H2 update, users running sfc /scannow
are encountering an unexpected error message:
Windows Resource Protection found corrupt files but was unable to fix some of them.
What makes this particularly confusing is that:
- The error appears even on fresh installations
- No actual system instability or performance issues accompany it
- The supposedly corrupted files appear to function normally
Root Cause Analysis
Microsoft has acknowledged this as a known issue in the 24H2 preview builds. The glitch stems from how the update handles WebView2 components:
- WebView2 Integration Changes: The 24H2 update modifies how Microsoft Edge WebView2 runtime integrates with system files
- Version Mismatch: The SFC tool's reference files don't yet account for these changes
- False Positives: The scanner flags legitimate WebView2 files as corrupted when they're actually functioning as intended
How to Verify If You're Affected
To check if you're experiencing this specific glitch:
- Open Command Prompt as Administrator
- Run:
sfc /scannow
- After completion, run:
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log >"%userprofile%\Desktop\sfcdetails.txt"
- Check the generated
sfcdetails.txt
file on your desktop
If you see entries related to MicrosoftEdgeWebView2Setup.exe
or similar WebView2 components, you're likely seeing this glitch rather than actual corruption.
Temporary Workarounds
While Microsoft works on a permanent fix, these solutions can help:
Method 1: Ignore the Error (Recommended for Most Users)
- If your system is functioning normally, the safest approach is to wait for an official patch
- The error is cosmetic and doesn't indicate real system file corruption
Method 2: Manual WebView2 Reinstallation
- Uninstall Microsoft Edge WebView2 via Control Panel
- Download the latest standalone installer from Microsoft
- Reinstall WebView2 manually
Method 3: DISM Repair
Run these commands sequentially in an elevated Command Prompt:
dism /online /cleanup-image /scannow
dism /online /cleanup-image /restorehealth
sfc /scannow
Microsoft's Official Response
A Microsoft spokesperson told windowsnews.ai:
"We're aware of reports regarding SFC scan results in recent Windows 11 preview builds. Our engineering team has identified this as a reporting issue rather than actual file corruption. A fix will be included in future updates."
Preventive Measures for Future Updates
To avoid similar issues:
1. Create System Restore Points before major updates
2. Use Windows Update Troubleshooter if update-related issues arise
3. Wait Before Installing major updates if you rely on critical systems
When to Be Concerned About Real Corruption
While this particular issue is benign, real system file corruption can occur. Be concerned if:
- You experience frequent crashes or errors
- System components fail to start
- The SFC error references non-WebView2 files
In such cases, consider:
- Performing an in-place upgrade
- Using the Windows 11 installation media repair option
- Resetting your PC (as last resort)
Looking Ahead: The 24H2 Update
Despite this minor glitch, the 24H2 update brings significant improvements:
- Enhanced AI integration across the OS
- Redesigned Settings app with better organization
- Performance improvements for hybrid CPUs
- New Dev Home features for developers
Microsoft expects to resolve the SFC reporting issue before the final 24H2 release, currently projected for Fall 2024.
Final Recommendations
For most users:
1. Don't panic about the SFC warning if it only shows WebView2-related files
2. Monitor official Microsoft channels for update announcements
3. Report any unusual system behavior through Feedback Hub
Advanced users can track the bug's status in the Windows Insider Health Dashboard under known issues for build 26080 and later.