Tips for installing Windows 8.1 Update in batches

  
Since the windows8.1 update upgrade package is open for download, many win8.1 users have been eager to download in advance. I believe that during the installation process, most of the users are installed one by one. This method is ok, but it is very troublesome and time consuming. So here is a little trick to teach you a simple bat script. Easy to implement batch installation of win8.1 update.
Operation is as follows:
1, download Win8.1 Update package
2, use Notepad, create a blank document, enter the following content:
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< Br>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< Br>exit

然The script of the document as .Bat format, such as one-click installation Win8.1 Update.bat.
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 Win8.1 Update in bulk Update.
windows8.1 update spring update brings a lot of novel operations, attracting many users to download and install, the user is proficient in the above-mentioned introduction through the bat script, batch installation win8.1 update tips, can It's easy to install the system for you, it can also save you a lot of time and unnecessary trouble.

Copyright © Windows knowledge All Rights Reserved