Jump to content

Internet Explorer 9.exe support


MANIKANT.S.GUPTA

Recommended Posts

Hi,Legolash2o

Can you explain how to integrate IE9?

IE9 is an.exe file. W7 Toolkit sees .msu files, but it does not see IE9 with.exe files. Therefore, cannot add IE9 in update section?

For 32 bit Windows 7

Copy contents of your Windows 7 SP1 DVD to C:\Seven

Download the IE9 32 bit installer in exe format

Rename the downloaded file to I9.exe

Paste this code into a textfile and save as integrate.bat. Execute it as administrator.

This script will integrate IE9 into all images of your windows 7 32bit dvd (you need IE9-Windows7-x86-xxx.exe)

@echo off

cls

mkdir C:\WIM

C:\IE9.exe /x:C:\IE9

erase /F /Q "C:\IE9\IE9_SUPPORT.CAB"

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:5 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:4 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:3 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:2 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:1 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

erase /F /Q "C:\IE9.exe"

RD /S /Q "C:\WIM"

RD /S /Q "C:\IE9"

pause

exit

____________________________________________________________________________________

For 64 bit Windows 7

Copy contents of your Windows 7 SP1 DVD to C:\Seven

Download the IE9 64 bit installer in exe format

Rename the downloaded file to I9.exe

Paste this code into a textfile and save as integrate.bat. Execute it as administrator.

This script will integrate IE9 into all images of your windows 7 64bit dvd (you need IE9-Windows7-x64-xxx.exe)

Code:

@echo off

cls

mkdir C:\WIM

C:\IE9.exe /x:C:\IE9

erase /F /Q "C:\IE9\IE9_SUPPORT.CAB"

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:4 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:3 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:2 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

dism /Mount-Wim /WimFile:C:\seven\sources\install.wim /index:1 /MountDir:C:\WIM

dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9

dism /Unmount-Wim /MountDir:C:\WIM /commit

erase /F /Q "C:\IE9.exe"

RD /S /Q "C:\WIM"

RD /S /Q "C:\IE9"

pause

exit

__________________________________

Test in virtual machine and Internet Explorer 9 will be there, I hope it will help you

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...