Difference between revisions of "Adobe Air"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(No need to check the DLLs, the uninstall entry contains the correct version number)
(Disable Automatic Updates / Deploy AIR applications)
Line 1: Line 1:
Silent installer for Adobe Air.
+
Silent installer for Adobe AIR.
  
 
== Download ==
 
== Download ==
 
+
Adobe AIR is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe], but you will need to [http://www.adobe.com/products/air/runtime_distribution1.html apply for a free licencse] to distribute it legally.
Adobe Air is available from [http://www.adobe.com/go/EN_US-H-GET-AIR Adobe]
+
  
 
== Adobe AIR 3.2 ==
 
== Adobe AIR 3.2 ==
 
 
<source lang="xml">
 
<source lang="xml">
 
<packages>
 
<packages>
Line 28: Line 26:
 
</packages>
 
</packages>
 
</source>
 
</source>
 +
 +
== Disable Automatic Update ==
 +
Adobe AIR automatically checks for updates and prompts the user to install them, which needs Administrator privileges.
 +
 +
You can use the [http://airdownload.adobe.com/air/applications/SettingsManager/SettingsManager.air AIR SettingsManager] to change that on a per-user basis or disable this behaviour globally for all users by adding a DWORD value named UpdateDisabled to the <code>HKLM\Software\Policies\Adobe\AIR</code> registry key, and setting this value to 1 (According to [http://help.adobe.com/en_US/air/admin/WS485a42d56cd1964167ea49bd124ef17d52a-7ff5.html Adobe AIR Administrator's Guide]).
 +
 +
This can also be done through WPKG:
 +
<source lang="xml">
 +
  <install cmd='REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UpdateDisabled /d 1 /f /t REG_DWORD' />
 +
 +
  <upgrade cmd='REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UpdateDisabled /d 1 /f /t REG_DWORD' />
 +
</source>
 +
 +
== Deploy Adobe AIR Applications ==
 +
See [http://www.adobe.com/de/devnet/air/articles/distributing_air_in_enterprise.html this blog entry from Adobe] to get a few hints on how to deploy Adobe AIR applications through WPKG.
 +
 +
Basically you can just run <code>Adobe AIR Installer.exe -silent <Application>.air</code> or add the following switches:
 +
 +
;-silent
 +
:required to run without user interaction during installation
 +
 +
;-desktopShortcut
 +
:adds a desktop shortcut for the AIR application
 +
 +
;-programMenu
 +
:adds a Start Menu shortcut for the AIR application
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]
 
[[Category:Adobe software]]
 
[[Category:Adobe software]]

Revision as of 13:41, 24 May 2012

Silent installer for Adobe AIR.

Download

Adobe AIR is available from Adobe, but you will need to apply for a free licencse to distribute it legally.

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>

Disable Automatic Update

Adobe AIR automatically checks for updates and prompts the user to install them, which needs Administrator privileges.

You can use the AIR SettingsManager to change that on a per-user basis or disable this behaviour globally for all users by adding a DWORD value named UpdateDisabled to the HKLM\Software\Policies\Adobe\AIR registry key, and setting this value to 1 (According to Adobe AIR Administrator's Guide).

This can also be done through WPKG:

  <install cmd='REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UpdateDisabled /d 1 /f /t REG_DWORD' />

  <upgrade cmd='REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UpdateDisabled /d 1 /f /t REG_DWORD' />

Deploy Adobe AIR Applications

See this blog entry from Adobe to get a few hints on how to deploy Adobe AIR applications through WPKG.

Basically you can just run Adobe AIR Installer.exe -silent <Application>.air or add the following switches:

-silent
required to run without user interaction during installation
-desktopShortcut
adds a desktop shortcut for the AIR application
-programMenu
adds a Start Menu shortcut for the AIR application