Changes

Jump to: navigation, search

Internet Explorer 11

2,730 bytes added, 14:50, 10 March 2015
Deploy Internet Explorer 11
* Download [http://www.microsoft.com/en-us/download/internet-explorer-11-for-windows-7-details.aspx IE11-Windows6.1-x86-en-us.exe] and [http://www.microsoft.com/en-us/download/internet-explorer-11-for-windows-7-details.aspx IE11-Windows6.1-x64-en-us.exe]
* [https://msdn.microsoft.com/en-us/library/dn321443.aspx List of command line switches for IE11 installer]
* [http://support.microsoft.com/kb/2847882#List%20of%20prerequisite%20updates Prerequisites for Deploying Internet Explorer 11]
** Windows 7 SP1
** Windows 2008 R2 SP1
** Updates [http://support.microsoft.com/kb/2729094 2729094], [http://support.microsoft.com/kb/2731771 2731771], [http://support.microsoft.com/kb/2533623 2533623], [http://support.microsoft.com/kb/2670838 2670838], [http://support.microsoft.com/kb/2786081 2786081], and [http://support.microsoft.com/kb/2834140 2834140]

---

Use the following XML file for the English version:

<source lang="xml">
<?xml version="1.0" encoding="UTF-8"?>

<packages:packages
xmlns:packages="http://www.wpkg.org/packages" xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.wpkg.org/packages ../xsd/packages.xsd" >

<package id="InternetExplorer11"
name="InternetExplorer11"
revision="%PKG_VERSION%"
reboot="false"
priority="2">

<variable name="PKG_NAME" value="InternetExplorer11" />
<variable name="PKG_VERSION" value="11.0.9600.16428" />
<variable name="locale" value="en-US" />
<variable name="PKG_EXE_VERSION" value="11.0.9600.16428" />
<variable name="PKG_DESTINATION" value="%ProgramFiles%\Internet Explorer" architecture="x86"/>
<variable name="PKG_DESTINATION" value="%ProgramFiles(x86)%\Internet Explorer" architecture="x64"/>

<check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\iexplore.exe" value="%PKG_EXE_VERSION%" />

<install cmd="taskkill /F /IM IExplore.exe">
<exit code="0" />
<exit code="-1073741515" />
<exit code="128" />
</install>

<install cmd='"%SOFTWARE%\Internet Explorer 11\IE11-Windows6.1-x86-en-us.exe" /quiet /norestart' architecture="x86">
<exit code='0' />
<exit code='3010' />
<!-- exit codes from https://msdn.microsoft.com/en-us/library/dn321441.aspx -->
</install>

<install cmd='"%SOFTWARE%\Internet Explorer 11\IE11-Windows6.1-x64-en-us.exe" /quiet /norestart' architecture="x64">
<exit code='0' />
<exit code='3010' />
<!-- exit codes from https://msdn.microsoft.com/en-us/library/dn321441.aspx -->
</install>

<upgrade include="install" />

</package>

</packages:packages>
</source>
7
edits

Navigation menu