WIN7 X64 solves the problem of unable to install IE11 and unable to click the Microsoft upgrade package MSU

Original text: http://www.cnblogs.com/wordgao/p/4431888.html

 

Generally, the officially downloaded file is a suffix file in MSU format. This file belongs to the system upgrade package patch.
After downloading, directly clicking install will report an error. The error message is as follows: The
installation program encountered an error: 0x80070422 Unable to start the service, the reason may be that it has been Disabled or associated with it.
Please save the following files as .bat batch files, mainly to solve the error of manually clicking on the Microsoft MSU upgrade file: 0x80070422 The 
code is as follows:

 

copy code
sc config wuauserv start= auto
sc config bits start= auto
sc config DcomLaunch start= auto
net stop wuauserv
net start wuauserv
net stop bits
net start bits
net start DcomLaunch
copy code


The following are the pre-installation conditions and must-install patch files given by the system when the installation of WINDOWS IE11 fails;
Baidu network disk: http://pan.baidu.com/s/1sjkHo5J
  batch batch installation commands and corresponding patch packages If you think the patch package is not clean and may be poisonous, you can download it through the official website;
the patch package command is given below, please find the corresponding patch package by yourself, and if you are afraid of trouble, you can download all the files directly from my network disk.
The reason given by the command is that some people are afraid that the files in the network disk are poisonous, and some users only need to order no files, mainly to install other patches according to the needs of other users, instead of downloading the packaged files and just need a piece of installation command code instead of A lot of waiting time.

copy code
%windir%\system32\wusa.exe Windows6.1-KB2533623-x64.msu /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2639308-x64 /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2670838-x64.msu /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2729094-v2-x64.msu /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2731771-x64.msu /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2786081-x64.msu /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2834140-v2-x64.msu /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2834140-x64 /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2882822-x64 /quiet /norestart
%windir%\system32\wusa.exe Windows6.1-KB2888049-x64 /quiet /norestart
copy code


After the patch is installed, please restart the computer, let the system further complete the patch installation, and then continue to install the WINDOWS 11 browser.
Or if you feel that the above commands are too troublesome after downloading the patch, you can choose the following batch installation commands. However, the command is not perfect, please modify it according to your own needs.

for /f %%i in ('dir *.msu /S /B /ON') do wusa.exe %%i /quiet /norestart

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326770480&siteId=291194637