(imported topic written by mdb2691)
I have recently came across the need to install Adobe air applications using BigFix.
I have figured the complete process out for Windows, but still working on the MAC action script.
First thing you need to do is apply for a Redistribution License from Adobe.
(http://www.adobe.com/products/air/runtime_distribution1.html)
Once Approved (Takes maybe 30 min) you will be emailed a link to download the adobe air installer files.
The installer files are necessary to silently install Adobe AIR apps.
Here is the Action Script for silently installing the Yammer Adobe AIR app.
Note: I renamed the AIR APP INSTALLATION file to airappinstaller, and created a folder called yammer which included the airappinstaller and the Yammer.air app. I then used the Windows Software deployment wizard to upload the folder.
download URL Of Folder Containing The AIR APP INSTALLER and the AIR APP to install/yammer.tmp
continue if {(size of it = 1825990 AND sha1 of it = “3c2b4bb5ce675cb5b123955b96ac6aeecb2032d0”) of file “yammer.tmp” of folder “__Download”}
extract yammer.tmp
copy “__Download\airappinstaller.exe” “C:\airappinstaller.exe”
copy “__Download\Yammer.air” “C:\Yammer.air”
wait “C:\airappinstaller.exe” -silent -eulaAccepted “C:\Yammer.air”
delete “C:\airappinstaller.exe”
delete “C:\Yammer.air”
The Adobe AIR Installer requires the FULL path to execute the installation which is the purpose of the copy.
*Does anyone know of a way to download to a different location than the defualt “__Download”???
The MAC command line is as follows:
/macairappinstaller.app/Contents/MacOS/Adobe\ AIR\ Installer -silent -eulaAccepted /yammer/Yammer.air
The first argument is the path to the Adobe AIR app installer. “-silent” and “eulaAccepted” are the options for the installer to eliminate and user interface. and the last argument is the path to the AIR Application to be installed.
Note: The paths above have been shortened and are not the full path as required.
I haven’t been able to test the mac with BigFix yet as the Wizard is having an issue uploading the folder with the ADOBE AIR Installer application in it.
Once I get the folder uploaded I will be able to write the actionscript to run the commands above. Once tested successfully I will include an if statement to check the Operating system and carry out the appropriate scripts accordingly. I will also script the relevance to check for computers that have the Yammer app already installed and run the script to update the application when needed. (Monthly)
If anyone has any suggestions or experience with Adobe AIR applications please comment.