please someone help check my CBS.log after running sfc /scannow (i have a problem with user profile service failed the sign-in)

anonymous 0 Reputation points
2026-09-09T23:35:06.77+00:00
Windows for home | Windows 11 | Performance and system failures
0 comments No comments

2 answers

Sort by: Most helpful
  1. EmilyS_726 27,560 Reputation points Volunteer Moderator
    2026-09-10T01:44:12.19+00:00

    The log file didn't contain anything that indicates the SFC scan found something.

    Don't think the User Profile service error was caused by corrupted system files.

    I would suggest that you go to Event Viewer > Windows Logs > application

    Look for errors from User Profile Service at the time the sign in failed, and post the event ID and full error msg.

    Was this answer helpful?


  2. AI answer

    2026-09-09T23:35:22.6333333+00:00

    A CBS.log review is not possible from the shared file here, but the next supported steps are clear.

    1. Extract only the SFC entries from CBS.log. Open Command Prompt as administrator and run:
         findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log >"%userprofile%\Desktop\sfcdetails.txt"
      
      This creates sfcdetails.txt on the desktop and makes the SFC results easier to read.
    2. Check whether the unrepaired entries are real corruption or just expected CBS entries. Some CBS.log entries can report files such as Img11.jpg as not repaired even when SFC completed successfully. That can happen because the file change is recorded in CBS.log even though Windows Resource Protection does not protect that file.
    3. Since the actual problem is User Profile Service failed the sign-in, check the User Profile Service logs. In Event Viewer, go to: Applications and Services LogsMicrosoftWindowsUser Profile ServiceOperational Review events from the time the sign-in failed.
    4. If the Operational log is not enough, enable the diagnostic log temporarily. In Event Viewer:
      • Select ViewShow Analytic and Debug Logs
      • Go to Applications and Services LogsMicrosoftWindowsUser Profile ServiceDiagnostic
      • Select Enable Log Reproduce the sign-in issue, review the events, then disable the log after troubleshooting because this logging is much more detailed.
    5. If SFC reported corruption it could not fix, use DISM to repair the component store. Run an elevated command prompt and use:
         DISM /Online /Cleanup-Image /RestoreHealth
      
      Then verify again with:
         DISM /Online /Cleanup-Image /ScanHealth
      
      After that, review C:\Windows\Logs\CBS\CBS.log again.
    6. If DISM reports source-missing or unresolved corruption, the supported repair path is to provide source files and rerun DISM with /Source, for example:
         DISM /Online /Cleanup-Image /RestoreHealth /Source:C:\temp\Source\ /LimitAccess
      
      This requires copying the correct versions of the corrupted files into C:\temp\Source first.
    7. If the profile issue still remains after checking the User Profile Service logs and repairing corruption, focus on the profile-specific events rather than CBS alone. CBS.log helps with system file and component store issues, but the sign-in failure is more directly diagnosed from the User Profile Service Operational and Diagnostic logs.

    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.