Fix 0x0000024F ERROR_SYSTEM_PROCESS_TERMINATED on boot
Your system process crashed because of a corrupted driver or system file. This fix walks you through the quickest checks first, then deeper repairs.
What's actually happening here?
Your system hit error 0x0000024F — ERROR_SYSTEM_PROCESS_TERMINATED. That's Windows telling you a critical system process (like csrss.exe or smss.exe) died unexpectedly during boot. The most common cause? A driver that's corrupted, incompatible, or just plain broken. Specifically, I see this most often after a Windows update that botched a storage or graphics driver, or after a sudden power loss that nuked a system file mid-write.
You'll see this as a blue screen right after the Windows logo appears, maybe with a spinning circle that freezes. No safe mode? No recovery environment? We'll get you there.
Fix 1: The 30-second check — pull the plug (literally)
This sounds stupid, but I've seen it work. If the corruption is in a temporary file or a driver that loaded once and went bad, a full power drain can reset the hardware state. Here's the trick:
- Shut down the machine completely (hold the power button if you have to).
- Unplug the power cord. On a laptop, also remove the battery if it's removable.
- Wait 30 seconds.
- Plug everything back in and boot.
The reason this sometimes works: some PCIe devices (like NVMe SSDs) hold state in capacitors. A full drain forces them to reinitialize, which can clear a wonky driver handshake. Doesn't fix a corrupted file, but it's free to try.
Fix 2: The 5-minute fix — boot into Safe Mode and kill the bad driver
Safe Mode loads only essential drivers. If your system boots in Safe Mode, the problem is almost certainly a third-party driver. Here's how to force Safe Mode when you can't get past the blue screen:
- Boot the machine. When you see the spinning circle, hold the power button to force a shutdown.
- Do that three times. On the third boot, Windows will automatically enter Automatic Repair.
- On the Automatic Repair screen, click Advanced options → Troubleshoot → Startup Settings → Restart.
- After the restart, press 4 or F4 to boot into Safe Mode.
If you get into Safe Mode, open Device Manager and look for devices with yellow exclamation marks. My bet is on your graphics driver (NVIDIA or AMD) or a storage controller driver. Right-click and Uninstall device, checking the box that says Delete the driver software for this device. Reboot normally.
Still crashing? Boot back into Safe Mode and run a sfc /scannow from an admin Command Prompt. It checks system file integrity. Run it, then reboot. If it finds corrupted files and fixes them, you're golden.
Fix 3: The 15+ minute fix — DISM and manual registry repair
If Safe Mode itself crashes or you can't get past the blue screen at all, we need to go deeper. You'll need a Windows installation USB or DVD. Create one from another PC using the Media Creation Tool.
Repair from the recovery environment
- Boot from the Windows USB. Choose your language, then click Repair your computer (bottom-left).
- Go to Troubleshoot → Advanced options → Command Prompt.
- First, run
diskpartthenlist volumeto find your Windows drive letter (usually C:). Typeexitto leave diskpart. - Run this DISM command, replacing
C:with your actual drive letter:
Wait. This can take 10-20 minutes. It fixes the component store, which sfc relies on.DISM /Image:C:\ /Cleanup-Image /RestoreHealth /Source:C:\Windows\WinSxS - After DISM finishes, run sfc against the offline image:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
If DISM fails because it can't find a source, you can point it at the Windows USB itself. Insert the USB, find its drive letter (say D:), then run:
DISM /Image:C:\ /Cleanup-Image /RestoreHealth /Source:D:\sources\install.wim /LimitAccess
The install.wim holds the official files. This usually works.
Manual registry check (last resort)
If the above doesn't help, the error can come from a registry entry that points to a missing or corrupted driver. Back in the recovery Command Prompt:
- Load the registry hive:
reg load HKLM\OfflineSoftware C:\Windows\System32\config\SOFTWARE - Back it up:
reg export HKLM\OfflineSoftware C:\backup_software.reg - Delete any third-party driver services that might be failing. Look under:
HKLM\OfflineSoftware\Microsoft\Windows NT\CurrentVersion\DriverDatabase\DriverPackages— you'll see GUIDs. Check each one for aDriverDatethat's older than your Windows build. Remove any that look suspicious. I know, it's tedious, but it's the nuclear option. - Unload the hive:
reg unload HKLM\OfflineSoftware
Reboot. If it still fails, you're likely looking at a hardware issue — failing SSD, bad RAM, or a motherboard that's going south. Run a memory test from the recovery environment (Memory Diagnostic Tool under Advanced options).
Real-world trigger: I fixed a Dell Precision laptop with this exact error last week. The user had updated their Intel Rapid Storage Technology driver via Windows Update, and it corrupted the driver store. Safe Mode → uninstall that driver → reboot. Two minutes.
If you got here and none of the above worked, your next step is a clean Windows install. Force the pain now rather than chasing ghosts for days.
Was this solution helpful?