Win8.1 Update batch automatic installation

  
Foreign Michael Crump community users also share this batch installation skills, ordinary users only need to use the Notepad function.
The operation is as follows:
1, download Win8.1 Update upgrade package, you can refer to the forum to organize the Win8.1 Update RTM (17031) Microsoft official download.
2, use Notepad, create a blank document, enter the following:
64-bit platform:
@ECHO OFF
ECHO: Installing KB2919442
START /WAIT Windows8.1-KB2919442-x64 .msu
ECHO: Installing KB2919355
START /WAIT Windows8.1-KB2919355-x64.msu
ECHO: Installing KB2932046
START /WAIT Windows8.1-KB2932046-x64.msu
ECHO : Installing KB2937592
START /WAIT Windows8.1-KB2937592-x64.msu
ECHO: Install complete - press any key to reboot.
Pause
shutdown.exe /r /t 00
Exit
32-bit platform:
@ECHO OFF
ECHO: Installing KB2919442
START /WAIT Windows8.1-KB2919442-x86.msu
ECHO: Installing KB2919355
START /WAIT Windows8 .1-KB2919355-x86.msu
ECHO: Installing KB2932046
START /WAIT Windows8.1-KB2932046-x86.msu
ECHO: Installing KB2937592
START /WAIT Windows8.1-KB2937592-x86 .msu
ECHO: Install complete - press any key to reboot.
Pause
shutdown.exe /r /t 00
exit

The document is saved as a .Bat script Format, such as one-click installation Win8.1 Update.ba t.
3, then a key installation Win8.1 Update.bat placed in the same directory of the Win8.1 Update upgrade package
4, finally, run the Bat script, you can install the Win8.1 Update spring update in batches.

Copyright © Windows knowledge All Rights Reserved