posted as answer for formatting...
To view the details that included in the CBS.Log file, you can copy the information to the Sfcdetails.txt file by using the Findstr command, and then view the details in the Sfcdetails.txt. To do this, follow these steps:
- Open an elevated command prompt as described in the previous step 1.
- At the command prompt, type the following command, and then press ENTER:
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log >"%userprofile%\Desktop\sfcdetails.txt"
Note The Sfcdetails.txt file contains details from every time that the System File Checker tool has been run on the computer. The file includes information about files that were not repaired by the System File Checker tool. Verify the date and time entries to determine the problem files that were found the last time that you ran the System File Checker tool.
- Open the Sfcdetails.txt file from your desktop.
- The Sfcdetails.txt file uses the following format: Date/Time SFC detail
I assume that's output from sfc which means your component store is corrupt so use DISM to repair it – Ramhound – 2014-11-15T14:10:08.790
@Ramhound was referring to
dism /Online /Cleanup-Image /RestoreHealth
– Vinayak – 2014-11-18T21:33:01.183