IE9 offline installer FULL PACKAGE AND UPDATES

Soldato
Joined
17 Jul 2008
Posts
7,439
I have the offline installer however it requires an internet connection to download some updates to install,

did some googling its seems a lot of people have the same issue but no real answers

Anyone managed to make IE9 install offline and what updates does it want?

thank for looking!
 
Out of interest, in what situation would you need to install an internet browser without access to the internet?
 
Possibly (in my buisiness's case) pre-building machines which we then want to sysprep and make a deployment image out of.

I have found an installer which i personally use, but not packaged with the latest updates.
 
Out of interest, in what situation would you need to install an internet browser without access to the internet?

Fix lots of pc's I was a scripted install with no variables in the equation, I have it installing all but about 8 updates from USB. I want to press a button walk away come back And it's all done and updated.
 
The two files you need are:

IE9-Windows6.1-KB982861-x64.msu (IE 9.0.9 installer)
IE9-Windows6.1-KB2722913-x64.msu (Cumulative Update)

Combine it with a batch file such as this:
Code:
@echo off
for /f %%A in ('dir /b *.msu') do (
echo == Installing Updates == "%%A" ...
timeout /t 3
C:\Windows\system32\wusa.exe %%A /quiet /norestart
)
echo.
echo ########################################
echo.
echo == Updates installed ==
echo.
echo == Press any key to restart ==&pause>nul
echo.
shutdown.exe /r /t 0
 
Back
Top Bottom