No. Ran sfc scannow twice with restarts inbetween. No integrity violations either time
Found this gem of a tip on the eightforums.com in a tutorial on using scannow. Unfortunately,
didn't note the URL while I was copying. This text code does work and will extract info from your
CBS log on corruption repairs by sfc:
How to See and Read Only the "SFC" Scan Results from the CBS.LOG
NOTE: When SFC runs, it logs it's actions into the C:\Windows\Logs\CBS\CBS.log. The steps in this option will
show you how to see only the specific SFC entries with the [SR] tags in this CBS.log. This can be helpful to
show you what files SFC could not fix automatically if you wanted to try and manually replace them.
- Open an elevated command prompt in Windows 8.
- In the elevated command prompt, copy and paste the command below and press Enter.
NOTE: This will place a sfcdetails.txt file on your desktop with only the SFC scan result details from the
CBS.LOG in it.
Code:
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log >%userprofile%\Desktop\sfcdetails.txt
- Close the elevated command prompt.
- Open the sfcdetails.txt file on your desktop to see the SFC scan details in the CBS.LOG.
- When finished, you can safely delete the sfcdetails.txt file afterwards if you like.
Tip
The import of the tutorial also stated that one runs sfc /scannow first until you get your
integrity violations fixed. May take up to three attempts with restarts inbetween.
Then if scannow can't fix it, run DISM /Online /Cleanup-image /Restorehealth and see if
that will cleanup store corruption.
Is that other people's understanding, that the proper order is run sfc /scannow first and then
if that does not work, DISM?
Thanks.