How integrate IE9 in Windows 7 sp1 installation DVD

Discussion in 'Windows 7' started by antpelliccia, Mar 16, 2011.

  1. antpelliccia

    antpelliccia MDL Novice

    Mar 9, 2008
    49
    0
    0
    Please i would know how integrate Internet Explorer 9 in Windows 7 installation DVD.
    Thank you in advance
     
  2. l2p2c2

    l2p2c2 MDL Member

    Apr 23, 2010
    204
    225
    10
    #2 l2p2c2, Mar 16, 2011
    Last edited by a moderator: Apr 20, 2017
  3. flasher33

    flasher33 MDL Novice

    Nov 24, 2009
    47
    0
    0
    ok but if I have e.g. windows 7 ultimate 46X
    which ver of ie9 should I integrate ie9 x64 or x32?
    I am asking because by default I get both on my system?
     
  4. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,483
    1,502
    150
    Theres no 46X but x64 (amd64) so of course its x64 then.
     
  5. flasher33

    flasher33 MDL Novice

    Nov 24, 2009
    47
    0
    0
    sorry for the misprint.
    so I will intigrade the X64 version.
    but still I was wondering if the defulat IE that comes with windows 7 (fresh copy) is X32 or X64?
     
  6. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,483
    1,502
    150
    Both if you have 64bit (x64) windows, but default/standard I say is 32bit..or?
     
  7. akf

    akf MDL Senior Member

    Aug 17, 2010
    345
    152
    10
    flasher33

    Integrate the 64 bit version of IE 9 to your Windows 7 image. Upon installation of Windows, both 32-bit and 64-bit IE are IE 9. You are free to use either one, although 32 bit IE 9 is recommended as it is faster than 64 bit IE 9.
     
  8. tcntad

    tcntad MDL Guru

    Oct 26, 2009
    4,483
    1,502
    150
    You've done something wrong, open the dism log and see if you can find the same error there.

    But you cant use those commands above, you have to unpack IE9 or use the direct download to msu package. Follow l2p2c2 guide, it will work im sure of.
     
  9. ricktendo64

    ricktendo64 MDL Expert

    Apr 20, 2008
    1,397
    2,024
    60
    Check my sig out, you will see some vids on using waik to integrate drivers and updates
     
  10. l2p2c2

    l2p2c2 MDL Member

    Apr 23, 2010
    204
    225
    10
    #15 l2p2c2, Mar 17, 2011
    Last edited by a moderator: Apr 20, 2017
    @mzakho

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

    Code:
    @echo off
    cls
    dism /Mount-Wim /WimFile:C:\DVD\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:\DVD\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:\DVD\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:\DVD\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:\DVD\sources\install.wim /index:1 /MountDir:C:\WIM
    dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9
    dism /Unmount-Wim /MountDir:C:\WIM /commit
    pause
    exit
    

    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
    dism /Mount-Wim /WimFile:C:\DVD\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:\DVD\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:\DVD\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:\DVD\sources\install.wim /index:1 /MountDir:C:\WIM
    dism /Image:C:\WIM /Add-Package /PackagePath:C:\IE9
    dism /Unmount-Wim /MountDir:C:\WIM /commit
    pause
    exit
    

    First thing you have to do is rename IE9-Windows7-xxx-xxx.exe to IE9.exe
    Then execute this command: "IE9.exe /x:C:\IE9" in a command box. (When done you will find 3 *.cab files in the C:\IE9 directory)
    Then proceed with the batch file !!
    (and don't forget to Expand your Windows 7 SP1 DVD to C:\DVD AND create a directory called "WIM" on C:\)
     
  11. l2p2c2

    l2p2c2 MDL Member

    Apr 23, 2010
    204
    225
    10
    Copy your IE9.exe to C:\
    open your command box and type: C:\IE9.exe /x:C:\IE9 (no quotes)
    see if this works for you
     
  12. ambidav

    ambidav MDL Guru

    May 14, 2008
    2,502
    5,675
    90
    #18 ambidav, Mar 17, 2011
    Last edited by a moderator: Apr 20, 2017
    you need to open command prompt and cd to directory e.g

    Code:
    CD C:\ie9
    Then
    Code:
    IE9.exe /x:C:\IE9
     
  13. l2p2c2

    l2p2c2 MDL Member

    Apr 23, 2010
    204
    225
    10
    #19 l2p2c2, Mar 17, 2011
    Last edited by a moderator: Apr 20, 2017
  14. mzakho

    mzakho MDL Member

    Nov 22, 2008
    166
    73
    10
    100% work

    new folder = ie9 have 3 files insaid in dir c:\


    :cap: