0xc000021a (STATUS_SYSTEM_PROCESS_TERMINATED) means a critical user-mode process — Winlogon (winlogon.exe) or the Client Server Run-Time Subsystem (csrss.exe) — crashed, and Windows shut itself down because it can't run without them. The most common trigger is corrupted system files after a failed Windows Update or an incompatible third-party program. Boot into Windows Recovery (WinRE), open a Command Prompt, and repair the system files:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
Then reboot. If that alone doesn't fix it, run DISM first (see Step 3) and repeat SFC, or roll back the last update from WinRE.
winlogon.exe or csrss.exe, causing them to crash at startup.csrss.exe from initialising, especially after a major feature update changes driver-signing enforcement.Force three failed boots (power on, then hold the power button to kill it as the Windows logo appears, three times) and Windows opens Automatic Repair. Or boot from a Windows 10/11 install USB and choose Repair your computer. Then go to Troubleshoot → Advanced options.
In Advanced options, choose Uninstall Updates → Uninstall latest quality update (or Uninstall latest feature update if a feature update was the last thing installed). This reverses most update-triggered cases without touching your data. Reboot and test before doing anything else.
In Advanced options → Command Prompt, confirm which drive letter WinRE assigned to your Windows partition (it may not be C:). Then run DISM to repair the component store, followed by SFC to fix individual system files:
dism /image:C:\ /cleanup-image /restorehealth
Wait for DISM to finish (it can take 15–30 minutes), then run SFC:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
Replace C: with the actual Windows drive letter if it differs in WinRE. Reboot and test.
If SFC and DISM didn't help and you have restore points, go back to Advanced options → System Restore and pick a restore point from before the error started. This rolls back system files, drivers, and registry entries without deleting your personal files.
From Advanced options → Startup Settings → Restart, press 4 or F4 for Safe Mode (or 5/F5 for Safe Mode with Networking). In Safe Mode, uninstall any recently added programs or driver updates via Settings → Apps or Device Manager. If the BSOD appeared right after installing new software, removing it here often clears the error.
Corrupted system files sometimes point to underlying disk damage. From a WinRE Command Prompt:
chkdsk C: /f /r
Replace C: with the Windows drive letter. /f fixes file-system errors; /r locates bad sectors and recovers readable data. Reboot and test.
chkdsk /r are normally safe, but a drive that's already failing can lose data when stressed by a full-surface scan. Take a sector image to a known-good external disk first, and never run repairs on the only copy of irreplaceable data.
Yes. Windows Recovery (WinRE) lives on the broken PC itself — force three failed boots to trigger Automatic Repair, or boot from any Windows install USB. All the SFC, DISM, and System Restore steps run inside WinRE. No second computer is required. (GRAM runs inside Windows rather than from boot media — use it once the machine boots to read the crash dump and verify the root cause.)
No. SFC replaces only corrupted or mismatched protected system files with known-good copies. DISM repairs the Windows component store. Neither command touches your personal files, documents, or installed applications.
Uninstall the latest update from WinRE (Advanced options → Uninstall Updates). Choose the quality update first; if a feature update was most recent, uninstall that instead. This is the safest and fastest fix for update-triggered 0xc000021a cases.
If even Safe Mode crashes, the damage is deeper than a single bad driver. Run the offline SFC and DISM sequence from WinRE (Step 3), try System Restore (Step 4), and check the disk with chkdsk /f /r (Step 6). If none of those resolve it, the Windows installation may need a repair install (in-place upgrade) from a Windows install USB, which reinstalls the OS while keeping your files and most programs.
Related: CRITICAL_PROCESS_DIED (0x000000EF) · Automatic Repair loop · All Windows boot error codes