How does Win10 manually install the CAB and MSU format update packages?

  
How does Win10 manually install the CAB and MSU format update packages? Win10 update installation is automatic by default, but sometimes we will also encounter problems such as installation failure, this time may need to be manually installed to solve. For the Windows 10 offline update package, the format is generally MSU, how to install this format? There is also a CAB format installation package, how should this file be installed?

1, MSU
The format of the installation package can be run by double-clicking, but if you use the command line, you can attach some parameters to make the installation process more in line with your own requirements. Let's take a look at the KB3172988 patch for Win10 stable preview version 10586.494 (click here to enter the download page) as an example to explain how to use the installation command.
The format of the command is as follows:
wusa.exe "X: path windows10.0-kb3172988-x64_c3f911bf701a57a0423828fec6707b8a0b181453.msu" /quiet /norestart
where wusa.exe is the installation command, the content in quotes is updated Package path (need to be rewritten according to their actual situation), followed by /quiet means silent installation, /norestart means no need to restart (these parameters can be used as appropriate).
2, CAB
This format is more common in the language pack, but the method introduced today is not suitable for the installation of the language pack, only for the update package installation of this format, pay great attention to this. The tool used is also a command prompt. The command format is as follows:
dism /online /add-package /packagepath:"X:path file name.cab"
This is also very simple, just put the trailing path Fill it in correctly and you can run it.

Copyright © Windows knowledge All Rights Reserved