MSU Version Of Internet Explorer 9?
#1
Posted 14 March 2011 - 10:57 PM
I realize that there are links to download the exe version (IE9-Windows7-x64-enu.exe). Well, with the msu version, it is easier for me to directly integrate it via RT 7 Lite or DISM, to a Windows 7 SP1 image.
Thank you very much for your help.
#2
Posted 14 March 2011 - 11:38 PM
#3
Posted 15 March 2011 - 12:58 AM
Thank you so much.
If you do not mind, could you tell me how you obtained the direct link? Thanks.
This post has been edited by alvinkhorfire: 15 March 2011 - 01:05 AM
#4
Posted 15 March 2011 - 12:59 AM
This post has been edited by ricktendo64: 15 March 2011 - 01:00 AM
#6
Posted 15 March 2011 - 06:29 AM
#7
Posted 15 March 2011 - 08:05 AM
can you please provide the links for spanish versions x86-x64? or that msu is multi
Thanks
#8
Posted 15 March 2011 - 10:16 AM
http://www.microsoft...9e-1671b6a64495
This post has been edited by MagicAndre1981: 15 March 2011 - 11:39 AM
#9
Posted 15 March 2011 - 10:19 AM
Edit: did not notice MagicAndre's links, use those
This post has been edited by ricktendo64: 15 March 2011 - 10:21 AM
#10
Posted 15 March 2011 - 11:39 AM
http://www.microsoft...be-8bedef8c2fba
You can also find some answers here:
http://www.msfn.org/...-windows-7-dvd/
*Edit: for Spanish language download the MUI language you need to add with IE9-win7.msu (language neutral):
Example Windows6.1-KB982861-x86.xml inside IE9-win7.msu
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing>
<package action="install">
<assemblyIdentity buildType="release" language="neutral" name="Microsoft-Windows-InternetExplorer-Package-TopLevel" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" version="9.4.8112.16421"/>
<source location="%configsetroot%\Windows6.1-KB982861-x86.CAB" />
</package>
</servicing>
</unattend>
IE9-Windows6.1-LanguagePack-x64-esn.msu
IE9-Windows6.1-LanguagePack-x86-esn.msu
Same link given by MagicAndre1981.
Windows Internet Explorer 9 Language Packs for Windows 7 and Windows Server 2008 R2
*Edit: Download link updated
This post has been edited by myselfidem: 29 June 2012 - 12:32 PM
#11
Posted 15 March 2011 - 06:19 PM
MagicAndre1981, on 15 March 2011 - 06:29 AM, said:
I understand that. However, the end result is a cab file. The current version of RT 7 Lite cannot integrate cab file. That is why I prefer the MSU version over both full exe and cab version.
Anyway, thanks for your suggestion, MagicAndre1981.
#12
Posted 15 March 2011 - 06:46 PM
myselfidem, on 15 March 2011 - 11:39 AM, said:
http://www.microsoft...be-8bedef8c2fba
You can also find some answers here:
http://www.msfn.org/...-windows-7-dvd/
*Edit: for Spanish language download the MUI language you need to add with IE9-win7.msu (language neutral):
Example Windows6.1-KB982861-x86.xml inside IE9-win7.msu
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<servicing>
<package action="install">
<assemblyIdentity buildType="release" language="neutral" name="Microsoft-Windows-InternetExplorer-Package-TopLevel" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" version="9.4.8112.16421"/>
<source location="%configsetroot%\Windows6.1-KB982861-x86.CAB" />
</package>
</servicing>
</unattend>
IE9-Windows6.1-LanguagePack-x64-esn.msu
IE9-Windows6.1-LanguagePack-x86-esn.msu
Same link given by MagicAndre1981.
Windows Internet Explorer 9 Language Packs for Windows 7 and Windows Server 2008 R2
Hi, I want you to explain better, how to do that with a program? I tried to integrate the IE9.MSU and spanish MUI with rt7lite like a update, but the resulting language is English not Spanish.
Do you mean that extracting the IE9-win7.msu and modify. xlm found inside maybe working? but my question is: How do I get the .xlm file?
thank you and excuse my English.
This post has been edited by jazh23: 15 March 2011 - 07:04 PM
#13
Posted 15 March 2011 - 08:48 PM
You dont have to do anything special for it to be set to Spanish, it should check what OS your lang is set to and use that language for IE9...try reinstalling the LP and reboot
@alvinkhorfire, check the second post for direct links to MSU's
This post has been edited by ricktendo64: 15 March 2011 - 08:50 PM
#14
Posted 16 March 2011 - 03:02 AM
jazh23, on 15 March 2011 - 06:46 PM, said:
Do you mean that extracting the IE9-win7.msu and modify. xlm found inside maybe working? but my question is: How do I get the .xlm file?
thank you and excuse my English.
After testing I see that we can't integrate the MUI language with the msu file (Error 50, unattend file not found)!
1) First, It's needed to extract the files inside MUI language file:
Example with french language :
C:\IE9-Windows6.1-LanguagePack-x86-fra.msu /extract:C:\IE9
Use a batch to integrate the files with DISM
Integrate first IE9-win7.msu
and after the file Windows6.1-KB982861-x86.cab (extracted from IE9-Windows6.1-LanguagePack-x86-fra.msu)
Adapt to your needs (paths and x86 or x64 versions and index):
IE9.cmd
@echo off Color 0A echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /Wimfile:"C:\Se7en_SP1\sources\install.wim" /index:1 /MountDir:"C:\work" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE9\IE9-win7.msu" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE9\Windows6.1-KB982861-x86.cab" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\work" /Commit pause to see if errors
IE9 integration Images
IE9 installed Image
Voilà!
The integration will be successful
This post has been edited by myselfidem: 16 March 2011 - 06:01 AM
#15
Posted 16 March 2011 - 09:20 AM
myselfidem, on 16 March 2011 - 03:02 AM, said:
jazh23, on 15 March 2011 - 06:46 PM, said:
Do you mean that extracting the IE9-win7.msu and modify. xlm found inside maybe working? but my question is: How do I get the .xlm file?
thank you and excuse my English.
After testing I see that we can't integrate the MUI language with the msu file (Error 50, unattend file not found)!
1) First, It's needed to extract the files inside MUI language file:
Example with french language :
C:\IE9-Windows6.1-LanguagePack-x86-fra.msu /extract:C:\IE9
Use a batch to integrate the files with DISM
Integrate first IE9-win7.msu
and after the file Windows6.1-KB982861-x86.cab (extracted from IE9-Windows6.1-LanguagePack-x86-fra.msu)
Adapt to your needs (paths and x86 or x64 versions and index):
IE9.cmd
@echo off Color 0A echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /Wimfile:"C:\Se7en_SP1\sources\install.wim" /index:1 /MountDir:"C:\work" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE9\IE9-win7.msu" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE9\Windows6.1-KB982861-x86.cab" timeout /t 3 "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\work" /Commit pause to see if errors
IE9 integration Images
IE9 installed Image
Voilą!
The integration will be successful
Thanks but it's too advanced for me, I could only extract the file Windows6.1-KB982861-x64, but I can't use the command DISM and neither program batch .
I'll wait to microsoft release a IE9.MSU in Spanish to integrate with rt7lite, thanks again...
#16
Posted 16 March 2011 - 09:24 AM
You can install WAIK for Windows 7 and use the batch file given above, and after you can use rt7lite!
But I think the next release will be able to integrate IE9!
Select your language for WAIK:
http://www.microsoft...&displayLang=fr
IE9 standalone package for Windows 7 already exists for your language, but it's an exe file:
http://windows.micro...dwide-languages
*Edit:
1) Download the IE9-win7.msu at the link given by ricktendo64 (second post) and your specific LanguagePack inside a folder created first, like i.e (for example) : C:\IE9
Windows Internet Explorer 9 Language Packs for Windows 7 and Windows Server 2008 R2
2) Create a working temp folder (to Mount and Unmount /Commit the image you choose), like: C:\work
3) Extract the files inside C:\IE9\IE9-Windows6.1-LanguagePack-x64-esn.msu with
Start | Run and write:
C:\IE9\IE9-Windows6.1-LanguagePack-x64-esn.msu /extract:C:\IE9
You will see the languagepack you need for your OS version: C:\IE9\Windows6.1-KB982861-x64.cab
4) Change the path to your Windows 7 folder inside the batch (my example: C:\Se7en_SP1\sources\install.wim)
and set the index number of your image you want customize (index 4 for Windows 7 x64 Ultimate)
Once done, just use your new batch file!
I hope that can help you!
*Edit: The download link changed for language packs. Download links updated!
This post has been edited by myselfidem: 29 June 2012 - 02:41 PM
#17
Posted 16 March 2011 - 12:17 PM
myselfidem, on 16 March 2011 - 09:24 AM, said:
You can install WAIK for Windows 7 and use the batch file given above, and after you can use rt7lite!
But I think the next release will be able to integrate IE9!
Select your language for WAIK:
http://www.microsoft...&displayLang=fr
IE9 standalone package for Windows 7 already exists for your language, but it's an exe file:
http://www.microsoft...BE-8BEDEF8C2FBA
*Edit:
1) Download the IE9-win7.msu at the link given by ricktendo64 (second post) and your specific LanguagePack inside a folder created first, like i.e (for example) : C:\IE9
Windows Internet Explorer 9 Language Packs for Windows 7 and Windows Server 2008 R2
2) Create a working temp folder (to Mount and Unmount /Commit the image you choose), like: C:\work
3) Extract the files inside C:\IE9\IE9-Windows6.1-LanguagePack-x64-esn.msu with
Start | Run and write:
C:\IE9\IE9-Windows6.1-LanguagePack-x64-esn.msu /extract:C:\IE9
You will see the languagepack you need for your OS version: C:\IE9\Windows6.1-KB982861-x64.cab
4) Change the path to your Windows 7 folder inside the batch (my example: C:\Se7en_SP1\sources\install.wim)
and set the index number of your image you want customize (index 4 for Windows 7 x64 Ultimate)
Once done, just use your new batch file!
I hope that can help you!
OK, now if I understand, just one more thing, I'm doing 2 images, one image of Home Premium x86 and other one of Home Premium x64, then ¿what index I must use?
EDITED: I use this command: Dism /Get-WIMInfo /WIMFile:D:\Win7\Sources\Install.wim and the index I must use is the number 3.
This post has been edited by jazh23: 16 March 2011 - 12:53 PM
#18
Posted 16 March 2011 - 12:52 PM
For Home Premium x86 the index number is "3" (5 images availables inside install.wim)
You can also use imagex.exe to know that!
At first it's needed to install WAIK for Windows 7, and launch the command for deploiement tools as administrator:
writre:
imagex /info <path to your install.wim>
Example: imagex /info C:\Se7en_SP1\sources\install.wim
And you will see the number of images availables inside the window, and the index number for Windows Home Premium Edition.
I have only one image because I've deleted the others inside "install.wim" and the new index for me is only: 1 (to save space on my DVD customized).
Imagex info about the image (click on "Show" button):
New example with Windows 7 x64 with all images:
This post has been edited by myselfidem: 16 March 2011 - 01:37 PM
#19
Posted 16 March 2011 - 01:01 PM
dism /get-wiminfo /wimfile:<path_to_wim>
This post has been edited by ricktendo64: 16 March 2011 - 01:01 PM
#20
Posted 16 March 2011 - 02:06 PM
Now I wanna erase the others versions of windows that I don´t go to use, any help with this?
This post has been edited by jazh23: 16 March 2011 - 02:07 PM



Help

Back to top










