Marcx
Marcx

Reputation: 6836

Create autoinstall flex AIR application

I'm wondering if there is a way to make an installer (.exe or .air) autoinstaller

So when a user double click it, a silent installation is performed, without asking the destination folder, using instead the default one...

Upvotes: 0

Views: 702

Answers (2)

Dennis Jaamann
Dennis Jaamann

Reputation: 3565

Check this Using the ARH utility

Following those instructions, you should be able to cook up a custom auto installer that takes parameters, with support for silent installing the air run-time as well. Keep in mind though that you will need an AIR redistribution license.

Furthermore you could also create a standalone application with the Zinc Application Toolkit.
I have used it before to create an application that could run from an USB, without the need for the user to install the AIR run-time.

Cheers

Upvotes: 1

Sajjad Shirazy
Sajjad Shirazy

Reputation: 1

you can use this cods in a .bat file :

CLS
@ECHO off
IF EXIST "%AppData%\Adobe\AIR\eulaAccepted" (
    START myAirApp.exe    
) ELSE (
    START /W AirInstaller\AdobeAIRInstaller.exe  -silent
    XCOPY "eulaAccepted" "%AppData%\Adobe\AIR\"
    START myAirApp.exe
)

Upvotes: 0

Related Questions