Adobe Adobe AIR Runtime
REM Adobe Air v 27 installerAdobeAIRInstaller27.exe -silent -eulaAcceptedREM Disable updateREG ADD HKEY_LOCAL_MACHINE\Software\Policies\Adobe\AIR /v UpdateDisabled /t REG_DWORD /d 1 /f Read More
It was easy enough to extract the MSI and source files from the ‘AdobeAIRInstaller.exe’ but then the MSI would only run from the extracted ‘Adobe AIR Installer.exe’ (note the spaces in … Read More
I just wanted to update this forum, Next create the Component. Select the Component table and add a row:Component: AcceptEulaComponentID: (Use a GUID generator. Be sure to include curly braces… Read More
Silent uninstallation You can silently uninstall an AIR application using the ARH utility. While ARH is the recommended method, you can also use the following methods: On Mac OS, userm -rf… Read More
Generally, the AIR Installer presents its own user interface while installing the runtime and the AIR application. The silent installation feature lets you install an application without pres… Read More
The following command line can be used (the variable %~dp0 used for souce directory): "%~dp0AdobeAIRInstaller.exe" -silent -eulaAccepted The following command line can be used to disable auto… Read More
Adobe AIR - Version 3.2 (3.2.0.2070) Download: http://get.adobe.com/air/ To determine which Version is installed on your machine 32bit - C:\Program Files\Common Files\Adobe AIR\Versions\1… Read More
For AIR 3.1.0.4880 I used the following to uninstall... Full Command Line: C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe -arp:uninstall Read More
Here are the steps I followed to create my Adobe AIR 3.1.0.4880 package. Begin by downloading the installer from the Adobe web site. You'll need to apply for a redistribution license to receiv… Read More
The latest Adobe AIR Runtime appears to deploy correctly via Group Policy without having to make any modifications to the MSI. To prevent the EULA from being displayed the first time an Adobe … Read More
To run the Adobe AIR installer silently, start the Adobe AIR installer with the following command-line options: -silent {-eulaAccepted -pingbackAllowed ( -location <loc> ) -desktopShortcut -pr… Read More
To run the Adobe AIR installer silently, start the Adobe AIR installer with the following command-line options: -silent {-eulaAccepted -pingbackAllowed ( -location <loc> ) -desktopShortcut -pr… Read More
MSI deployment same as for 1.0 with the following changes required: 1) eulaAccepted file must contain the number 2. 2) The property SHAREDADDINFOLDER must be dropped. This will prevent the err… Read More
Just wanted to add to the nuri's post above that for Adobe AIR v2.0.2 the UpdateDisabled file should stay empty as it was, but the EulaAccepted file must contain "2" as the only character. Read More
Here's the vbscript, updated for Windows 7 'Disable error messages On Error Resume Next 'Declare global variables Dim objFSO : Dim objFile 'Instantiate objects Set objFSO = CreateObject("Sc… Read More
Apr 2010 - SILENT uninstall Adobe Air: msiexec /x {A2BCA9F1-566C-4805-97D1-7FDC93386723} /qa Another (unproven) method: AdobeAIRInstaller.exe -uninstall ..where AdobeAIRInstaller.exe is the … Read More
For Adobe Air 1.5.8900. For disable update : you must create a reg KEY like Adobe say it : Preventing automatic updates to Adobe AIR: On Windows, add a DWORD value named UpdateDisabled to the … Read More
1.5 supports Eula Acceptance from the command line: AdobeAIRInstaller.exe -silent -eulaAccepted I've also found that you have to remove old versions before installing the new one. Keep your ol… Read More
To allow users (I have only tested on Power Users at the moment) to install Air Apps I found that editing "C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi" with ORCA… Read More
Here's a VBScript I'm using to create the eulaAccepted and updateDisabled files for all user profiles on the machine: On Error Resume Next Dim FSO : Set FSO = CreateObject("Scripting.Filesyst… Read More
Additional info for the above posted by nuri. The 2 files are created by the adobe air settings manager app when you disable auto updates. Adobe are strange bunch. they do not provide an ap… Read More