Hello Rishi Kumar Gangrade,
The stop code CRITICAL_PROCESS_DIED (0xEF) indicates that a core Windows process terminated unexpectedly, which forces the system into a bugcheck. This is one of the more severe errors because it usually points to corruption in system files, disk integrity issues, or driver conflicts.
The first step is to confirm whether the error occurs consistently at boot or only intermittently during use. If it happens immediately at startup, boot into the Windows Recovery Environment (WinRE) by interrupting the boot sequence three times (power off during the spinning dots). From WinRE, run Command Prompt and execute:
sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows
This will check and repair system files in the offline image. Follow up with:
DISM /Image:C:\ /Cleanup-Image /RestoreHealth
to repair component store corruption.
If the system boots but crashes randomly, check Event Viewer > Windows Logs > System for entries around the time of the crash. Look for Event ID 1001 (BugCheck) and note the process name that failed. Often it is smss.exe, csrss.exe, or wininit.exe. If a driver is implicated, update or roll back that driver. Pay particular attention to storage and antivirus drivers, as they frequently cause this stop code.
You should also run a disk integrity check. From an elevated prompt
chkdsk /f /r
on the system drive. Bad sectors or failing SSD firmware can trigger CRITICAL_PROCESS_DIED.
If none of these steps resolve the issue, perform a clean boot by disabling all non‑Microsoft services and startup items (msconfig > Services tab > Hide Microsoft services > Disable all). If the error disappears, re‑enable services one by one to identify the culprit.
In rare cases, if the corruption is too deep, an in‑place upgrade repair using the latest Windows 11 ISO is required. This reinstalls system components while preserving data and applications.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.