Air 2.6 Ubuntu Native Installer Problem

Hi, i have a problem creating and native deb installer with Adobe 2.6 with Ubuntu 10.10, when i run this code on terminal:
/home/victor/Flex_SDK/Flex_SDK_4.5.0/bin/adt -package -storetype pkcs12 -keystore /home/victor/Certificado.p12 -storepass secret -target native /home/victor/Desktop/TestNativeApp.deb TestNativeApp-app.xml TestNativeApp.swf
This code creates an deb native installer without any errors or warnings, but when i try to execute this file, the Ubuntu Software Center says "Internal Error the file /home/victor/Desktop/TestNativeApp.deb could not be openned", but when i try to run with dpkg -i /home/victor/Desktop/TestNativeApp.deb the file installs well.
What am i doing wrong?.
Thanks for yours responses.

I've got the same issue.  Ubuntu Software Center won't open it.
When I run it with dpkg like you do, I get a version number error, though:
parsing file '/var/lib/dpkg/tmp.ci/control' near line 2 package 'mypackage':
error in Version string 'v1': version number does not start with digit
Errors were encountered while processing:
I assume this version is pulled from the air XML file, so I'm going to change that and make it only numbers and see if that fixes it.

Similar Messages

  • Packaging an AIR application in a native installer

    Hi! I'm trying to create a native installer of my AIR Application,  because (I think) it's the only way make the native processes working.  But I have a problem: I used the following command to pack: "adt  -package -storetype pkcs12 -keystore myCert.pfx -target native  -storetype pkcs12 -keystore myCert.pfx myApp.exe myApp-app.xml", but I get  the error: "File myApp-app.xml is not a valid AIRI or AIR file". In the  Flash Builder I use as additional compiler arguments:  "-locale=pt_PT,en_UK,fr_FR,de_DE,ro_RO,es_ES  -allow-source-path-overlap=true -source-path=assets" and I add the  source path "src/locale/{locale}/". What is the sintax for packing my  AIR application in a native installer? Thanks in advance.

    Hi again! Thanks for the reply. I based myself on the link to see what command syntax I should use to pack my Air Windowed Application and it was the command that I presented in the previous post.
    adt version "2.0.1.12090"
                                                  My Descriptor File
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.0">
    <!-- Adobe AIR Application Descriptor File Template.
        Specifies parameters for identifying, installing, and launching AIR applications.
        xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.0
                The last segment of the namespace specifies the version
                of the AIR runtime required for this application to run.
        minimumPatchLevel - The minimum patch level of the AIR runtime required to run
                the application. Optional.
    -->
        <!-- A universally unique application identifier. Must be unique across all AIR applications.
             Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
        <id>com.MyCompany.Application</id>
        <!-- Used as the filename for the application. Required. -->
        <filename>Production Control System</filename>
        <!-- The name that is displayed in the AIR application installer.
             May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <name>Production Control System</name>
        <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
        <version>2.1.3</version>
        <!-- Description, displayed in the AIR application installer.
             May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <!-- <description></description> -->
        <!-- Copyright information. Optional -->
        <!-- <copyright></copyright> -->
        <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
        <!-- <publisherID>My Company</publisherID> -->
        <!-- Settings for the application's initial window. Required. -->
        <initialWindow>
            <!-- The main SWF or HTML file of the application. Required. -->
            <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
            <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
            <!-- The title of the main window. Optional. -->
            <!-- <title></title> -->
            <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
            <systemChrome>none</systemChrome>
            <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
            <transparent>true</transparent>
            <!-- Whether the window is initially visible. Optional. Default false. -->
            <!-- <visible></visible> -->
            <!-- Whether the user can minimize the window. Optional. Default true. -->
            <!-- <minimizable></minimizable> -->
            <!-- Whether the user can maximize the window. Optional. Default true. -->
            <!-- <maximizable></maximizable> -->
            <!-- Whether the user can resize the window. Optional. Default true. -->
            <!-- <resizable></resizable> -->
            <!-- The window's initial width in pixels. Optional. -->
            <!-- <width></width> -->
            <!-- The window's initial height in pixels. Optional. -->
            <!-- <height></height> -->
            <!-- The window's initial x position. Optional. -->
            <!-- <x></x> -->
            <!-- The window's initial y position. Optional. -->
            <!-- <y></y> -->
            <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
            <!-- <minSize></minSize> -->
            <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
            <!-- <maxSize></maxSize> -->
        </initialWindow>
        <!-- We recommend omitting the supportedProfiles element, -->
        <!-- which in turn permits your application to be deployed to all -->
        <!-- devices supported by AIR. If you wish to restrict deployment -->
        <!-- (i.e., to only mobile devices) then add this element and list -->
        <!-- only the profiles which your application does support. -->
        <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
        <supportedProfiles>extendedDesktop</supportedProfiles>
        <!-- The subpath of the standard default installation location to use. Optional. -->
        <!-- <installFolder></installFolder> -->
        <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
        <!-- <programMenuFolder></programMenuFolder> -->
        <!-- The icon the system uses for the application. For at least one resolution,
             specify the path to a PNG file included in the AIR package. Optional. -->
        <!-- <icon>
            <image16x16></image16x16>
            <image32x32></image32x32>
            <image48x48></image48x48>
            <image128x128></image128x128>
        </icon> -->
        <!-- Whether the application handles the update when a user double-clicks an update version
        of the AIR file (true), or the default AIR application installer handles the update (false).
        Optional. Default false. -->
        <customUpdateUI>true</customUpdateUI>
        <!-- Whether the application can be launched when the user clicks a link in a web browser.
        Optional. Default false. -->
        <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
        <!-- Listing of file types for which the application can register. Optional. -->
        <!-- <fileTypes> -->
            <!-- Defines one file type. Optional. -->
            <!-- <fileType> -->
                <!-- The name that the system displays for the registered file type. Required. -->
                <!-- <name></name> -->
                <!-- The extension to register. Required. -->
                <!-- <extension></extension> -->
                <!-- The description of the file type. Optional. -->
                <!-- <description></description> -->
                <!-- The MIME content type. -->
                <!-- <contentType></contentType> -->
                <!-- The icon to display for the file type. Optional. -->
                <!-- <icon>
                    <image16x16></image16x16>
                    <image32x32></image32x32>
                    <image48x48></image48x48>
                    <image128x128></image128x128>
                </icon> -->
            <!-- </fileType> -->
        <!-- </fileTypes> -->
        <!-- iPhone/iPad -specific capabilities -->
        <!-- <iPhone> -->
            <!-- A list of plist key/value pairs to be added to the application Info.plist -->
            <!-- <InfoAdditions>
                <![CDATA[
                    <key>UIDeviceFamily</key>
                    <array>
                        <string>1</string>
                        <string>2</string>
                    </array>
                    <key>UIStatusBarStyle</key>
                    <string>UIStatusBarStyleBlackOpaque</string>
                    <key>UIRequiresPersistentWiFi</key>
                    <string>YES</string>
                ]]>
            </InfoAdditions> -->
        <!-- </iPhone> -->
    </application>

  • Adobe AIR Runtime Redistribution and Native Installer

    Will there be new instructions for Adobe AIR 2.0 Runtime Redistribution? In particular, I'm looking for instructions on how to use the runtime redistribution installer to perform a "side-car installation" of AIR 2 alongside an application that uses the NativeProcess API (and so must be built into a native installer instead of a .air file).
    Thanks!

    Thirded!
    On a test deployment using SCCM and the supplied Adobe AIR Runtime Installer files, we have managed to install our application with the 1.5.3 Air Framework with no major issues other than having to disable the Auto Update feature that doesnt really work in a corporate environment.  Everything was absolutely fine until the release of AIR 2.  Now, the test machines are prompted to install the updated Adobe Air 2 framework once a week, see an excerpt from an Adobe blog post below:
    "In addition, once a week AIR apps check to see if an AIR update is available, and if so, users are presented with the option to update to the most up‐to‐date version, helping to ensure that end users get the benefits of improved security and performance."
    That sounds great right?  Except my users (like many other corporate users) don't have Admin permissions on their machines (hence the use of SCCM), with the result being resultant error messages when a user attemptes to install the AIR framework update without the necessary permissions.
    All of the above would be fine if the Adobe AIR Runtime Installer files were updated to include the latest version of the runtime.  This of course hasn't been done yet - does anyone know when this may happen?  Can anyone help me with this or offer any advice?
    I hope the above makes sense and I would really appreciate any help or advice!
    Thanks!

  • AIR File Icon (For Native Installer)

    Hi,
    I am generating AIR application as native installer (.exe). I want to have a custom icon for my .exe file.
    I have specified the icons in application descriptor file as
    <icon>
                        <image16x16>icon...</image16x16>
                        <image32x32>icon...</image32x32>
                        <image48x48>icon...</image48x48>
                        <image57x57>icon...</image57x57>
                        <image72x72>icon...</image72x72>
                        <image114x114>icon...</image114x114>
                        <image128x128>icon...</image128x128>
              </icon>
    But this icon does not appear to be .exe file icon, It appears as application installed file icon. I want to have different icons for application installed icon (Application Icon) and separate icon for application installer (.air or .exe file custom icon)
    Kindly suggest any solution

    In this case you need to update installer icon manually via third-party app like freeware "ResourceHacker" http://www.angusj.com/resourcehacker/

  • Native Installer works with Net Use, but AIR File does not.

    I'm building an AIR application that runs a "net use" command in windows 7.
    Strangely, the installer type appears to impact run permissions:
       + Export release build to "Native Installer" -> "Net Use" works and I see all my test alert boxes.
       + Export release build to "AIR File" --> animations run and the app is responsive, but I don't see any of my alert boxes and the "Net Use" command shows no sign of running.

    Update - partial resolution:
    Apparently you have to use a Native Install to use native functionality (don't know why this includes Alert Boxes).
    I just found this bit on Adobe's web site:
         Packaging an AIR application in a native installer
              http://help.adobe.com/en_US/air/build/WS789ea67d3e73a8b22388411123785d839c-8000.html
    Adobe, please work to address this.  I'd like to release cross-compatible code and this creates a situation where the user has to choose a different installer based on their platform.  Minor, but annoying when an AIR file works for both in other instances.
    It would also be nice to get some sort of error message.  I had no idea why things weren't working (even my Alert boxes were being swallowed).

  • Show progress bar and percents when packaging a native installer with adt packager

    Hello,
    Below is a simple example using the AIR's NativeProcess for compiling an air application into a native installer... Everything works fine, so at the end of the NativeProcess, the native installer (*.exe) is created... In this case, the application which I'm trying to compile is small (approx. 600KB)... However, if I have to package into native installer a bigger file (several MBs), I would like also to monitor the progress by using a progress bar and percents... How?
    private var file:File
    private var nativeProcessStartupInfo:NativeProcessStartupInfo;
    private var nativeProcess:NativeProcess;
    private function compile():void{
      file = new File("C:\\Program Files\\Java\\jre7\\bin\\java.exe");
      nativeProcessStartupInfo = new NativeProcessStartupInfo();
      var args:Vector.<String> = new Vector.<String>();
      args.push("-jar");
      args.push(adtPath);
      args.push("-package");
      args.push("-storetype");
      args.push("pkcs12");
      args.push("-keystore");
      args.push(certPath);
      args.push("-storepass");
      args.push("mypass");
      args.push("-target");
      args.push("native");
      args.push(exePath);
      args.push(xmlPath);
      args.push("-C");
      args.push(swfPath);
      args.push("testApp.swf");
      args.push("icons");
      nativeProcessStartupInfo.arguments = args;
      nativeProcessStartupInfo.executable = file;
      nativeProcess = new NativeProcess();
      nativeProcess.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutputData);
      nativeProcess.addEventListener(ProgressEvent.STANDARD_ERROR_DATA, onErrorData);
      nativeProcess.start(nativeProcessStartupInfo);
    private function onOutputData(event:ProgressEvent):void{
       var op:String =  nativeProcess.standardOutput.readUTFBytes(nativeProcess.standardOutput.bytesAvailable);
       trace("output = " + op);
    private function onErrorData(event:ProgressEvent):void{
       var er:String = nativeProcess.standardError.readUTFBytes(nativeProcess.standardError.bytesAvailable);
       trace("error = " + er);
    Thanks in advance,
    Nikola

    Someone to offer a solution to this problem (if exists)?

  • Signature file with native installer

    Just curious if anybody understands how the signature.xml file works with AIR apps installed via the native installer
    I thought that if you create an AIR application, install it, and then add content (even one small file) to the application's installation directory, it should break the application because the META-INF/AIR/signature.xml file would be all out of whack.
    But that doesn't seem to be the case with AIR files created with native installer. Does anybody know why this might be?
    Thanks for any thoughts.
    Daniel

    Hi Daniel,
    For a native application installer, signatures.xml does not carry the signature of the package. So modifying any of the content (adding or modifying files after the package is installed) would not require any changes in signature.xml file.
    Details about packaging an AIR application as a native installer can be obtained here:
            http://help.adobe.com/en_US/air/build/WS789ea67d3e73a8b22388411123785d839c-8000.html
    Thanks,
    -romil

  • Problem of native installer of Adobe Air

    The native installer will display an error as shown in the screenshot. But the native installer can execute normally after install A
    ir 2.0 public Beta First.
    Therefore, I think that the problem is not the system requirements problem.
    How can I run the native installer without installed Adobe Air First?

    Thanks. I'd looked for a META-INF/AIR folder under CS5 but failed to find one. So I gather the CS5 installer is not exactly a full-blown AIR application, but uses bits of AIR technology?

  • Adobe AIR Native installation + DRM issues.

    Hello Friends,
    We are looking at creating an application for a client whom is very concerned about piracy. They have a third party application which essentially injects DRM code into an windows exe. We created a demo air app which in turn was converted into an exe thanks to the native installer feature in Flash Builder for AIR and the third party worked fine by injecting after the DRM code.
    However we realized that in the installation directory we can find the swf for the app, so essentially if we install another Air app and swap the SWF's we can actually get the content and circumvent the DRM.
    I am wondering if there is anything we can do to prevent that (prevent the swf working within another AIR installation) and make it a little harder to crack.
    Any comments would be greatly appreciated.
    +LA
    www.lordalexworks.com

    I actually wanted to clarify a few things on this question in hope of still gettign an answer.
    Apparently MDM Zinc does a good of creating a exe that can then later be succesfuly injected with DRM requiring an activation code to be able to install the software. It seems the swf gets converted to something else therefore injecting the DRM is more effective.
    However I still want to do thid via AIR, the problem being is that the swf can be found in the installation and can be placed in another AIR app to circunvent the instalation code.
    Any thoughts are apreacited.
    +LA

  • Can't package native installer on Linux with Flex SDK 4.5 : Invalid AIR file

    Hi,
    We've moved our application to compile against the 4.5 SDK.
    We're compiling it with Flash Builder (on mac) into an air file and as our application is using NativeProcess API, we're packaging it on each platform into a native installer with the following command (linux example) : adt -package -target native app.deb app.air
    We think we fall into the same issue as http://forums.adobe.com/message/3271944#3271944 but for the 4.5 DSK.
    On Linux it used to work with the following environment (env1):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.1.0.16076 + Adobe Air SDK 2.5.0
    It stops to work when we upgrade to the new Flex SDK (env2):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.5.0.20967 (with the default embeded Adobe Air SDK 2.6)
    The faut message is "Invalid AIR file" and nothing is logged in the log file (/home/<username>/.appdata/Adobe/AIR/Logs/Install.log).
    1) The .air file is installing correctly on env2 (without the support of the NativeProcess as expected)
    2) We also tried to compile the project directly on env2 :
    amxml app.mxml
    adt -package -storetype pkcs12 -keystore cert.p12 app.air app-app.xml air.swf
    The .air file is installing fine but the packaging into a native process fails in the same way...
    3) We tried to package a native installer of our .air file on env1 and it works!!! (the installed application seems to work fine also on env2!!!)
    Are we missing something or does it seems to be a bug of the Flex SDK 4.5?
    Are there some restrictions to package a native installer with the Flex SDK 4.1 a air app build with the Flex SDK 4.5 ?
    Thanks in advance,
    Mich

    Hi,
    Finally we figure out how to solve the issue.
    The packaging into native .deb installer fails as explain above because with the hole Flex SDK 4.5 (adt -version told 2.6.0.1920).
    The packaging is successfull if only Air SDK 2.6 is install.
    What is strange that both adt seems to be the same "2.6.0.1920" (found with "adt -version").
    Can someone from the Adobe dev team explain it?
    I suppose as the Flex SDK is not available for the Linux platform, the download only contains the Air SDK for Windows and Mac OS as opposed to the specific download of the Air SDK for te Linux platform...
    Thanks,
    Mich

  • Package into a native installer fails on Linux (Flex SDK 4.5) : "Invalid AIR file"

    Hi,
    We've moved our application to compile against the 4.5 SDK.
    We're compiling it with Flash Builder (on mac) into an air file and as our application is using NativeProcess API, we're packaging it on each platform into a native installer with the following command (linux example) : adt -package -target native app.deb app.air
    We think we fall into the same issue ashttp://forums.adobe.com/message/3271944#3271944 but for the 4.5 DSK.
    On Linux it used to work with the following environment (env1):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.1.0.16076 + Adobe Air SDK 2.5.0
    It stops to work when we upgrade to the new Flex SDK (env2):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.5.0.20967 (with the default embeded Adobe Air SDK 2.6)
    The faut message is "Invalid AIR file" and nothing is logged in the log file (/home/<username>/.appdata/Adobe/AIR/Logs/Install.log).
    1) The .air file is installing correctly on env2 (without the support of the NativeProcess as expected)
    2) We also tried to compile the project directly on env2 :
    amxml app.mxml
    adt -package -storetype pkcs12 -keystore cert.p12 app.air app-app.xml air.swf
    The .air file is installing fine but the packaging into a native process fails in the same way...
    3) We tried to package a native installer of our .air file on env1 and it works!!! (the installed application seems to work fine also on env2!!!)
    Are we missing something or does it seems to be a bug of the Flex SDK 4.5?
    Are there some restrictions to package a native installer with the Flex SDK 4.1 a air app build with the Flex SDK 4.5 ?
    Thanks in advance,
    Mich

    Hi,
    Finally we figure out how to solve the issue.
    The packaging into native .deb installer fails as explain above because with the hole Flex SDK 4.5 (adt -version told 2.6.0.1920).
    The packaging is successfull if only Air SDK 2.6 is install.
    What is strange that both adt seems to be the same "2.6.0.1920" (found with "adt -version").
    Can someone from the Adobe dev team explain it?
    I suppose as the Flex SDK is not available for the Linux platform, the download only contains the Air SDK for Windows and Mac OS as opposed to the specific download of the Air SDK for te Linux platform...
    Thanks,
    Mich

  • How to auto update AIR runtime when installing with native installer?

    Hi, we recently changed our app to a native installer for both Windows and OS X.
    It seemed that when we distributed a .air file the install process would upgrade the installed version of the AIR runtime (if necessary) before installing our application.
    Now it seems that if AIR is installed with an old version (say 2.5) and the native installer app is installed (requiring AIR 3.0) an error message appears that says "Sorry, an error has occurred. The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author".
    My question is how can we have our native installer bring the user's version of the AIR runtime to the minimum required (3.0) or the latest version (3.6)?
    The error message displayed to the user does not provide meaningful info.
    Thank you so much for your help with this!

    Hi Chris, thank you for the response. I've spent quite a bit of time browsing the forum and you're sort of a celebrity to me ;-)
    The "installer damaged" error message is happening on the first install of our application with older version of the AIR runtime.  The app is using the nativeapplicatoinupdater ( http://code.google.com/p/nativeapplicationupdater/ ) project for updates (which is working great once the app is installed).
    I performed a few tests on OS X (10.8.2) this evening and here are my results.
    AIR 1.5: app install dialog with option to download AIR 3.6 is shown. INSTALL OK
    AIR 2.04.: app install dialog with option to download AIR 3.6 IS NOT shown. INSTALL FAILS
    AIR 2.5.: app install dialog with option to download AIR 3.6 IS NOT shown. INSTALL FAILS
    AIR 2.6: app install dialog with option to download AIR 3.6 is shown. INSTALL OK
    AIR 2.7: app install dialog with option to download AIR 3.6 is shown. APP INSTALL OK
    So it seems the problem is with AIR 2.04 and 2.5. I uninstalled and reinstalled the AIR runtime for each test. I can consistently reproduce the failed install with 2.04 and 2.5. The same DMG file was used in each test.  I have seen similar error messages on Windows 7 when AIR 2.5 was installed, though I didn't get a chance to look at the log to confirm it's the same migration error.
    The failed installs seem to drop out because of: "failed while validating native package: Error: invalid migration signature".
    Tomorrow I can create a version without the migration certificate to see if it can be successfully installed on 2.04 and 2.5. It's "interesting" that the other versions of the runtime do not fail on this condition.
    Here are details from the log:
    Here is the log with AIR 1.5 (install Adobe AIR 3.6 (required) is checked and displayed: INSTALL OK
    Feb 28 22:43:22 collings-4.local mds[36]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Feb 28 22:43:23 collings-4.local Finder[371]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb 28 22:43:24 collings-4.local Dock[368]: no information back from LS about running process
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Bootstrapper begin with version (null) on Mac x86
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Begin runtime download from http://airdownload.adobe.com/air/3/nai/macos10.8/x86/installer
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/installer
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin signature download from http://airdownload.adobe.com/air/3/nai/macos10.8/x86/installer.p7
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/installer.p7
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin crl download from http://crl.adobe.com/prodSvce.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/prodSvce.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin crl download from http://crl.adobe.com/cds.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/cds.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin cert chain validation
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Cert chain validation succeeded
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Detached signature verified
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Launching subprocess with commandline "AIR Runtime Installer" -x1 /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Runtime Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Commandline is: -x1 "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Invoking Application Installer for combined install
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -url "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:44 collings-4.local Adobe AIR Application Installer[5930]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:43:44 collings-4.local Adobe AIR Application Installer[5930]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -url "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:44 collings-4.local Adobe AIR Application Installer[5930]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:43:46 collings-4.local Adobe AIR Application Installer[5930]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:43:55 collings-4.local Adobe AIR Application Installer[5930]: Application signature verified
    Feb 28 22:43:55 collings-4.local Adobe AIR Application Installer[5930]: Unpackaging/validation complete
    Feb 28 22:43:55 collings-4.local Adobe AIR Application Installer[5930]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:43:58 collings-4.local Finder[371]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb 28 22:43:59 collings-4.local Adobe AIR Application Installer[5930]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:59 collings-4.local Adobe AIR Application Installer[5930]: Relaunching with elevation
    Feb 28 22:44:03 collings-4.local auditd[5934]: Auditing enabled
    Feb 28 22:44:03 collings-4.local auditd[5934]: Got low space trigger
    Feb 28 22:44:03 collings-4.local auditd[5934]: auditd_read_dirs(): all audit log directories over soft limit
    Feb 28 22:44:04 collings-4.local auditd[5934]: renamed /var/audit/20130301084246.not_terminated to /var/audit/20130301084246.20130301084403
    Feb 28 22:44:04 collings-4.local auditd[5934]: New audit file is /var/audit/20130301084403.not_terminated
    Feb 28 22:44:04 collings-4.local _securityagent[5938]: audit warning: allsoft
    Feb 28 22:44:04 collings-4.local _securityagent[5941]: audit warning: closefile /var/audit/20130301084246.20130301084403
    Feb 28 22:44:04 collings-4.local _securityagent[5940]: audit warning: soft /var/audit
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Got user: [USER_NAME]
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Got ruser: (null)
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Got service: authorization
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_principal_for_user(): No authentication authority returned
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_principal_for_user(): failed: 7
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Done cleanup3
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_record_check_pwpolicy(): retval: 0
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Establishing credentials
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Got user: [USER_NAME]
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Context initialised
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Got euid, egid: 0 0
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done getpwnam()
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done setegid() & seteuid()
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): pam_sm_setcred: krb5 user [USER_NAME] doesn't have a principal
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done cleanup3
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done seteuid() & setegid()
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done cleanup4
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Feb 28 22:44:04 collings-4.local com.apple.SecurityServer[27]: UID 501 authenticated as user [USER_NAME] (UID 501) for right 'system.privilege.admin'
    Feb 28 22:44:04 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5930] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5930] (13,0)
    Feb 28 22:44:04 collings-4.local coreservicesd[67]: Application App:"Adobe AIR Application Installer" [ 0x0/0x41a41a]  @ 0x0x7fe548ca9570 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x41b41b:) ), so denying.
    Feb 28 22:44:04 collings-4.local WindowServer[116]: [cps/setfront] Failed setting the front application to Adobe AIR Application Installer, psn 0x0-0x41a41a, securitySessionID=0x186a4, err=-13066
    Feb 28 22:44:04 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [5942] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5930] (3,0)
    Feb 28 22:44:04 collings-4.local authexec[5942]: executing /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Feb 28 22:44:04 collings-4.local Adobe AIR Application Installer[5942]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:44:04 collings-4.local Adobe AIR Application Installer[5942]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:44:04 collings-4.local Adobe AIR Application Installer[5942]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:44:05 collings-4.local Adobe AIR Application Installer[5942]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Application signature verified
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Unpackaging/validation complete
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Starting silent combined runtime update and app install.
               Updating runtime from version 1.5.3.9130 to version 3.6.0.5970.
               Installing app com.[APP_NAME].[APP_NAME] version 1.3.7 to /Applications  using the source file at /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 22:44:22 collings-4 kernel[0]: Sandbox: sandboxd(5950) deny mach-lookup com.apple.coresymbolicationd
    Feb 28 22:44:22 collings-4.local sandboxd[5950] ([5920]): mdworker(5920) deny file-read-data /Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin/fpupdatepl (pre-ls-info fstype:hfs fsflag:480D000 flags:240000005E diag:0 uti:com.apple.application-file plugin:/Library/Spotlight/Application.mdimporter - find suspect file using: sudo mdutil -t 15941757)
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:53 collings-4.local mdworker[5920]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/[APP_NAME].app
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/[APP_NAME].app
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chmod succeeded
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Application Installer end with exit code 0
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5930]: Elevated install completed
    Feb 28 22:44:54 collings-4.local Adobe AIR Application Installer[5930]: Launching subprocess with commandline /Applications/[APP_NAME].app
    Feb 28 22:44:54 collings-4.local Dock[368]: no information back from LS about running process
    Feb 28 22:44:54 collings-4.local Adobe AIR Application Installer[5930]: Application Installer end with exit code 0
    Feb 28 22:44:54 collings-4.local Adobe AIR Installer[5928]: Subprocess app installer failed (-1)
    Feb 28 22:44:54 collings-4.local Adobe AIR Installer[5928]: Runtime Installer end with exit code 7
    Feb 28 22:44:54 collings-4.local Install [APP_NAME][5921]: Subprocess Runtime Installer failed (7)
    Feb 28 22:44:54 collings-4.local Install [APP_NAME][5921]: Bootstrapper end with exit code 7
    Feb 28 22:44:54 collings-4 com.apple.launchd.peruser.501[353] ([0x0-0x416416].com.[APP_NAME].[APP_NAME].installer[5921]): Exited with code: 7
    Here is the log with AIR 2.0.4 (the dialog to install the app and option to download 3.6 is not displayed): INSTALL FAILED
    Feb 28 21:34:11 collings-4.local Install [APP_NAME][4367]: Bootstrapper begin with version (null) on Mac x86
    Feb 28 21:34:11 collings-4.local Install [APP_NAME][4367]: Installed runtime (2.0.4.13090) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 21:34:11 collings-4.local Install [APP_NAME][4367]: Launching subprocess with commandline "AIR Application Installer" /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 21:34:11 collings-4.local Adobe AIR Application Installer[4369]: Starting app install of file:///Volumes/Install%20[APP_NAME]/Install%20[APP_NAME].app/Contents/Resources/[APP_NAM E]
    Feb 28 21:34:11 collings-4.local Adobe AIR Application Installer[4369]: UI SWF load is complete
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: UI initialized
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: Detected native app installer
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: style being loaded from stylesNative.swf
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: beginning UI styling
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: UI styling complete
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: Validating the native package at file:///Volumes/Install%20[APP_NAME]/Install%20[APP_NAME].app/Contents/Resources/[APP_NAM E]
    Feb 28 21:34:20 collings-4.local Adobe AIR Application Installer[4369]: failed while validating native package: Error: invalid migration signature
    Here is the log with AIR 2.5 (the dialog to install the app and option to download 3.6 is not displayed): INSTALL FAILED
    Feb 28 21:37:38 collings-4.local Install [APP_NAME][4428]: Bootstrapper begin with version (null) on Mac x86
    Feb 28 21:37:38 collings-4.local Install [APP_NAME][4428]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 21:37:38 collings-4.local Install [APP_NAME][4428]: Launching subprocess with commandline "AIR Application Installer" /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 21:37:39 collings-4.local Adobe AIR Application Installer[4430]: Application Installer begin with version 2.5.0.16600 on Mac OS 10.8.2 x86
    Feb 28 21:37:39 collings-4.local Adobe AIR Application Installer[4430]: Commandline is: "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 21:37:39 collings-4.local Adobe AIR Application Installer[4430]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 21:37:40 collings-4.local Adobe AIR Application Installer[4430]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 21:37:47 collings-4.local Adobe AIR Application Installer[4430]: Migration signature validation failed
    Feb 28 21:37:47 collings-4.local Adobe AIR Application Installer[4430]: Got an unexpected fatal error while validating native package: Error: invalid migration signature
    Feb 28 21:37:50 collings-4.local Adobe AIR Application Installer[4430]: Application Installer end with exit code 7
    Feb 28 21:37:50 collings-4.local Install [APP_NAME][4428]: Subprocess Application Installer failed (7)
    Feb 28 21:37:50 collings-4.local Install [APP_NAME][4428]: Bootstrapper end with exit code 7
    Feb 28 21:37:50 collings-4 com.apple.launchd.peruser.501[353] ([0x0-0x28d28d].com.[APP_NAME].[APP_NAME].installer[4428]): Exited with code: 7
    Here is the log with AIR 2.6 (the dialog to install the app and option to download 3.6 is displayed): INSTALL OK
    Feb 28 22:19:39 collings-4.local Install [APP_NAME][5321]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:19:39 collings-4.local Adobe AIR Application Installer[5323]: Application Installer begin with version 2.6.0.19140 on Mac OS 10.8.2 x86
    Feb 28 22:19:39 collings-4.local Adobe AIR Application Installer[5323]: Commandline is: "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:19:39 collings-4.local Adobe AIR Application Installer[5323]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:19:40 collings-4.local Adobe AIR Application Installer[5323]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Application signature verified
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Unpackaging/validation complete
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Application has unknown namespace http://ns.adobe.com/air/application/3.1. Attempting immediate runtime update
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Begin runtime update download from http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Download destination is /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Unpackaging http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update to /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:20:12 collings-4.local Adobe AIR Application Installer[5323]: Unpackaging complete
    Feb 28 22:20:12 collings-4.local Adobe AIR Application Installer[5323]: Download success
    Feb 28 22:20:12 collings-4.local Adobe AIR Application Installer[5323]: Successfully downloaded immediate update. Invoking downloaded installer
    Feb 28 22:20:13 collings-4.local Adobe AIR Application Installer[5323]: Launching subprocess with commandline /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update/updater -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:13 collings-4.local Adobe AIR Application Installer[5323]: Application Installer end with exit code 0
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Runtime Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Commandline is: -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Invoking Application Installer for combined install
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:20 collings-4.local Adobe AIR Application Installer[5331]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:20:20 collings-4.local Adobe AIR Application Installer[5331]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:20 collings-4.local Adobe AIR Application Installer[5331]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:20:22 collings-4.local Adobe AIR Application Installer[5331]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:20:30 collings-4.local Adobe AIR Application Installer[5331]: Application signature verified
    Feb 28 22:20:30 collings-4.local Adobe AIR Application Installer[5331]: Unpackaging/validation complete
    Feb 28 22:20:30 collings-4.local Adobe AIR Application Installer[5331]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:20:33 collings-4.local Adobe AIR Application Installer[5331]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:33 collings-4.local Adobe AIR Application Installer[5331]: Relaunching with elevation
    Feb 28 22:20:39 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5331] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5331] (13,0)
    Feb 28 22:20:39 collings-4.local coreservicesd[67]: Application App:"Adobe AIR Application Installer" [ 0x0/0x382382]  @ 0x0x7fe549928a40 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x383383:) ), so denying.
    Feb 28 22:20:39 collings-4.local WindowServer[116]: [cps/setfront] Failed setting the front application to Adobe AIR Application Installer, psn 0x0-0x382382, securitySessionID=0x186a4, err=-13066
    Feb 28 22:20:39 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [5342] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5331] (3,0)
    Feb 28 22:20:39 collings-4.local authexec[5342]: executing /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Feb 28 22:20:39 collings-4.local Adobe AIR Application Installer[5342]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:20:39 collings-4.local Adobe AIR Application Installer[5342]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:39 collings-4.local Adobe AIR Application Installer[5342]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:20:40 collings-4.local Adobe AIR Application Installer[5342]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Application signature verified
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Unpackaging/validation complete
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Starting silent combined runtime update and app install.
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/[APP_NAME].app
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/[APP_NAME].app
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chmod succeeded
    Feb 28 22:21:34 collings-4.local Adobe AIR Application Installer[5342]: Application Installer end with exit code 0
    Feb 28 22:21:34 collings-4.local Adobe AIR Application Installer[5331]: Elevated install completed
    Feb 28 22:21:34 collings-4.local Adobe AIR Application Installer[5331]: Launching subprocess with commandline /Applications/[APP_NAME].app
    Feb 28 22:21:35 collings-4.local Adobe AIR Application Installer[5331]: Application Installer end with exit code 0
    Feb 28 22:21:35 collings-4.local Adobe AIR Installer[5330]: Subprocess app installer succeeded
    Feb 28 22:21:35 collings-4.local Adobe AIR Installer[5330]: Runtime Installer end with exit code 0
    Here is the log with AIR 2.7 (the dialog to install the app and option to download 3.6 is displayed): INSTALL OK
    Feb 28 22:30:27 collings-4.local Install [APP_NAME][5591]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Application Installer begin with version 2.7.1.19610 on Mac OS 10.8.2 x86
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Commandline is: "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Application signature verified
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Unpackaging/validation complete
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Application has unknown namespace http://ns.adobe.com/air/application/3.1. Attempting immediate runtime update
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Begin runtime update download from http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Download destination is /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Unpackaging http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update to /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Unpackaging complete
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Download success
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Successfully downloaded immediate update. Invoking downloaded installer
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Launching subprocess with commandline /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update/updater -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Application Installer end with exit code 0
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Runtime Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Commandline is: -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Invoking Application Installer for combined install
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:12 collings-4.local Adobe AIR Application Installer[5605]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:31:12 collings-4.local Adobe AIR Application Installer[5605]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:12 collings-4.local Adobe AIR Application Installer[5605]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:31:13 collings-4.local Adobe AIR Application Installer[5605]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:31:23 collings-4.local Adobe AIR Application Installer[5605]: Application signature verified
    Feb 28 22:31:23 collings-4.local Adobe AIR Application Installer[5605]: Unpackaging/validation complete
    Feb 28 22:31:23 collings-4.local Adobe AIR Application Installer[5605]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:31:28 collings-4.local Adobe AIR Application Installer[5605]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:28 collings-4.local Adobe AIR Application Installer[5605]: Relaunching with elevation
    Feb 28 22:31:33 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5605] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5605] (13,0)
    Feb 28 22:31:33 collings-4.local coreservicesd[67]: Application App:"Adobe AIR Application Installer" [ 0x0/0x3c53c5]  @ 0x0x7fe548e920f0 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x3c63c6:) ), so denying.
    Feb 28 22:31:33 collings-4.local WindowServer[116]: [cps/setfront] Failed setting the front application to Adobe AIR Application Installer, psn 0x0-0x3c53c5, securitySessionID=0x186a4, err=-13066
    Feb 28 22:31:33 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [5617] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5605] (3,0)
    Feb 28 22:31:33 collings-4.local authexec[5617]: executing /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Feb 28 22:31:33 collings-4.local Adobe AIR Application Installer[5617]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:31:33 collings-4.local Adobe AIR Application Installer[5617]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:33 collings-4.local Adobe AIR Application Installer[5617]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:31:34 collings-4.local Adobe AIR Application Installer[5617]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Application signature verified
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Unpackaging/validation complete
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Starting silent combined runtime update and app install.
    Feb 28 22:32:18 collings-4.local Adobe AIR Application Installer[5617]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/[APP_NAME].app
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/[APP_NAME].app
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chmod succeeded
    Feb 28 22:32:20 collings-4.local Adobe AIR Application Installer[5617]: Application Installer end with exit code 0
    Feb 28 22:32:20 collings-4.local Adobe AIR Application Installer[5605]: Elevated install completed
    Feb 28 22:32:20 collings-4.local Adobe AIR Application Installer[5605]: Launching subprocess with commandline /Applications/[APP_NAME].app
    Feb 28 22:32:21 collings-4.local Adobe AIR Application Installer[5605]: Application Installer end with exit code 0
    Feb 28 22:32:21 collings-4.local Adobe AIR Installer[5604]: Subprocess app installer succeeded
    Feb 28 22:32:21 collings-4.local Adobe AIR Installer[5604]: Runtime Installer end with exit code 0

  • I can't get any contact info for installation problem- I just bought a Mac Air and my CS5 is asking for a reinstall. Mac Air has no DVD slots. HELP I al VERY FRUSTRATED THAT ADOBE HAS NO WAY TO GET HELP

    I can't get any contact info for installation problem- I just bought a Mac Air and my CS5 is asking for a reinstall. Mac Air has no DVD slots. HELP I al VERY FRUSTRATED THAT ADOBE HAS NO WAY TO GET HELP

    You are right, Adobe does not support CS5 because it is no longer sold.
    Simply download the trial version of CS5 from this Adobe web site and input your serial number.
    Adobe - Photoshop : For Macintosh

  • Installation problem any program that requires Adobe Air

    Installation problem
    I just purchased a new HP Pavilion Laptop running windows 8
    If I try to install any program that requires Adobe Air I get a failure message that says
    "Sorry an error has occured
    The applcation could not be installed because the installer file is damaged.  Try obtaining a new installer  file for the applciation author"
    I have version 14.0.0.110 of Adobe Air Installed.  
    I have installed all widows updates.
    I have removed and re installed Adobe Air but the problem persists
    Very frustrating problem, any help or direction is appreciated

    I have a similar problem and a possible workaround. Take a look at my reply: Installing air applications returns error

  • AIR to auto upgrade to (native installer)

    Hello,
    The first application (released) was created in AIR now we want our exsting customer to auto upgrade to (native installer) to support few native process.
    The AIR check for the new upgrade avaiable and downloads the new (native installer) from the server but fails to run the installer.
    We have used NativeProcess to run the newly downloaded native installer. The logs shows that the nativeprocess is not supported.
    The supportedProfiles is set to <supportedProfiles>extendedDesktop desktop</supportedProfiles>.
    We had also tried using openWithDefaultApplication() function to run the nativeinstaller but with no success.
    Thanks

    Hello,
    The first application (released) was created in AIR now we want our exsting customer to auto upgrade to (native installer) to support few native process.
    The AIR check for the new upgrade avaiable and downloads the new (native installer) from the server but fails to run the installer.
    We have used NativeProcess to run the newly downloaded native installer. The logs shows that the nativeprocess is not supported.
    The supportedProfiles is set to <supportedProfiles>extendedDesktop desktop</supportedProfiles>.
    We had also tried using openWithDefaultApplication() function to run the nativeinstaller but with no success.
    Thanks

Maybe you are looking for

  • Mini DisplayPort to HDMI ----

    Hello Apple.... Are you there Apple? I have this shiny new MacBook, but I can't elegantly plug it into my HDMI TV. Make the cable. Get it on the shelf. Tardiness and neglect make for agro customers..... Grrrrrr....

  • I used the compatibility button with IE and our company program. I can't get the company program to work using Firefox. How do I make compatiable?

    With IE and my company program access, I used the compatibility button so it would work. I can't find a solution with Firefox to utilize my company program. I tried Shift Control R and Shift reload. But to no avail. I really need to use my company pr

  • Draw a string with one character in a different color

    This problem sounds trivially simple, but I don't have a clue on how to implement it. What I'm basically trying to do, is use Graphics2D.drawString() to draw a string...but I want one letter to be in a different color. Guessing from the API this coul

  • Inbound delivery Report

    Dear All, We want to see the report which will give the details of Inbound delivery pending for GRN & Goods Receipt Numbers for Shipping Notification Number Thanks & Regards Rajesh Dalal

  • Maximum length of table name

    Hi, I am new  to Abap. Can any one tell me what is the maximum laength of a table can be....In help.sap. i found that it is 18 characters... but when i am trying it here it is allowing to give only 16 letters... And the other error i am getting is th