Difference between revisions of "Adobe Air"
From WPKG | Open Source Software Deployment and Distribution
(→Adobe AIR 3.2) |
(No need to check the DLLs, the uninstall entry contains the correct version number) |
||
Line 6: | Line 6: | ||
== Adobe AIR 3.2 == | == Adobe AIR 3.2 == | ||
− | |||
<source lang="xml"> | <source lang="xml"> | ||
Line 14: | Line 13: | ||
revision="%version%" | revision="%version%" | ||
priority="10"> | priority="10"> | ||
+ | |||
<variable name="version" value="3.2.0.2070" /> | <variable name="version" value="3.2.0.2070" /> | ||
− | <check type="uninstall" condition=" | + | |
− | + | <check type="uninstall" condition="versionequalto" path="Adobe AIR" value="%version%" /> | |
− | + | ||
− | + | ||
− | + | ||
<install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' /> | <install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' /> |
Revision as of 13:09, 24 May 2012
Silent installer for Adobe Air.
Download
Adobe Air is available from Adobe
Adobe AIR 3.2
<packages>
<package id="adobeair"
name="Adobe AIR"
revision="%version%"
priority="10">
<variable name="version" value="3.2.0.2070" />
<check type="uninstall" condition="versionequalto" path="Adobe AIR" value="%version%" />
<install cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
<upgrade cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
<upgrade cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -silent' />
<remove cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
</package>
</packages>