Home > Article > System Tutorial > Solve the error code 0x80070643 that occurs when upgrading win10 version 1803 to 1903
When we use a computer with win10 version 1803 operating system installed, sometimes we may encounter errors when the system updates the new operating system version. So for the problem of win10 version 1803 update 1903 error code 0x80070643, the editor thinks it may be because there is internal damage to our computer when it is updated. We can roll back the system or reinstall the system.
1. First, right-click Start in the lower left corner, and then select "Windows PowerShell (Administrator)" in the pop-up menu.
2. Then enter in the window:
for /F "tokens=*" %F in ('dir %windir%\SoftwareDistribution\Download \*Update number* /s /b') do (dism /online /add-package/packagepath:"%F")
The update number is your patch number, for example, if it is "kb12345", enter :
for /F "tokens=*" %F in ('dir %windir%\SoftwareDistribution\Download\*12345* /s /b') do ( dism /online /add-package /packagepath: "%F")
3. The * before and after are indispensable when inputting, so it is recommended that you copy it directly.
4. After execution, the failed program can be installed again.
5. Another point is that if the previous command prompts "File not found", it means that the patch has not been downloaded to the local computer, but has been deleted.
The above is the detailed content of Solve the error code 0x80070643 that occurs when upgrading win10 version 1803 to 1903. For more information, please follow other related articles on the PHP Chinese website!