I have been having an issue very much the same thing and after 24 hours, I have had 0 issues with a specific change.
TL;DR — Root cause: HVCI (Memory Integrity) on Windows 11 25H2 build 26200 is falsely enforcing Control Flow Guard violations across system-wide processes. This is an OS-level regression in Microsoft's hypervisor-based code integrity enforcement. Disabling Memory Integrity immediately resolved all crashes. I am only 24 hours in, but with no issues, that track record is breaking records for me.
Details:
I have actually been digging into this in depth with Claude and I think it has found the likely culprit after many days and many hours troubleshooting my problems. No, this is not chkdsk, sfc, dism related. I ran each of those at least a dozen times. This first started with Brave browser crashing every day with the same error, STATUS_ACCESS_VIOLATION. Well, after digging, I found out it wasn't just Brave.
Over 105 days, I logged 82 crashes across 21 different applications, all with the same two exception codes (0xc0000005 and 0xc0000409). The most affected were Windows Defender (MsMpEng.exe / mpengine.dll) with 25 crashes, Brave Browser (chrome.dll) with 19 crashes, Windows Update (MoUsoCoreWorker.exe) with 8 crashes, and PowerShell (clrjit.dll) with 4 crashes. Other affected apps included Task Manager, Chrome, SearchIndexer, Explorer, svchost, NVDisplay, SecurityHealthService, GameBar, sppsvc, and more.
Brave and Chrome displayed the error in-browser as "Aw, Snap! Error code: STATUS_ACCESS_VIOLATION".
What I Ruled Out
- Bad RAM — MemTest86, 4 full passes, 0 errors (64 GB DDR5)
- Corrupt system files — sfc /scannow + DISM /RestoreHealth, all clean
- Browser extensions — disabled all, crashes continued in 20+ other apps
- GPU driver — updated NVIDIA RTX 4070 Ti driver + disabled hardware acceleration, crashes continued
- Dual antivirus conflict — fully uninstalled Malwarebytes, crashes continued
- BIOS/ME firmware — updated both, crashes continued
- Corrupt Defender definitions — MpCmdRun.exe -RemoveDefinitions -All + re-downloaded, crashes continued
- Browser profile corruption — both Brave and Chrome crashed with same errors
The Fix
Settings > Privacy & Security > Windows Security > Device Security > Core Isolation > Memory Integrity — turn it OFF, then reboot.
Result: Zero crashes since disabling HVCI. The system went from ~0.8 crashes/day for 3.5 months to zero crashes immediately.
Why This Is the Cause
0xc0000409 is the Control Flow Guard (CFG) fast-fail exception code. HVCI enforces CFG at the hypervisor level. When HVCI falsely flags legitimate code, it terminates the process with this exact exception. 0xc0000005 (access violation) is the downstream effect of HVCI's stricter memory protection enforcement in 25H2.
The crashes affected 21 completely unrelated applications that share no common library or framework — the only thing they share is running under HVCI on build 26200. Disabling HVCI was the only change that resolved the issue, after systematically ruling out every other cause over weeks of testing.
System Details
OS: Windows 11 Pro 25H2 Build 26200.8037, Intel 14th gen CPU, NVIDIA GeForce RTX 4070 Ti (driver 32.0.15.9579), 64 GB DDR5, Defender Platform 4.18.26020.6 / Engine 1.1.26020.3
This appears to be a regression in HVCI enforcement in 25H2. The PC reset that resolved your issue likely worked because it reset the Core Isolation / Memory Integrity setting to its default state. I'd recommend checking whether HVCI was re-enabled after your reset.