IE 11 Installation:
Installprerequisite:
KB2533623
KB2834140
KB2786081
KB2731771
KB2729094
KB2670838
Extract IE EXE into temp folder.
Run MSU with the help of DISM tool.
After the prerequisite we required restart for the installation of IE11-Windows6.1-x86-en-us.exe. Inorder to avoid the restart we are extracting the exe into temp folder and executing the msu using dism tool.
After the installation of prerequisite and MSU.Restart the machine for the proper functionality of the application.
Set up internet explorer prompt - To avoid the prompt add the below key
REG ADD "HKLM\SOFTWARE\Microsoft\Internet Explorer\MAIN" /v DisableFirstRunCustomize /t REG_DWORD /d 1 /f
To suppress automatic update:
REG ADD "HKLM\SOFTWARE\Microsoft\Internet Explorer\MAIN" /v EnableAutoUpgrade /t REG_DWORD /d 0 /f
For x64:
Create CMD file.
MKDIR "C:\temp\IE11"
"%~dps0Windows6.1-KB2533623-x64.msu" /quiet /norestart
"%~dps0Windows6.1-KB2834140-v2-x64.msu" /quiet /norestart
"%~dps0Windows6.1-KB2786081-x64.msu" /quiet /norestart
"%~dps0Windows6.1-KB2731771-x64.msu" /quiet /norestart
"%~dps0Windows6.1-KB2729094-v2-x64.msu" /quiet /norestart
"%~dps0Windows6.1-KB2670838-x64.msu" /quiet /norestart
%~dps0IE11-Windows6.1-x64-en-us.exe /X:%systemdrive%\temp\IE11
%systemroot%\SysNative\dism.exe /Online /Add-Package /PackagePath:%systemdrive%\temp\IE11\IE-Win7.CAB /quiet /norestart
%systemroot%\SysNative\wusa.exe "%systemdrive%\temp\IE11\IE-Spelling-en.MSU" /quiet /norestart
%systemroot%\SysNative\wusa.exe "%systemdrive%\temp\IE11\IE-Hyphenation-en.MSU" /quiet /norestart
REG ADD "HKLM\SOFTWARE\Microsoft\Internet Explorer\MAIN" /v DisableFirstRunCustomize /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Microsoft\Internet Explorer\MAIN" /v EnableAutoUpgrade /t REG_DWORD /d 0 /f
RMDIR C:\temp\IE11 /s /q
For x86:
Create CMD file.
MKDIR "C:\temp\IE11"
"%~dps0Windows6.1-KB2533623-x86.msu" /quiet /norestart
"%~dps0Windows6.1-KB2834140-v2-x86.msu" /quiet /norestart
"%~dps0Windows6.1-KB2786081-x86.msu" /quiet /norestart
"%~dps0Windows6.1-KB2731771-x86.msu" /quiet /norestart
"%~dps0Windows6.1-KB2729094-v2-x86.msu" /quiet /norestart
"%~dps0Windows6.1-KB2670838-x86.msu" /quiet /norestart
%~dps0IE11-Windows6.1-x86-en-us.exe /X:%systemdrive%\temp\IE11
%systemroot%\system32\dism.exe /Online /Add-Package /PackagePath:%systemdrive%\temp\IE11\IE-Win7.CAB /quiet /norestart
%systemroot%\system32\wusa.exe "%systemdrive%\temp\IE11\IE-Spelling-en.MSU" /quiet /norestart
%systemroot%\system32\wusa.exe "%systemdrive%\temp\IE11\IE-Hyphenation-en.MSU" /quiet /norestart
REG ADD "HKLM\SOFTWARE\Microsoft\Internet Explorer\MAIN" /v DisableFirstRunCustomize /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Microsoft\Internet Explorer\MAIN" /v EnableAutoUpgrade /t REG_DWORD /d 0 /f
RMDIR C:\temp\IE11 /s /q