Adobe AIR is a runtime environment developed by Adobe Systems for building desktop and mobile applications. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Adobe AIR 33 from the command line using an EXE installer.
How to Install Adobe AIR 33 Silently
Adobe AIR 33 Silent Install (EXE)
- Navigate to: https://airsdk.harman.com/assets/downloads/AdobeAIR.exe
- Download the AdobeAIR.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: AdobeAIR.exe -silent -eulaAccepted
- Press Enter
After a few moments you should see the Adobe AIR Installation Directory and Programs and Features entry in the Control Panel. This application does not create a Desktop Shortcut or Start Menu entry.
Software Title: | Adobe AIR |
Vendor: | HARMAN International |
Version: | 33.1.1.821 |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch: | AdobeAIR.exe -silent -eulaAccepted |
Silent Uninstall Switch: | MsiExec.exe /x {CA620891-FF3F-4A8F-971C-A27AE3505C37} /qn |
Download Link: | Adobe AIR Download |
PowerShell Script: | Adobe AIR | PowerShell Script |
Detection Script: | Adobe AIR | Custom Detection Script |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Preventing Installation of AIR Applications
Adding the following registry key will prevent the installation of AIR applications.
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following command:
REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v AppInstallDisabled /t REG_DWORD /d 1 /f |
Preventing Installation of Untrusted AIR Applications
Adding the following registry key will prevent the installation of untrusted AIR applications.
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following command:
REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UntrustedAppInstallDisabled /t REG_DWORD /d 1 /f |
Preventing Automatic Updates to Adobe AIR
Adding the following registry key will prevent automatic updates to Adobe AIR.
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following command:
REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v UpdateDisabled /t REG_DWORD /d 1 /f |
Adobe AIR Installation Log File
The Adobe AIR installer automatically generates a log file during installation to assist with troubleshooting should any problems arise. The log file will be located in the following directory of the user account from which the installer was run:
C:\Users\<User Name>\AppData\Local\Adobe\AIR\logs\Install.log
Adobe AIR Runtime Installer Exit Codes
Exit Code: | Description |
0 | Successful install |
1 | Successful, but restart required for completion |
2 | Usage error (incorrect arguments) |
3 | Runtime not found |
4 | Loading runtime failed |
5 | Unknown error |
6 | Installation canceled |
7 | Installation failed |
8 | Installation failed; update already in progress |
9 | Installation failed; application already installed |
How to Uninstall Adobe AIR 33 Silently
Check out the following posts for a scripted solution:
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter one of the following commands:
Version | Adobe AIR 33 Silent Uninstall String |
33.1.1.821 | MsiExec.exe /x {CA620891-FF3F-4A8F-971C-A27AE3505C37} /qn |
33.1.1.743 | MsiExec.exe /x {58975D61-1C4B-4385-ADB0-4A8E3EC250A4} /qn |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.