Where Customization Begins 

  • How to Inject IE10 to your install.WIM image

  • Windows® Automated Installation Kit (WAIK), Windows System Image Manager (WSIM), Win PE and Windows Assessment and Deployment Kit (ADK) Tutorials are right here.
Windows® Automated Installation Kit (WAIK), Windows System Image Manager (WSIM), Win PE and Windows Assessment and Deployment Kit (ADK) Tutorials are right here.
 #25058  by Neuropass
 19 Jan 2013, 19:41
You can preinstall Internet Explorer 10 on Windows 7 SP1 or Windows Server 2008 R2 with SP1, by slipstreaming Internet Explorer 10 into the operating system image (Install.wim)

What you need:

Download IE10: IE10
Download the prerequisites hotfixes below from here: Microsoft Catalog


KB2731771
KB2729094
KB2533623
KB2639308


and this last one from here: KB2670838

Group them all in one folder and inject them into the wim image with this cmd: (adjust location path)


dism /image:c:\TEST_FOLDER /Add-Package /PackagePath:c:\upds\ie10-preq



Now Open an elevated command prompt and Expand the IE10 package with this cmd: (adjust location path)

Code: Select allC:\IE10-Windows6.1-x64-en-us.exe /x:C:\ie10\IE10Win7SP1x64-en-us



Install the packages extracted in the following order:

Code: Select allDism /Image:C:\TEST_FOLDER /Add-Package /PackagePath:C:\upds\IE10Win7SP1x64-en-us\IE-Win7.cab
Dism /Image:C:\TEST_FOLDER /Add-Package /PackagePath:C:\upds\IE10Win7SP1x64-en-us\IE-Hyphenation-NEU.MSU
Dism /Image:C:\TEST_FOLDER /Add-Package /PackagePath:C:\upds\IE10Win7SP1x64-en-us\IE-Spelling-NEU.MSU



Commit the changes and enjoy! If you need to know the commit cmds etc you can find them here: Examples of DISM commands. Build your custom 7 with DISM
 #25081  by Neuropass
 20 Jan 2013, 14:32
no problem. It took me few hours to figure this crap out. I thought someone would like to know this and save some time.