Hello, Mark.
Thank you for reaching out to the Microsoft Q&A!
It seems the installation error you encountered indicates corrupted or incomplete system/update files. There can be multiple fixes for this. The first step can involve:
- Stopping Windows Update services, use:
net stop wuauserv & net stop bits
, which stops the Windows Update service and the Background Intelligent Transfer Service. - Clear these two directories in SoftwareDistribution, use:
del %windir%\SoftwareDistribution\Download\* & del %windir%\SoftwareDistribution\DataStore\*
orcd %windir%\SoftwareDistribution\ & del .\Download\* & del .\DataStore\*
(An ampersand is used as a second or additional command to be executed in one line. You can separate these commands if you wish.) - Restart the Update services again, using:
sc start bits & sc start wuauserv
ornet start bits & net start wuauserv
- Attempt to install the update again.
If this does not fix the issue, you can also attempt to run the Windows Update and BITS troubleshooter at Settings > System > Troubleshoot > Other Troubleshooters
, which can identify the recurring problem.
If the troubleshooter cannot repair your installation error, here are some other steps you can take:
- Scan for corrupted system files, using:
sfc /scannow
And restart afterwards. Another method is usingDISM.exe /Online /Cleanup-Image /ScanHealth
- If problems are found, useDISM.exe /Online /Cleanup-Image /RestoreHealth
and restart to clean leftover files or fragments. - Referring to a System Restore Point, which, if available, can be found at
Control Panel > System and Security > Backup and Restore (Windows 7)
, or press⊞ + R
and entersysdm.cpl
. This will open System Properties, and find theSystem Protection
tab. If a System Restore Point is found, you should see that theSystem Restore...
button underSystem Restore
should be available. - While uncommon, tight resources can also cause the error to occur. You can scan for disk space by searching for
Disk Cleanup
in the Start Menu or pressing⊞ + R
and enteringcleanmgr
which will bring you to a GUI where you can clean up your disk space.
If I could help, let me know by telling me! If you encountered any issues while performing the actions listed above, let me know! Thank you for reading, and I wish you the best of luck with installing the update.