Problem occurred

Today in Windows10 under the system update, there is “some update file missing or problems. We will try to download the update again later. Error code: (0x80073712) “.

This problem is presumed to be caused by the shutdown of the update “preparing the computer, do not turn off the power”.

This situation is lucky, otherwise, when the update power off, this behavior, it is very likely to lead to the subsequent system can not be used, unable to boot and other serious problems.

How to solve it?

The solution is to use Dism and SFC /scannow. The process is as follows:

  1. Right click on the Windows icon on the taskbar and select Microsoft Powershell(Administrator) (Run Powershell as administrator)

  2. Enter the following commands one by one and run them in sequence:

Dism /Online /Cleanup-Image /CheckHealth
Copy the code
Dism /Online /Cleanup-Image /ScanHealth
Copy the code
Dism /Online /Cleanup-Image /RestoreHealth
Copy the code
sfc /scannow
Copy the code
  1. Restart the computer

  2. If you get a “some files can’t be fixed” reply (usually on an SFC command), repeat steps 1-3 several times.

reference

Some update files are missing or have problems. We will try to download the update again later. Error code: -Microsoft Community