Hello Have we got any bugcheck code when the machine restart or is there any dump file created in C:\Windows\memory.dmp or C:\Windows\minidump folder? If there is any dump file created, we could try to check the dump with Windbg tool. Install WinDbg - Windows drivers | Microsoft Learn If there is no dump created, we could try to enable WER to create a user mode dump automatically. Open administrator command line then run the follwing command. Reboot the machine. Reg Add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /f Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /V DumpFolder /t REG_SZ /D "C:\CrashDumps" /f MD C:\CrashDumps Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /V DumpType /t REG_DWORD /D 2 /f Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps" /V DumpCount /t REG_DWORD /D 10 /f Next time the service crash again, there should be dump file created in C:\crashdumps. The key to analyze this issue is to get a dump file for the crash service. Analyzing the dump could be complex, it is recommended to open a Microsoft Profession ticket for more resources (Lsass service is covered by our AD team). Microsoft Professional Support (pay-per-incident): FAQ - Microsoft Support For general troubleshooting, please take the following steps:
- If there is any third party antivirus software installed, please uninstall it temporarily then reboot to check.
- Check the issue in clean boot environment to verify third party service conflict issue. How to perform a clean boot in Windows - Microsoft Support
- Open adinistrator command line and run "dism /online /cleanup-image /restorehealth" to check the health of system files.