简体   繁体   中英

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...

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

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
)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM