Difference between revisions of "Adobe Air"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Forgot to include <packages> and </packages>, nice to keep things straight)
(Adobe AIR 3.2)
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 3.1 ==
+
== Adobe AIR 3.2 ==
 
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.
 
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.
  
Line 14: Line 14:
 
   revision="%version%"
 
   revision="%version%"
 
   priority="10">
 
   priority="10">
   <variable name="version" value="3.1.0.4880" />
+
   <variable name="version" value="3.2.0.2070" />
 
   <check type="uninstall" condition="exists" path="Adobe AIR" />
 
   <check type="uninstall" condition="exists" path="Adobe AIR" />
 
   <check type='logical' condition='or'>
 
   <check type='logical' condition='or'>

Revision as of 12:13, 29 March 2012

Silent installer for Adobe Air.

Download

Adobe Air is available from Adobe

Adobe AIR 3.2

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.2.0.2070" />
  <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>