How To Install Ie 11 On Windows 7 64 Bit

Below is the complete steps to create a Internet Explorer 11 x64 package for 64 bit Windows 7.

Download & install the latest offline installer version of Internet Explorer for Windows PC / laptop. It works with Windows 7 (64-bit). Free & Safe Download for Windows PC/laptop – 53.32 MB. Safety (Virus) Test: Tested and is to download and install on your Windows 7 (64-bit) device (PC/laptop/tablet). Hi I had trouble installing updates on my computer after a reformat.Downloaded fix it tool and everything is up to date but when i try an install IE 11 i get message operating system not supported even though i download.IE 11 for win 7 64 bit,auto update fails also Tom:eek.

If you are going to do IE 11 32 bit for 32 bit Windows 7, please unzip IE-11-Windows6.1-x86-en-us.exe and follow the same steps.

Download IE11-Windows6.1-x86-en-us.exe from Microsoft, try to run it on test Windows 7 x64, it is not supported with 64 bit Windows 7. We don’t need to package it.

Download IE11-Windows6.1-x64-en-us.exe from Microsoft, copy and save EXE file in a temp folder of the clean machine which didn’t have IE10 or IE 11 installed because IE 10 and IE 11 share some of prerequisites.

Create a new folder called “IE11” inside C:temp folder

Run Command Line as admin, type “IE11-Windows6.1-x64-en-us.exe /X:C:TEMPIE11” which will extract the IE11 x64 installer files in the folder “c:tempIE11”

There are 7 files in the folder “c:tempIE11” which we will need them for packaging

Open SETUPDOWNLOADLIST.txt and go through the contents of this file:

; The following are prerequisites for installing IE

[Prerequisites]

WIN7_SP1=KB2834140 KB2670838 KB2639308 KB2533623 KB2731771 KB2729094 KB2786081 KB2888049 KB2882822

Go to Microsoft, type the KB names listed above and download all the KB for x64 Windows 7.

Windows

Using the VB script from ITNinja for IE 10.

Run the KBs in the sequence as in the file SETUPDOWNLOADLIST.txt

If the prerequisite is *.msu, you need to use WUSA.exe command line: just replace the KB names and *.msu

How To Install Internet Explorer 11 On Windows 7 Ultimate 64 Bit

'install 64-bit patch for KB2834140-v2-x64

LogFile.WriteLine(Now & ' - Installing update KB2834140-v2-x64 ...')

Return = objShell.Run('wusa.exe ' & strScriptPath & 'Windows6.1-KB2834140-v2-x64.msu /quiet /norestart',0,True)

Results('KB2834140-v2-x64')

If the prerequisite is *.cab, you need to use dism.exe command line: just replace the KB names and *.cab

'install 64-bit patch for KB2639308-x64

LogFile.WriteLine(Now & ' - Installing update KB2639308-x64 ...')

If objFSO.FolderExists('C:WindowsSysNative') Then

Return = objShell.Run('C:WindowsSysNativedism.exe /online /add-package /packagepath:' & strScriptPath & 'Windows6.1-KB2639308-x64.cab /quiet /norestart',0,True)

Else

Return = objShell.Run('dism.exe /online /add-package /packagepath:' & strScriptPath & 'Windows6.1-KB2639308-x64.cab /quiet /norestart',0,True)

End If

Windows

Results('KB2639308-x64')

After KB2882822, we can see spelling and Hypenation from the file SETUPDOWNLOADLIST.txt

After applying all prerequisites in the order, the last file to run in the script will be IE-Win7.cab which is 52378 KM in size. Note: IE-Win7.cab also called Windows6.1-KB2841134-x64.CAB

Put all downloaded and extracted prerequisites and VB script in one folder and create the package:

Ie 11 Win 7 64

Download ie 10 windows 7 x64

Running IE11 x64 package through SCCM server.

The package needs to be run as admin, no reboot, end-user can reboot when it is convenient for them.

You can also choose to reboot computer after package deployed successfully.

2 Installation log files will be created, the installation is silently.

The final IE11 x64 installation VB script will be like:

Install Internet Explorer 11 64 Bit

Note: In the VB script, the log file is created in C:logs folder, if you don't want to use this folder, just change the path to whatever you like.