Changes

Adobe Air

1,592 bytes added, 13:41, 24 May 2012
Disable Automatic Updates / Deploy AIR applications
Silent installer for Adobe AirAIR.
== Download ==
 Adobe Air 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 3.2 ==
 
<source lang="xml">
<packages>
</packages>
</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:Adobe software]]
Anonymous user