Adobe AIR Runtime 1.5.1
Adobe® AIR® is a cross-operating system runtime that lets developers combine HTML, Ajax, Adobe Flash®, and Adobe Flex® technologies to deploy rich Internet applications (RIAs) on the desktop. AIR allows developers to use familiar tools such as Adobe Dreamweaver® CS3, Flex Builder™ 3, Flash CS3 Professional, or any text editor to build their applications and easily deliver a single application installer that works across operating systems. Version 1.5.1 is Adobe's current release and can be deployed using Windows Installer technology.
These are the steps to deploy:
- Download the 'Adobe AIR 1.5.1 Installer' from Adobe's website.
- The 'AdobeAIRInstaller.exe' is just a compressed file packaged as a bootstrapper, which can be extracted by e.g. using WinRAR. I've tried different WinZIP versions, but WinZIP doesn't seem to recognize how this file was compressed. Inside the 'AdobeAIRInstaller.exe' you will find the 'setup.msi' MSI package:

- In order to configure AIR, Adobe supports several policy related registry keys under HKLM\Software\Policies\Adobe\AIR. These keys are discussed in details on Adobe's website in the 'Adobe AIR 1.5 Administrator’s Guide' in a chapter called 'Adobe AIR Configuration':
- AppInstallDisabled (Preventing installation of AIR applications)
- UntrustedAppInstallDisabled (Preventing installation of untrusted AIR applications)
- UpdateDisabled (Preventing automatic updates to Adobe AIR) - When you create a Transform file (MST) for this MSI one of the suggested options is to disable the AutoUpdate feature in order to be able to manage deployment of new versions of the Adobe AIR Runtime:

- When you install this MSI, optionally with a Transform file with one or more settings as suggested above, the .air extension is associated with the 'Adobe AIR Application Installer.exe':

- You can now handle the deployment of popular AIR applications like TweetDeck or Twhirl by applying for a license to distribute Adobe AIR Runtime. If you do so you will get an e-mail with information, documentation and several links to e.g.:
- the Adobe AIR installer file
- Adobe AIR documentation
- the Adobe AIR IT Administration Guide
- the Adobe AIR for IT Administrators site
I therefore highly recommend you apply for a license. Strangely enough it's not allowed to share the links, while the the main page is unrestricted and open for anonymous users. The 'Adobe AIR 1.5 Runtime Redistribution Instructions' document gives you more information about a utility called the 'Adobe AIR Application Installer', Adobe AIR Application Installer.exe, which can be found in 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\'.
This utility can be used to install the actual 'Adobe AIR' applications which have the extension .air. If you download TweetDeck e.g. you end up with a single file called 'TweetDeck_0_26.air'. By using 'Adobe AIR Application Installer.exe' and some switches mentioned in this documentation you're able to silent install the Adobe AIR application itself.
The command line options are:
-silent {-eulaAccepted ( -location <loc> ) -desktopShortcut -programMenu} path
In this case we can use:
'Adobe AIR Application Installer.exe" -silent -eulaAccepted TweetDeck_0_26.air'
to install TweetDeck without a desktop shortcut or:
'Adobe AIR Application Installer.exe" -silent -eulaAccepted - desktopShortcut TweetDeck_0_26.air'
to install TweetDeck with a desktop shortcut. Adobe partly uses an MSI based method for installing AIR applications. That method is based on 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi' to install the actual application.

