Difference between revisions of "Adobe Air"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(updated with version string for Adobe Air 2.6.0.19120)
(Adobe AIR 2.6.0.19140)
Line 18: Line 18:
 
priority="10">
 
priority="10">
  
<variable name="version" value="2.6.0.19120" />
+
<variable name="version" value="2.6.0.19140" />
  
 
<check type="uninstall" condition="exists" path="Adobe AIR" />
 
<check type="uninstall" condition="exists" path="Adobe AIR" />

Revision as of 20:11, 15 April 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.19140" />

		<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>