How to integrate Win8.1 Update complete image

  
Below, I have compiled how to integrate Win8.1 into the Win8.1 Update full mirror image tutorial, and manually integrate the Win8.1 Update patch directly on the Win8.1 RTM system image.
Preparation tools: DISM tools (Win8.1 system comes with), UltraISO (floppy) v9.6.1 (download), Windows 8.1 RTM retail version (click here to download)
Test platform: Windows 8.1 Professional (Win8.1 Enterprise Edition, Core Edition)
Upgrade Patch: Win8.1 Update Update Patch (KB2919442, KB2919355, KB2932046, KB2937592, click here to download)
Final Image: Win8.1 Update 6.3.9600.17031 .WinBlue

Reference steps:
For example, put Windows 8.1 RTM retail version, Win8.1 Update update patch on E disk, and create new wim empty folder for later mounting of image file. Operation

1. Load Win8.1 RTM retail version image to F disk, copy F:sourcesINSTALL.WIM image file

2, copy install.wim image to E disk directory
>
Operation principle: Use the DISM command line tool to integrate the Win8.1 Update RTM update patch to the INSTALL.WIM image. Note: DISM is a Windows 7 system package deployment tool, an upgraded version of ImageX, so it can be used directly under Win7/Win8/Win8.1.
4, use the key combination Win + X, or right click on the start button, open a command prompt (admin), enter the following integration command in turn:

(//is to explain the meaning of the command, do not enter)
dism /get-wiminfo /wimfile:e:install.wim
//Get the Windows 8.1 version information in the image.

Windows 8.1 Professional operation:
dism /mount-wim /wimfile:e:install.wim /index:1 /mountdir:e:wim
//mounting (Mount) image Windows 8.1 Pro to the E:wim folder. (Afterwards, Win8.1 users can manually integrate Windows 8.1 Standard/Enterprise Edition)
Windows 8.1 Standard Edition operation:
dism /mount-wim /wimfile:e:install.wim /index:2 /mountdir :e:wim
//Mounting the Windows 8.1 Standard Edition to the E:wim folder
dism /image:e:wim /add-package /packagepath:e:Win8.1UpdateWindows8 .1-KB2919442-x64.msu
//Integrate Windows8.1-KB2919442-x64.msu update patch to E:wim
dism /image:e:wim /add-package /packagepath:e:Win8 .1UpdateWindows8.1-KB2919355-x64.msu
//Integrate Windows8.1-KB2919355-x64.msu update patch to E:wim

dism /image:e:wim /add-package /Packagepath:e:Win8.1UpdateWindows8.1-KB2932046-x64.msu
//Integrate the Windows8.1-KB2932046-x64.msu update patch to E:wim
dism /image:e:wim /add- Package /packagepath:e:Win8.1UpdateWindows8.1-KB2937592-x64.msu
//Integrate Windows8.1-KB2937592-x64.msu update patch to E:wim

dism.exe /image :e:wim /enable-feature /featurename:NetFX3 /Source:F:sourcessxs (optional operation)
//For Win8.1 Update system image Machine integrated Net3.5 components (“F disk” represents the virtual drive letter mounted by Win8.1 RTM)

dism /unmount-wim /mountdir:e:wim /commit
//Uninstall (unmount) the previously mounted image file

Because Win8/Win8.1 RTM system installation process, you need to enter the installation key (inactive key), so we can use ei in the system image. The cfg file skips the input key step.
5, use Notepad to create a new empty text, rename it to ei.cfg, enter:
[EditionID]
[Channel]
Retail
[VL]
0

6. Use UltraISO to replace the original install.wim in the Windows 8.1 RTM system image with the created "install.wim”; add the ei.cfg file to the system sources directory and re-save it as a new system image. .

At this point, the Win8.1 2014 Update RTM full system image has been generated.

Copyright © Windows knowledge All Rights Reserved