Critical Process Died BSOD Fix (Working Guide 2026)

You install a Windows update, the system restarts, and instead of the login screen you get a CRITICAL PROCESS DIED BSOD. The spinning circle appears, then the crash, then another restart loop. I saw this right after applying KB5147487 on a Windows 11 machine. Booting into Safe Mode didn’t help at first.

The core problem isn't the update itself – it's a broken WinSxS component that prevents critical services (TrustedInstaller, wuauserv) from starting during the first reboot. critical process died bsod fix starts with checking CBS.log. In my case, the log showed repeated “failed to load component” errors.

What actually broke the restart loop

After two hours of trying different things, the only sequence that worked was: run DISM, then SFC, then manually enable TrustedInstaller and re-register Windows Update components. The DISM command alone didn’t change anything – same bsod critical process died after reboot. But combining it with SFC and service re-register did the trick.

  • Boot into Windows Recovery Environment (WinRE) by force shutting down three times during startup.
  • Open Command Prompt from Troubleshoot → Advanced Options.
  • Run DISM /Image:C: /Cleanup-Image /RestoreHealth /Source:esd:C:sourcesinstall.esd /LimitAccess (adjust drive letter). Wait – this took about 12 minutes.
  • After DISM finishes, run SFC /SCANNOW /OFFBOOTDIR=C: /OFFWINDIR=C:Windows.
  • Exit WinRE and boot normally. If the BSOD still appears, use Safe Mode with Networking and run these commands as admin: sc config TrustedInstaller start= auto and sc start TrustedInstaller.
  • Then re-register Windows Update components: regsvr32 /s wuapi.dll & regsvr32 /s wuaueng.dll & regsvr32 /s wups.dll.
  • Restart. The system should now boot past the spinning circle.
⚠️ What not to do: Do not disable any critical system services (TrustedInstaller, wuauserv, BITS). Avoid forcing a shutdown during the reboot stage – that can deepen corruption. Never skip DISM before SFC; SFC alone won’t fix component store issues.

After this fix, the update completed without further errors. If you still see critical process died windows 11 fix searches leading you here, the method above is the most reliable path. In some cases, you might need to perform a repair install using an ISO (mount it and run setup /repair). But for the majority, the DISM + SFC + service enable combination resolves the BSOD.

Why does this happen? The update installer writes pending changes into WinSxS. If any component becomes unreadable, TrustedInstaller fails to start, causing the kernel to terminate the process – hence CRITICAL PROCESS DIED. Rebuilding the component store with DISM and forcing service startup breaks the deadlock.

🔍 Validation: After applying these steps, the system should boot to the desktop, CBS.log (C:WindowsLogsCBS) should contain no “failed to load component” entries, and the update shows as installed in Settings.

This worked for both Windows 10 and Windows 11. The same critical process died error repair guide applies to Server 2022 with slight path adjustments.