Difference between revisions of "Adobe Air"
From WPKG | Open Source Software Deployment and Distribution
m (Updated package xml for Adobe Air 3.1) |
m (Forgot to include <packages> and </packages>, nice to keep things straight) |
||
Line 9: | Line 9: | ||
<source lang="xml"> | <source lang="xml"> | ||
+ | <packages> | ||
<package id="adobeair" | <package id="adobeair" | ||
name="Adobe AIR" | name="Adobe AIR" | ||
Line 28: | Line 29: | ||
</package> | </package> | ||
+ | </packages> | ||
</source> | </source> | ||
[[category:Silent Installers]] | [[category:Silent Installers]] | ||
[[Category:Adobe software]] | [[Category:Adobe software]] |
Revision as of 06:13, 21 February 2012
Silent installer for Adobe Air.
Download
Adobe Air is available from Adobe
Adobe AIR 3.1
All versions of Adobe AIR (1.0 through 3.1) check the same DLL file for the version number. Just change the value with the version you are installing.
<packages>
<package id="adobeair"
name="Adobe AIR"
revision="%version%"
priority="10">
<variable name="version" value="3.1.0.4880" />
<check type="uninstall" condition="exists" path="Adobe AIR" />
<check type='logical' condition='or'>
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="%version%" />
<check type="file" condition="versiongreaterorequal" path="%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR.dll" value="%version%" />
</check>
<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>