Tips for installing Windows 8.1 Update in batches

  

Since the Windows 8.1 update package was released for download, many win 8.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.

The operation is as follows:

1. Download Win8.1 Update package

2. Use Notepad to create a blank document and 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

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< Br>

shutdown.exe /r /t 00

exit

32-bit platform:

@ECHO OFF

ECHO: Installing KB2919442< Br>

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

Then save the document as a .Bat script format, such as one-click installation of Win8.1 Update.bat.

3, then a key installation Win8.1 Update.bat placed in the same directory as the upgrade package Win8.1 Update

4, finally, run the Bat script, you can batch Install the Spring Update for Win8.1 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 After that, it can help you install the system easily, and it can save you a lot of time and unnecessary trouble.

Copyright © Windows knowledge All Rights Reserved