The component store has been corrupted. Error: 0x80073712
This post describes how to fix the error:
"The request to add or remove features on the specified server failed. Installation of one or more roles, role services, or features failed. The component store has been corrupted. Error: 0x80073712"
This error occured on Windows Server 2012 when I was trying to install DFS.
Resolution
To resolve the issue, I repaired the Windows Component Store by running the following in a command prompt as an administrator:
Dism /Online /Cleanup-Image /RestoreHealth
I was then able to successfully install the DFS feature.
Edit: If the above doesn't work and you get the error:
"Error: 0x800f081f
The source files could not be found."
Run the following to specify the source:
Dism /Online /Cleanup-Image /RestoreHealth /Source:D:\sources\install.wim:4
The number at the end is the index of the Windows edition. Run the following to see the index:
Dism /Get-WimInfo /WimFile:D:\sources\install.wim
If this still doesn't work, ensure the Windows Update service can be started.
More information
For other solutions to resolve this error, please see the following post:https://www.thewindowsclub.com/the-component-store-has-been-corrupted-0x80073712
Comments
Post a Comment