Difference between revisions of "Windows Installer"
From WPKG | Open Source Software Deployment and Distribution
(New page: Some installers (ie Adobe Reader) will require a recent version of the Windows Installer. ([http://www.microsoft.com/downloads/details.aspx?familyid=889482FC-5F56-4A38-B838-DE776FD4138C&di...) |
m |
||
| Line 15: | Line 15: | ||
</install> | </install> | ||
<upgrade cmd='' /> | <upgrade cmd='' /> | ||
| − | <remove cmd="C:\WINNT\$MSI31Uninstall_KB893803v2$\spuninst\spuninst.exe" /> | + | <remove cmd="C:\WINNT\$MSI31Uninstall_KB893803v2$\spuninst\spuninst.exe /quiet /norestart" /> |
</package> | </package> | ||
</pre> | </pre> | ||
[[Category:Silent Installers]] | [[Category:Silent Installers]] | ||
Revision as of 04:41, 17 December 2007
Some installers (ie Adobe Reader) will require a recent version of the Windows Installer. (download)
<package
id="windows_installer_3"
name="Windows Installer 3.1V2"
revision="1"
reboot="true"
priority="20">
<check type="uninstall" condition="exists" path="Windows Installer 3.1 (KB893803)" />
<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>
<upgrade cmd='' />
<remove cmd="C:\WINNT\$MSI31Uninstall_KB893803v2$\spuninst\spuninst.exe /quiet /norestart" />
</package>