Difference between revisions of "Windows Installer"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (add cat)
Line 1: Line 1:
 
Some installers (i.e. Adobe Reader or MS Visio 2007) will require a recent version of the Windows Installer ([http://www.microsoft.com/downloads/details.aspx?familyid=889482FC-5F56-4A38-B838-DE776FD4138C&displaylang=en download]).
 
Some installers (i.e. Adobe Reader or MS Visio 2007) will require a recent version of the Windows Installer ([http://www.microsoft.com/downloads/details.aspx?familyid=889482FC-5F56-4A38-B838-DE776FD4138C&displaylang=en download]).
 +
 +
 +
=Windows Installer 3.1=
  
 
Silent installation package below:
 
Silent installation package below:
Line 26: Line 29:
 
</source>
 
</source>
  
 +
=Windows Installer 4.5=
 +
 +
There is a 4.5 version for Vista, XP and Server 2003 available for download in [http://www.microsoft.com/download/en/details.aspx?id=8483 http://www.microsoft.com/download/en/details.aspx?id=8483]
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]
 
[[Category:MSI]]
 
[[Category:MSI]]

Revision as of 16:44, 12 April 2012

Some installers (i.e. Adobe Reader or MS Visio 2007) will require a recent version of the Windows Installer (download).


Windows Installer 3.1

Silent installation package below:

<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
  id="windows_installer_3"
  name="Windows Installer 3.1V2"
  revision="1"
  reboot="true"
  priority="20">
  <check type="logical" condition="or">
    <check type="uninstall" condition="exists" path="Windows Installer 3.1 (KB893803)" />
    <check type="uninstall" condition="exists" path="Windows XP Service Pack 3" />
  </check>
  <install cmd='"%SOFTWARE%\msi\WindowsInstaller-KB893803-v2-x86.exe" /quiet /norestart' >
    <exit code="194" reboot="true" />
    <exit code="1603" />
    <exit code="3010" reboot="true" />
  </install>
  <remove cmd='"%WINDIR%\$MSI31Uninstall_KB893803v2$\spuninst\spuninst.exe" /quiet /norestart' />
</package>
</packages>

Windows Installer 4.5

There is a 4.5 version for Vista, XP and Server 2003 available for download in http://www.microsoft.com/download/en/details.aspx?id=8483