Internet Explorer 11
From WPKG | Open Source Software Deployment and Distribution
- Download IE11-Windows6.1-x86-en-us.exe and IE11-Windows6.1-x64-en-us.exe
- List of command line switches for IE11 installer
- Prerequisites for Deploying Internet Explorer 11
---
Use the following XML file for the English version:
<?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>