Difference between revisions of "Adobe Air"
From WPKG | Open Source Software Deployment and Distribution
(Updated to version 2.5.1 and removed version 1.5 since the only difference between packages is the version number.) |
(updated with version string for Adobe Air 2.6.0.19120) |
||
Line 5: | Line 5: | ||
Adobe Air is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe] | Adobe Air is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe] | ||
− | == Adobe AIR 2. | + | == Adobe AIR 2.6 == |
− | All versions of Adobe AIR (1.0 through 2. | + | All versions of Adobe AIR (1.0 through 2.6) check the same DLL file for the version number. Just change the value with the version you are installing. |
<source lang="xml"> | <source lang="xml"> | ||
Line 18: | Line 18: | ||
priority="10"> | priority="10"> | ||
− | <variable name="version" value="2. | + | <variable name="version" value="2.6.0.19120" /> |
<check type="uninstall" condition="exists" path="Adobe AIR" /> | <check type="uninstall" condition="exists" path="Adobe AIR" /> |
Revision as of 23:14, 23 March 2011
Silent installer for Adobe Air.
Download
Adobe Air is available from Adobe
Adobe AIR 2.6
All versions of Adobe AIR (1.0 through 2.6) check the same DLL file for the version number. Just change the value with the version you are installing.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="adobeair"
name="Adobe AIR"
revision="%version%"
priority="10">
<variable name="version" value="2.6.0.19120" />
<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 -silent' />
<remove cmd='%SOFTWARE%\adobeair\AdobeAIRInstaller.exe -uninstall' />
</package>
</packages>