Difference between revisions of "Adobe Air"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(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 ==
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.
 
  
 
<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="exists" path="Adobe AIR" />
+
 
  <check type='logical' condition='or'>
+
   <check type="uninstall" condition="versionequalto" path="Adobe AIR" value="%version%" />
    <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' />
 
   <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>