Thursday, August 27, 2015

64 bit - component store is corrupted - 0x800f081f

I had problem install windows update.


I found in event log problem with component store.


First I check component store with Deployment Image Servicing and Management tool.


Scanhealth


dism /online /cleanup-image /scanhealth

Result


The component store is repairable.
The operation completed successfully.

CheckHealth


dism /Online /Cleanup-Image /CheckHealth

Result


The component store is repairable.
The operation completed successfully.

So I tried repair component store.


DISM /online /cleanup-image /restorehealth

Result with errror


The restore operation failed. Either the repair source was not found or the comp
onent store cannot be repaired.
Error: 0x800f081f
DISM failed. No operation was performed.
For more information, review the log file.

I checked log C:\Windows\Logs\DISM\DISM.log but there is no error.


Checking System Update Readiness.
Summary:
Operation: Detect and Repair
Operation result: 0x0
Last Successful Step: Entire operation completes.
Total Detected Corruption: 0
CBS Manifest Corruption: 0
CBS Metadata Corruption: 0
CSI Manifest Corruption: 0
CSI Metadata Corruption: 0
CSI Payload Corruption: 0
Total Repaired Corruption: 0
CBS Manifest Repaired: 0
CSI Manifest Repaired: 0
CSI Payload Repaired: 0
CSI Store Metadata refreshed: True
Total Operation Time: 545 seconds.

Any idea how to solve this problem?


Here is complete DISM log.


EDITED


I also ran sfc / scannow


Result


Beginning system scan.  This process will take some time.
Beginning verification phase of system scan.
Verification 100% complete.
Windows Resource Protection did not find any integrity violations

Here is CBS.log

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...