How do you deploy Internet Explorer 11 via KACE K1000?
Answers (2)
RegistryValueLessThan(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer,svcVersion,11)
go download ie 11 and attach it to that
https://www.microsoft.com/en-us/download/internet-explorer-11-for-windows-7-details.aspx
create a MI using that CIR and you are good to go.
also see
http://www.itninja.com/blog/view/how-to-package-internet-explorer-11-x64-for-windows-7-x64
Comments:
-
Thanks, I will give that a shot and let everyone know. - neyoung671 9 years ago
I used another way:
FileVersionGreaterThan(C:\Program Files\Internet Explorer\iexplore.exe,11.0.0.0)
For the Managed installation, you have a number of pre requisites that you have to deploy at the same time.
Using a batch file for the MI:
REM --- Installing pre requisites ---
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2729094-v2-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2731771-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2533623-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2670838-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2786081-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2834140-v2-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2639308-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2888049-x64.cab /quiet /norestart
c:\windows\sysnative\dism.exe /online /add-package /packagepath:Windows6.1-KB2882822-x64.cab /quiet /norestart
REM --- Installing IE 11 Main Application ---
c:\windows\sysnative\dism.exe /online /add-package /packagepath:IE-Win7.cab /quiet /norestart
REM --- Installing cumulative security update ---
c:\windows\sysnative\dism.exe /online /add-package /packagepath:IE11-Windows6.1-KB3100773-x64.cab /quiet /norestart