Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

.air application question

Anyone know if its possible to deploy .air application using Pdq Deploy?

i dont mean adobe air  but i mean custom software with extension .air.

this launch launch adobe air to install it.

Pls tell me its possible.

Regard

Pat.

 

0

Comments

5 comments
Date Votes
  • Hi Patrick,

    Yes you can install a .air application. To do this in PDQ Deploy it is best to use a command step. If you want to use an Install Step then you would need to use a script as your install file (such as a .bat file).

    I created a package that contained two Command Steps. One step has a 32-bit condition and the other a 64-bit. I added the .air file (in this case pandora_2_0_8.air) using the Additional Files dropdown. (see attachment)

    The command to install Pandora on a 64-bit system was: 

    "%CommonProgramFiles(x86)%\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" -silent -location "%ProgramFiles(x86)%" ".\pandora_2_0_8.air"

    and on a 32-bit system:

    "%CommonProgramFiles%\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" -silent -location "%ProgramFiles%" ".\pandora_2_0_8.air"
    0
  • This worked great for me, but the installation didn't create a desktop icon.  Not sure if that was suppressed somehow or could be evoked with a switch.  Do you know where I can find a list of default switches to play with?  Thanks.

    0
  • Hi Hanks,

     

    Here what i use  to install my stuff and ts working

    command line for 32 bits system:

    "C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe"  -silent -eulaAccepted -desktopShortcut myapp.air"

     

     So my guess is you need -desktopShortcut

     

    Patrick

    0
  • Hi does this still work? When i try and install .air apps i get an error saying Program is not a valid Win32 application.

    0
  • Hi Milton, i just try it and its working for me.

     

    first i deploy adobe air then my app, everything work on 64 bits system, we dont have any 32 bits left so i can't try. 

    here my installation command:

    "C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe"  -silent -eulaAccepted -desktopShortcut Myapps.air

     

    Patrick

     

    0