

- #Internet explorer 11 latest version for windows 7 install
- #Internet explorer 11 latest version for windows 7 64 Bit
- #Internet explorer 11 latest version for windows 7 update
- #Internet explorer 11 latest version for windows 7 32 bit
- #Internet explorer 11 latest version for windows 7 Patch
#Internet explorer 11 latest version for windows 7 update
LogFile.WriteLine(Now & " - Installing update KB2731771-圆4.
#Internet explorer 11 latest version for windows 7 Patch
'install 64-bit patch for KB2731771 (local/UTC time conversion) Return = objShell.Run("wusa.exe " & strScriptPath & "\Windows6.1-KB2533623-圆4.msu /quiet /norestart /log",0,True) LogFile.WriteLine(Now & " - Installing update KB2533623-圆4. 'install 64-bit patch for KB2533623 (Insecure library fix) Return = objShell.Run("dism.exe /online /add-package /packagepath:" & strScriptPath & "\Windows6.1-KB2639308-圆4.cab /quiet /norestart",0,True) Return = objShell.Run("C:\Windows\SysNative\dism.exe /online /add-package /packagepath:" & strScriptPath & "\Windows6.1-KB2639308-圆4.cab /quiet /norestart",0,True) Return = objShell.Run("dism.exe /online /add-package /packagepath:" & strScriptPath & "\Windows6.1-KB2670838-圆4.cab /quiet /norestart",0,True) Return = objShell.Run("C:\Windows\SysNative\dism.exe /online /add-package /packagepath:" & strScriptPath & "\Windows6.1-KB2670838-圆4.cab /quiet /norestart",0,True) LogFile.WriteLine(Now & " - Installing update KB2670838-圆4. 'install 64-bit patch for KB2670838 (graphics and imaging issues fix) Return = objShell.Run("wusa.exe " & strScriptPath & "\Windows6.1-KB2834140-v2-圆4.msu /quiet /norestart",0,True)
#Internet explorer 11 latest version for windows 7 install
LogFile.WriteLine(Now & " - Starts to install prerequisites for Internet Explorer 11 圆4 for Windows 7.
#Internet explorer 11 latest version for windows 7 64 Bit
' VB script to install IE 11 64 bit prerequisites and IE 11ĭim objFSO : Set objFSO = CreateObject("Scripting.FileSystemObject")ĭim objShell : Set objShell = CreateObject("WScript.Shell")ĭim objEnv : Set objEnv = objShell.Environment("Process")ĭim strScriptPath : strScriptPath = objFSO.GetParentFolderName(Wscript.ScriptFullName)ĭim LogFile : Set LogFile = objFSO.OpenTextFile("C:\Logs\Microsoft_Internet_Explorer_11_圆4_Prerequisites.log", 8, True)

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. The final IE11 圆4 installation VB script will be like: You can also choose to reboot computer after package deployed successfully.Ģ Installation log files will be created, the installation is silently.

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

Running IE11 圆4 package through SCCM server. Put all downloaded and extracted prerequisites and VB script in one folder and create the package: Return = objShell.Run("dism.exe /online /add-package /packagepath:" & strScriptPath & "\ Windows6.1-KB2639308-圆4.cab /quiet /norestart",0,True)Īfter KB2882822, we can see spelling and Hypenation from the file SETUPDOWNLOADLIST.txtĪfter 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. Return = objShell.Run("C:\Windows\SysNative\dism.exe /online /add-package /packagepath:" & strScriptPath & "\ Windows6.1-KB2639308-圆4.cab /quiet /norestart",0,True) If objFSO.FolderExists("C:\Windows\SysNative") Then LogFile.WriteLine(Now & " - Installing update KB2639308-圆4. If the prerequisite is *.cab, you need to use dism.exe command line: just replace the KB names and *.cab Return = objShell.Run("wusa.exe " & strScriptPath & "\ Windows6.1-KB2834140-v2-圆4.msu /quiet /norestart",0,True) LogFile.WriteLine(Now & " - Installing update KB2834140-v2-圆4. If the prerequisite is *.msu, you need to use WUSA.exe command line: just replace the KB names and *.msu Run the KBs in the sequence as in the file SETUPDOWNLOADLIST.txt Using the VB script from ITNinja for IE 10. Go to Microsoft, type the KB names listed above and download all the KB for 圆4 Windows 7. The following are prerequisites for installing IE Open SETUPDOWNLOADLIST.txt and go through the contents of this file: There are 7 files in the folder “c:\temp\IE11” which we will need them for packaging Run Command Line as admin, type “ IE11-Windows6.1-圆4-en-us.exe /X:C:\TEMP\IE11” which will extract the IE11 圆4 installer files in the folder “c:\temp\IE11” We don’t need to package it.ĭownload IE11-Windows6.1-圆4-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.Ĭreate a new folder called “ IE11” inside C:\temp folder
#Internet explorer 11 latest version for windows 7 32 bit
If you are going to do IE 11 32 bit for 32 bit Windows 7, please unzip and follow the same steps.ĭownload from Microsoft, try to run it on test Windows 7 圆4, it is not supported with 64 bit Windows 7. Below is the complete steps to create a Internet Explorer 11 圆4 package for 64 bit Windows 7.
