Adobe Air installed with Cricut Craft Room

I installed Cricut Craft Room and in the process, Adobe Air was downloaded.  When I went to sync to Cricut Craft Room, I received this Air error message:   "Sorry, an error has occurred. This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance."
I have un-installed, tried to re-install and still no success.  It appears to download correctly until I try and run something.  I have Windows 7 environment and Air 3.7.0.1860 was installed.

What operating system are you using?  Here's a post that should help, though the file location is for XP:
Re: Adobe Air installation problems XP SP3
On Vista and above, you'd put the eulaAccepted file in the C:\Users\username\AppData\Roaming\Adobe\AIR folder.

Similar Messages

  • Adobe AIR and Cricut Craft Room

    Cricut Craft Room is not working because of an issue with Adobe AIR. I get an error message saying that the installer was damaged and I can't download the Cricut Craft Room software for Windows 8.1. Cricut customer service talked me through all of the troubleshooting that they had and nothing is wrong on their end. They told me to contact Adobe. Any suggestions? I am using a PC and have Windows 8.1.

    Do you receive any error messages when you install Adobe AIR?  Which operating system are you using?  Are you able to install other AIR applications successfully?

  • Adobe Air Install Package Signed by Revoke Certificate?

    My security settings may be a little more strick than most. I just download the adobe air install package today. I think the revoked signature is preventing the installation. Can anyone confirm the signature? Thanks.

    No problems with the signature on a new Windows 7 x64 / IE10 install with default settings .

  • I cannot use this version of the application Adobe Air Installer with this version of Mac OS X.

    I have Mac OS 10.5.8 and every time I try to install Air Adobe 3 I get the message
    "You cannot use this version of the application Adobe Air Installer with this version of Mac OS X." 
    Could anyone help me? 
    Jai

    Hi,
    Adobe won't be developing for 10.5.8 new features (including new runtime) only security relates updates for existing runtimes (Flash 10.3.*/Air 2.7.*). Flash 11/Air 3.0 are only supported on 10.6.8.*/10.7.*, see:
    http://kb2.adobe.com/cps/916/cpsid_91694.html#main_system_requirements
    There is recent,  lengthy thread on forums with Adobe's employees statements on that subject (support/development for 10.5.* and newer) but I cannot find it quickly as basically forum search is broken/hard to do,
    regards,
    Peter

  • Receiving error after installation when attempting to open Cricut Craft room.

    Receiving error after installation when attempting to open Cricut Craft room. It says 'Application Descriptor cannot be found for this application." I have tried uninstalling/reinstalling/installing older version. Any ideas?

    Thanks for the help that fixed my problem for the initial error, but I
    still get the same error when I am writing a U16 2-D array to a range
    of cells. This is strange because the same code is used elsewhere and
    does not throw the error, but the data type is instead a Dbl 2-D
    array.  Unfortunately, I am unable to post the code.  It is
    on a stand-alone classified pc.

  • URGENT: Tomcat + Adobe AIR, problem with open .doc

    Hello!
    I've got a web application (Java) in Tomcat.
    I compile using Adobe AIR sdk with this:
    adt -package -storetype pkcs12 -keystore melcos.pfx -target native MELCOS.air
    MELCOS-app.xml MELCOS.html AIRAliases.js icons
    This is my app.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
      <id>project.html.melcos</id>
      <name>
        <text xml:lang="it">Software M.EL.COS. - MME</text>
      </name>
      <versionNumber>1.0.0</versionNumber>
      <filename>Prova</filename>
      <copyright>Copyright</copyright>
      <initialWindow>
        <content>MELCOS.html</content>
        <title>Prova</title>
        <visible>true</visible>
        <width>1024</width>
        <height>768</height>
      </initialWindow>
         <icon>
              <image16x16>icons/logo16.png</image16x16>
              <image32x32>icons/logo32.png</image32x32>
              <image48x48>icons/logo48.png</image48x48>
              <image128x128>icons/logo128.png</image128x128>
         </icon>
         <allowBrowserInvocation>true</allowBrowserInvocation> 
    </application>
    and this is MELCOS.html:
    <html>
    <head>
    <title>M.EL.COS. - MME</title>
      <script type="text/javascript" src="AIRAliases.js"></script>
      <script type="text/javascript">
        function appLoad(){
            window.location="http://localhost:8082/MELCOS";
      </script>
    </head>
    <body onLoad="appLoad()">
    </body>
    </html>
    Now...Tomcat6029 are a Windows service and it start with user SYSTEM.
    In my Java project i build a .doc file and i try to open it directly with default windows application:
    FinalFile = "prova.doc";
    File file = new File("C:\\MELCOS\\run\\web\\tomcat6029\\webapps\\MELCOS\\fronte_quadro\\"+FinalFile);
    Desktop desktop = Desktop.getDesktop();
    desktop.open(file);
    The process start (for example WINWORD.exe) but start with user SYSTEM, and user interface of Microsoft Word don't start.
    (I've try to use getDesktop, ProcessBuilder, getRuntime without results).
    If i try to open directly .doc like browser (stop on url http://localhost:8080/MELCOS/fronte_quadro/prova.doc) Adobe AIR don't open anything.
    I've read that there is a method named openWithDefaultApplication, but i haven't find if it's possible to call this method in java file.
    Can you help me?
    I've got to start Microsoft Word (in this example) and open my files, or i've to open a pop-up like browser's "open - save as - close" window.
    Thanks.
    Morkar88

    Thanks Chris,
    i try to create file "open_document.js":
    import flash.filesystem.File;
    import flash.net.FileFilter;
    var f = air.File.desktopDirectory.resolvePath("preventivo_11.doc");
    f.openWithDefaultApplication();
    when i try to open this file in Adobe AIR (i call http://localhost:8080/MyProject/document/open_document.js"), Adobe Air open new window and with my file .js like a normal text file.
    I try also with "open_document.html":
    <html>
    <head>
    <script language="javascript">
    import flash.filesystem.File;
    import flash.net.FileFilter;
    function opendoc() {
      var f = air.File.desktopDirectory.resolvePath("preventivo_11.doc");
      f.openWithDefaultApplication();
    </script>
    </head>
    <body onLoad="opendoc()">
    </body>
    </html>
    But nothing start....
    (my file "preventivo_11.doc" is in C:\Project\tomcat\webapps\MyProject\document\)
    Why? What i have to do?
    Thanks
    P.S. i've got error with import: flash.ecc... and if i remove import, error with air.File.

  • Testing adobe air application with qtp

    Hi,
    We want to test our adobe air applications with quicktest. Where can I find addin for QTP and how do the AIR applcation have to be developed? What have to be done? There is no much info in google about this.
    Thank you in advanced!

    QTP does not currently work with AIR applications.  It will work with Web deployed FLEX applications.
    I have been told by Adobe that whilst they're not sure of an exact date, they do believe that QTP will be supported in AIR with Flex 4.
    You might want to look at some alternatives:
    http://code.google.com/p/fluint/
    http://code.google.com/p/flexmonkey/
    http://www.borland.com/us/products/silk/silktest/index.html

  • Running Adobe AIR applications without having Adobe AIR installed

    Is running Adobe AIR applications without having Adobe AIR
    installed possible?
    Why wouldn`t it be?
    And if not, when will it be possible?
    Thank you.

    There's no technical way this could be possible. It's like a
    .swf playing without the Flash Player installed, or a Java applet
    without the Java Virtual Machine. Or even like a Windows
    application running without Windows. :)
    There are, however, 3rd party wrappers out there to turn AIR
    apps into native OS apps (basically it wraps the AIR Runtime inside
    a native OS executable, like .exe). One that I can name off the top
    of my head is the Shu wrapper. This is like the old school Flash
    projectors, like Zinc and mProjector. The user doesn't have to
    install anything to run native executables.
    I would be surprised if Adobe has any plans to make an
    executable wrapper for AIR, but I don't know anything. I would like
    to see .air files be able to run in the AIR Runtime without having
    to actually install the .air package, though.

  • Provocraft cricut craft room uses Adobe air application I cant get craft room to open up the adobe air agreeement message pops up everytime anyone?

    need help anyone encounter this?

    What operating system are you using?  Here's a post that should help, though the file location is for XP:
    Re: Adobe Air installation problems XP SP3
    On Vista and above, you'd put the eulaAccepted file in the C:\Users\username\AppData\Roaming\Adobe\AIR folder.

  • Howto: Put in CD / DVD - sample adobe air application with installing process:

    Hello anything,
    Please do not forget!
    With Flex-SDK (newer version)
    CD / DVD: ROM:
    /os
    /win = Windows Version like *.exe, *.msi, *.cmd *.vs or *.ws
    /mac = Macintoch Version like *.pkg, *.app, *.dmg,, *.mpkg
    /lin = Linux version like *.run, *. , *.bin, *.sh, *.rpm,
    *.deb
    /setup = your adobe air application like Custom air-able
    installer = my great installer ( Cominig soon... )
    /images your photos or texture or any styles... , icons too
    /acabs = my suggestion for like Windows *.cab <> Air
    Cab = *.acab
    /locales = for your languages ...
    /folder any your suggestions...
    /flex-sdk = Flex Software Development Kit = Adobe Flex SDK
    (no flexbuilder 3)
    /helps = When you need help like *.pdf Files.for Installer
    / = callable autorun with autostart.jar or autorun.jar
    If you want to build powerful application on Windows 32 or 64
    Bit you can sometime regedit writing. DO NOT WORRY!!!! My special
    installer (coming soon).
    I have been created a sample installer. whe i am final with
    my installer. Do not worry! You can to believe me really. :)
    How do i bind to exec for java? (No javascript! OK)
    How do i create shell for Mac OS X Leopard
    Do not forget!
    I have been created shell in /os/mac/preload_installer.sh,
    How do i know when i do not use with disk image moving and
    clicking? How does my shell start automacally?
    I know for Linux. I have not problem for linux version. I
    have Ubuntu 8.05 LTS Version. :).
    But i haven't Mac OS X :(
    Thank you for cross-plattform-able CD or DVD :)
    Enjoy for making with image and burn an image since cd or
    dvd-rom.
    Best regards, SnakeMedia

    Could you open a new bug report on this over at bugbase.adobe.com.  Please include a copy of your app (or a sample project) along with steps to reproduce.  Once added, please let me know the bug number and I'll have somone take a look ASAP.
    Thanks,
    Chris

  • Unable to install an Adobe AIR application with -location to correct path

    Hi
    Im trying to silent install an air app on the command line (Windows).  But the path i use after -location is ignored.
    This is the code im using:
    "C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" "-silent" "-location" "C:\Program Files\my_app_name" "C:\Program Files\my_app_name.air"
    What ever i add after -location isnt used and it gets added to the default location.  Has anybody else found this?
    Thanks
    James

    Thanks and see this article, the detail is not what is the command that allows me themassive installation of AIR application.

  • Adobe Air install problem

    Hello all,
                                  I don’t know if anyone can help me with my problem but from what I’ve read on this forum it’s not completely unlike a problem other people have had. . I have tried completely uninstalling and re-installing adobe air 3.0, 3.6 and 3.8 on my Windows 7 Ultimate system and when I do I get…….”An error occurred while installing Adobe Air. Installation may not be allowed by your administrator. Please contact your administrator.” After installing Adobe Air on the computer successfully this comes up in a box when I try to run it. I disable malwarebytes and security essentials and windows firewall from the start of the whole process. I have run windows “fix it” (no luck). I always download the adobe file to my desktop before attempting to run it. I right click the icon and click “run as administrator” before running. I will include the adobe logs and windows installer logs. If anyone can offer a solution that would be appreciated.
                                            ……….Geoff
    SYSTEM SPECS
    Processor: Intel(R) core(TM)2 Duo CPU   E7400  @  2.80 GHz
    Installed Memory (RAM)  4.00GB
    System Type:  64-bit operating system
    Adobe log:
    [2013-08-18:20:33:55] Runtime Installer begin with version 3.8.0.870 on Windows Vista x86
    [2013-08-18:20:33:55] Commandline is:
    [2013-08-18:20:33:55] No installed runtime detected
    [2013-08-18:20:33:58] Relaunching with elevation
    [2013-08-18:20:33:58] Launching subprocess with commandline c:\users\geoff\appdata\local\temp\air3103.tmp\adobe air installer.exe -ei
    [2013-08-18:20:34:00] Runtime Installer begin with version 3.8.0.870 on Windows Vista x86
    [2013-08-18:20:34:00] Commandline is: -stdio \\.\pipe\AIR_2692_0 -ei
    [2013-08-18:20:34:00] No installed runtime detected
    [2013-08-18:20:34:01] Starting silent runtime install. Installing runtime version 3.8.0.870
    [2013-08-18:20:34:01] Installing msi at c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi with guid {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}
    [2013-08-18:20:34:02] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-08-18:20:34:02] Rolling back install of c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
    [2013-08-18:20:34:02] Rollback complete
    [2013-08-18:20:34:02] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-08-18:20:34:02] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-08-18:20:34:02] Runtime Installer end with exit code 7
    [2013-08-18:20:34:06] Runtime Installer end with exit code 7
    Windows installer log:
    === Verbose logging started: 18/08/2013  20:34:01  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Users\Geoff\appdata\local\temp\air3103.tmp\adobe air installer.exe ===
    MSI (c) (F8:E8) [20:34:01:420]: Resetting cached policy values
    MSI (c) (F8:E8) [20:34:01:420]: Machine policy value 'Debug' is 7
    MSI (c) (F8:E8) [20:34:01:420]: ******* RunEngine:
               ******* Product: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
               ******* Action:
               ******* CommandLine:
    MSI (c) (F8:E8) [20:34:01:421]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (F8:E8) [20:34:01:421]: Grabbed execution mutex.
    MSI (c) (F8:E8) [20:34:01:478]: Cloaking enabled.
    MSI (c) (F8:E8) [20:34:01:478]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (F8:E8) [20:34:01:481]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (1C:38) [20:34:01:489]: Running installation inside multi-package transaction c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
    MSI (s) (1C:38) [20:34:01:489]: Grabbed execution mutex.
    MSI (s) (1C:60) [20:34:01:491]: Resetting cached policy values
    MSI (s) (1C:60) [20:34:01:491]: Machine policy value 'Debug' is 7
    MSI (s) (1C:60) [20:34:01:491]: ******* RunEngine:
               ******* Product: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
               ******* Action:
               ******* CommandLine:  CURRENTDIRECTORY="C:\Users\Geoff\Desktop" CLIENTUILEVEL=3  MSICLIENTUSESEXTERNALUI=1  CLIENTPROCESSID=3832
    MSI (s) (1C:60) [20:34:01:491]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (1C:60) [20:34:01:491]: Setting cached product context: User non-assigned for product: 2F3834B5EE7379E4DA185FFF672F68AD
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 2F3834B5EE7379E4DA185FFF672F68AD
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: User non-assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: User non-assigned for product: 6DED2C82B5237CC489A371778C7FBFBA
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 6DED2C82B5237CC489A371778C7FBFBA
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: User non-assigned for product: 96C629F95804AEA469755BB4829EE27C
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 96C629F95804AEA469755BB4829EE27C
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 00002105501100000000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: machine assigned for product: 00002105501100000000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 076CFAAAB965F2A4284B2449E5D03EFE
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 076CFAAAB965F2A4284B2449E5D03EFE
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 0D756077321A70C3E844C138CE981581
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 0D756077321A70C3E844C138CE981581
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 1038C85769625584FA5435B4210089A0
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 1038C85769625584FA5435B4210089A0
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 11F12B5E3396B0E42AC597363E0CD711
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 11F12B5E3396B0E42AC597363E0CD711
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 13DB5A20CA61FD54EBF93A61B74CFA2B
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 13DB5A20CA61FD54EBF93A61B74CFA2B
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2A7527EE2A93F2D4D9CA9F2FB5A81E8D
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2A7527EE2A93F2D4D9CA9F2FB5A81E8D
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2B11A14CA4F488732B566E55603B2407
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2B11A14CA4F488732B566E55603B2407
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2C6C459DB44519044AF7117E172688E3
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2C6C459DB44519044AF7117E172688E3
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2C75B9145BEB1024195FEC7FF3422C91
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2C75B9145BEB1024195FEC7FF3422C91
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 394E2E69484C3E34B9596DE27E4DD0A3
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 394E2E69484C3E34B9596DE27E4DD0A3
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 47F250E77A017E2448BE101C275FBAD5
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 47F250E77A017E2448BE101C275FBAD5
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4A4869755DDD3AC4E98AB77E9D95D34B
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4A4869755DDD3AC4E98AB77E9D95D34B
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4CD78B6ED3B23844DAFF4E38FB179819
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4CD78B6ED3B23844DAFF4E38FB179819
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4E42866C3BBC1584BBF38EFC6D539032
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4E42866C3BBC1584BBF38EFC6D539032
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120603FF
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120603FF
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120712FF
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120712FF
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140712FF
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140712FF
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 52744B0D6663D294EB6F85A741DBB99D
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 52744B0D6663D294EB6F85A741DBB99D
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 570A8206A5A90DF438CDB0EF23D68963
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 570A8206A5A90DF438CDB0EF23D68963
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 584D7940F10B01BD989E233FBAA219EE
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 584D7940F10B01BD989E233FBAA219EE
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 60EA627A3AAA1D34783E075F0113F440
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 60EA627A3AAA1D34783E075F0113F440
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 65B39F425F16F514589BAA44D43AA4CF
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 65B39F425F16F514589BAA44D43AA4CF
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 68AB67CA7DA73301B744BA0000000010
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 68AB67CA7DA73301B744BA0000000010
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 7692FC6BE18C0C0489510C7547EF1F02
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 7692FC6BE18C0C0489510C7547EF1F02
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 76EA78D0BE4101C4885AADC61318BE81
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 76EA78D0BE4101C4885AADC61318BE81
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 78BB89799B1064D4E80A66187EB2ED78
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 78BB89799B1064D4E80A66187EB2ED78
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7B292C385A83B0447A137070E0186AF4
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7B292C385A83B0447A137070E0186AF4
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7CCC956F8C36CC94A8674331C15E3D8A
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7CCC956F8C36CC94A8674331C15E3D8A
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7E0BA6F1DDC839B4A832AAE92BEFCF4E
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7E0BA6F1DDC839B4A832AAE92BEFCF4E
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 8BD17494C3F7BD24982CCA05AFC02509
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 8BD17494C3F7BD24982CCA05AFC02509
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 9040580900063D11C8EF10054038389C
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 9040580900063D11C8EF10054038389C
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 9040620900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 9040620900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 9040820900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 9040820900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: A57765D93F393A44082948E08362ED03
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: A57765D93F393A44082948E08362ED03
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: B17E077734D20084C93BB5C6AABEBEAE
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: B17E077734D20084C93BB5C6AABEBEAE
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: B228E2A2E0B31C64E9B3CA7D1D9E1593
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: B228E2A2E0B31C64E9B3CA7D1D9E1593
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: BAF5E720674195C4AA4B23FE82253099
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: BAF5E720674195C4AA4B23FE82253099
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: BFF8CCA148D950C44AED2DA8B99C6189
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: BFF8CCA148D950C44AED2DA8B99C6189
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C28643E881181F13CBC489DC69571E2C
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C28643E881181F13CBC489DC69571E2C
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C42CF3A20CE691545AB2DF4AAEB9D242
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C42CF3A20CE691545AB2DF4AAEB9D242
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C78C232F29E657742801FD9EB077779D
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C78C232F29E657742801FD9EB077779D
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: CF454FAAAC2892F4BA13A60149587EE6
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: CF454FAAAC2892F4BA13A60149587EE6
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: D21EC9447C2E79B41BE9551D36AE4953
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: D21EC9447C2E79B41BE9551D36AE4953
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: E08F45ADC1622A148A5545A941F4F295
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: E08F45ADC1622A148A5545A941F4F295
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: EEDB8CDDCACDD4042875E3D8B4874276
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: EEDB8CDDCACDD4042875E3D8B4874276
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (1C:60) [20:34:01:503]: Setting cached product context: machine assigned for product: F60730A4A66673047777F5728467D401
    MSI (s) (1C:60) [20:34:01:503]: Using cached product context: machine assigned for product: F60730A4A66673047777F5728467D401
    MSI (s) (1C:60) [20:34:01:504]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (1C:60) [20:34:01:504]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (1C:60) [20:34:01:505]: File will have security applied from OpCode.
    MSI (s) (1C:60) [20:34:01:506]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi' against software restriction policy
    MSI (s) (1C:60) [20:34:01:506]: SOFTWARE RESTRICTION POLICY: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi has a digital signature
    MSI (s) (1C:60) [20:34:01:536]: SOFTWARE RESTRICTION POLICY: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (1C:60) [20:34:01:536]: End dialog not enabled
    MSI (s) (1C:60) [20:34:01:536]: Original package ==> c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
    MSI (s) (1C:60) [20:34:01:536]: Package we're running from ==> c:\Windows\Installer\eb5d7f.msi
    MSI (s) (1C:60) [20:34:01:538]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (1C:60) [20:34:01:538]: APPCOMPAT: looking for appcompat database entry with ProductCode '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'.
    MSI (s) (1C:60) [20:34:01:538]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (1C:60) [20:34:01:541]: MSCOREE not loaded loading copy from system32
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (1C:60) [20:34:01:543]: User policy value 'TransformsAtSource' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'DisablePatch' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (1C:60) [20:34:01:543]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (s) (1C:60) [20:34:01:544]: APPCOMPAT: looking for appcompat database entry with ProductCode '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'.
    MSI (s) (1C:60) [20:34:01:544]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (1C:60) [20:34:01:544]: Transforms are not secure.
    MSI (s) (1C:60) [20:34:01:544]: Note: 1: 2205 2:  3: Control
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\Geoff\AppData\Local\Temp\MSIb5d31.LOG'.
    MSI (s) (1C:60) [20:34:01:544]: Command Line: CURRENTDIRECTORY=C:\Users\Geoff\Desktop CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=3832
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{D083566A-72D0-4F1B-8AB5-FA2675BEEED0}'.
    MSI (s) (1C:60) [20:34:01:544]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (1C:60) [20:34:01:544]: Product Code from property table before transforms: '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'
    MSI (s) (1C:60) [20:34:01:544]: Product Code from property table after transforms:  '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'
    MSI (s) (1C:60) [20:34:01:544]: Product not registered: beginning first-time install
    MSI (s) (1C:60) [20:34:01:544]: Product {0A5B39D2-7ED6-4779-BCC9-37F381139DB3} is not managed.
    MSI (s) (1C:60) [20:34:01:544]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (1C:60) [20:34:01:544]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (1C:60) [20:34:01:544]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (1C:60) [20:34:01:544]: Adding new sources is allowed.
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:544]: Package name extracted from package path: 'setup.msi'
    MSI (s) (1C:60) [20:34:01:544]: Package to be registered: 'setup.msi'
    MSI (s) (1C:60) [20:34:01:544]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:01:545]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (1C:60) [20:34:01:545]: Machine policy value 'DisableMsi' is 0
    MSI (s) (1C:60) [20:34:01:545]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:545]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:545]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (1C:60) [20:34:01:545]: Running product '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}' with elevated privileges: Product is assigned.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\Geoff\Desktop'.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '3832'.
    MSI (s) (1C:60) [20:34:01:545]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (1C:60) [20:34:01:546]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '2f5c3883cd077f47bd7c05478f637425'.
    MSI (s) (1C:60) [20:34:01:546]: RESTART MANAGER: Session opened.
    MSI (s) (1C:60) [20:34:01:546]: TRANSFORMS property is now:
    MSI (s) (1C:60) [20:34:01:546]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (1C:60) [20:34:01:547]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming
    MSI (s) (1C:60) [20:34:01:548]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Favorites
    MSI (s) (1C:60) [20:34:01:549]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (1C:60) [20:34:01:550]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Documents
    MSI (s) (1C:60) [20:34:01:551]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (1C:60) [20:34:01:551]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (1C:60) [20:34:01:552]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (1C:60) [20:34:01:553]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (1C:60) [20:34:01:553]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (1C:60) [20:34:01:554]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Local
    MSI (s) (1C:60) [20:34:01:554]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Pictures
    MSI (s) (1C:60) [20:34:01:556]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (1C:60) [20:34:01:556]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (1C:60) [20:34:01:557]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (1C:60) [20:34:01:558]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (1C:60) [20:34:01:559]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (1C:60) [20:34:01:560]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (1C:60) [20:34:01:561]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (1C:60) [20:34:01:561]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (1C:60) [20:34:01:562]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (1C:60) [20:34:01:563]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Desktop
    MSI (s) (1C:60) [20:34:01:564]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (1C:60) [20:34:01:564]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (1C:60) [20:34:01:564]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (1C:60) [20:34:01:568]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:568]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Geoff'.
    MSI (s) (1C:60) [20:34:01:568]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\Windows\Installer\eb5d7f.msi'.
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi'.
    MSI (s) (1C:60) [20:34:01:568]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (1C:60) [20:34:01:568]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (1C:60) [20:34:01:568]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (1C:60) [20:34:01:568]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:01:568]: Machine policy value 'DisableRollback' is 0
    MSI (s) (1C:60) [20:34:01:568]: User policy value 'DisableRollback' is 0
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 18/08/2013  20:34:01 ===
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2205 2:  3: LaunchCondition
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2228 2:  3: LaunchCondition 4: SELECT `Condition` FROM `LaunchCondition`
    MSI (s) (1C:60) [20:34:01:569]: APPCOMPAT: [DetectVersionLaunchCondition] Failed to initialize pRecErr.
    MSI (s) (1C:60) [20:34:01:569]: PROPERTY CHANGE: Adding SHIMFLAGS property. Its value is '512'.
    MSI (s) (1C:60) [20:34:01:569]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (1C:60) [20:34:01:569]: Doing action: INSTALL
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2205 2:  3: ActionText
    Action start 20:34:01: INSTALL.
    MSI (s) (1C:60) [20:34:01:569]: Running ExecuteSequence
    MSI (s) (1C:60) [20:34:01:569]: Doing action: FindRelatedProducts
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:01:570]: FindRelatedProducts: could not read ASSIGNMENTTYPE info for product '{A0087DDE-69D0-11E2-AD57-43CA6188709B}'.  Skipping...
    Action start 20:34:01: FindRelatedProducts.
    MSI (s) (1C:60) [20:34:01:570]: Doing action: ValidateProductID
    MSI (s) (1C:60) [20:34:01:570]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: FindRelatedProducts. Return value 1.
    Action start 20:34:01: ValidateProductID.
    MSI (s) (1C:60) [20:34:01:570]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (1C:60) [20:34:01:570]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: ValidateProductID. Return value 1.
    MSI (s) (1C:60) [20:34:01:571]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetSHAREDADDINFOLDER'
    MSI (s) (1C:60) [20:34:01:571]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 20:34:01: SetSHAREDADDINFOLDER.
    MSI (s) (1C:60) [20:34:01:571]: Doing action: CostInitialize
    MSI (s) (1C:60) [20:34:01:571]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (1C:60) [20:34:01:571]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (1C:60) [20:34:01:571]: Baseline: Sorting baselines for {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}.
    MSI (s) (1C:60) [20:34:01:571]: Baseline: New baseline 3.8.0 from transaction.
    MSI (s) (1C:60) [20:34:01:571]: Baseline: Sorted order Native: Order 0.
    MSI (s) (1C:60) [20:34:01:571]: Baseline Data Table:
    MSI (s) (1C:60) [20:34:01:571]: ProductCode: {0A5B39D2-7ED6-4779-BCC9-37F381139DB3} Version: 3.8.0 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (1C:60) [20:34:01:571]: Baseline File Table:
    MSI (s) (1C:60) [20:34:01:572]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'c:\'.
    MSI (s) (1C:60) [20:34:01:573]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (1C:60) [20:34:01:573]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: Patch
    Action start 20:34:01: CostInitialize.
    MSI (s) (1C:60) [20:34:01:573]: Doing action: FileCost
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: CostInitialize. Return value 1.
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: TypeLib
    Action start 20:34:01: FileCost.
    MSI (s) (1C:60) [20:34:01:574]: Doing action: CostFinalize
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: FileCost. Return value 1.
    MSI (s) (1C:60) [20:34:01:574]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:60) [20:34:01:575]: Note: 1: 2205 2:  3: Condition
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'c:\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\Windows\'. Its new value: 'c:\Windows\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'. Its new value: 'c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Modifying CommonFilesFolder property. Its current value is 'C:\Program Files (x86)\Common Files\'. Its new value: 'c:\Program Files (x86)\Common Files\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding WebKitLic property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit\'.
    MSI (s) (1C:60) [20:34:01:575]: Target path resolution complete. Dumping Directory table...
    MSI (s) (1C:60) [20:34:01:575]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: TARGETDIR , Object: c:\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: WindowsFolder , Object: c:\Windows\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: SHAREDADDINFOLDER , Object: c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: CommonFilesFolder , Object: c:\Program Files (x86)\Common Files\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: AIR , Object: c:\Program Files (x86)\Common Files\Adobe AIR\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: Versions , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: Version , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: Resources , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: WebKitLic , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit\
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:575]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (1C:60) [20:34:01:576]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ?
    Action start 20:34:01: CostFinalize.
    MSI (s) (1C:60) [20:34:01:576]: Doing action: MigrateFeatureStates
    MSI (s) (1C:60) [20:34:01:576]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: CostFinalize. Return value 1.
    Action start 20:34:01: MigrateFeatureStates.
    MSI (s) (1C:60) [20:34:01:577]: Doing action: InstallValidate
    MSI (s) (1C:60) [20:34:01:577]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: MigrateFeatureStates. Return value 0.
    MSI (s) (1C:60) [20:34:01:577]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '2f5c3883cd077f47bd7c05478f637425'.
    MSI (s) (1C:60) [20:34:01:577]: Note: 1: 2205 2:  3: Dialog
    MSI (s) (1C:60) [20:34:01:577]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:60) [20:34:01:577]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:60) [20:34:01:577]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: Sentinel; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: AppInstaller; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: WebKit; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: WebKitLicenses; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: FlashPlugin; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: Setup; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: RootCertificate; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: TimestampingRootCertificate; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: AIRAppInstaller; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRMADOBECPVoucher; Installed: Absent;   Request: Local;   Action: Null;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRM; Installed: Absent;   Request: Local;   Action: Null;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRM15; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRMAIRVoucher; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: __WebKitLicenses65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Component: __AIRAppInstaller65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Component: __FileTypeRegistration65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Component: __ARPRegistration65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Font
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: TypeLib
    Action start 20:34:01: InstallValidate.
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: _RemoveFilePath
    MSI (s) (1C:60) [20:34:01:585]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Font
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: TypeLib
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2727 2: 
    MSI (s) (1C:60) [20:34:01:586]: Note: 1: 2205 2:  3: FilesInUse
    MSI (s) (1C:60) [20:34:01:593]: Note: 1: 2727 2: 
    MSI (s) (1C:60) [20:34:01:593]: Doing action: SetARPINSTALLLOCATION
    MSI (s) (1C:60) [20:34:01:593]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: InstallValidate. Return value 1.
    MSI (s) (1C:60) [20:34:01:594]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetARPINSTALLLOCATION'
    MSI (s) (1C:60) [20:34:01:594]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    Action start 20:34:01: SetARPINSTALLLOCATION.
    MSI (s) (1C:60) [20:34:01:594]: Doing action: InstallInitialize
    MSI (s) (1C:60) [20:34:01:594]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: SetARPINSTALLLOCATION. Return value 1.
    MSI (s) (1C:60) [20:34:01:594]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:595]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:596]: BeginTransaction: Locking Server
    MSI (s) (1C:60) [20:34:01:596]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (1C:60) [20:34:01:596]: Server not locked: locking for product {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}
    Action start 20:34:01: InstallInitialize.
    MSI (s) (1C:60) [20:34:02:131]: Doing action: ProcessComponents
    MSI (s) (1C:60) [20:34:02:131]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: InstallInitialize. Return value 1.
    MSI (s) (1C:60) [20:34:02:133]: Note: 1: 2205 2:  3: MsiPatchCertificate
    MSI (s) (1C:60) [20:34:02:133]: LUA patching is disabled: missing MsiPatchCertificate table
    MSI (s) (1C:60) [20:34:02:133]: Resolving source.
    MSI (s) (1C:60) [20:34:02:133]: Resolving source to launched-from source.
    MSI (s) (1C:60) [20:34:02:133]: Setting launched-from source as last-used.
    MSI (s) (1C:60) [20:34:02:133]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'c:\users\geoff\appdata\local\temp\air3103.tmp\'.
    MSI (s) (1C:60) [20:34:02:133]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'c:\users\geoff\appdata\local\temp\air3103.tmp\'.
    MSI (s) (1C:60) [20:34:02:133]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'.
    MSI (s) (1C:60) [20:34:02:133]: SOURCEDIR ==> c:\users\geoff\appdata\local\temp\air3103.tmp\
    MSI (s) (1C:60) [20:34:02:133]: SOURCEDIR product ==> {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}
    MSI (s) (1C:60) [20:34:02:133]: Determining source type
    MSI (s) (1C:60) [20:34:02:133]: Source type from package 'setup.msi': 0
    Action start 20:34:02: ProcessComponents.
    MSI (s) (1C:60) [20:34:02:134]: Source path resolution complete. Dumping Directory table...
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: TARGETDIR , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: WindowsFolder , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: SHAREDADDINFOLDER , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: CommonFilesFolder , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: AIR , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\ , LongSubPath: Adobe AIR\ , ShortSubPath: AIR\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: Versions , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\ , LongSubPath: Adobe AIR\Versions\ , ShortSubPath: AIR\Versions\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: Version , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\1.0\ , LongSubPath: Adobe AIR\Versions\1.0\ , ShortSubPath: AIR\Versions\Version\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: Resources , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\1.0\Resources\ , LongSubPath: Adobe AIR\Versions\1.0\Resources\ , ShortSubPath: AIR\Versions\Version\R\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: WebKitLic , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\1.0\Resources\WebKit\ , LongSubPath: Adobe AIR\Versions\1.0\Resources\WebKit\ , ShortSubPath: AIR\Versions\Version\R\R2\
    MSI (s) (1C:60) [20:34:02:134]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:02:135]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:02:136]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:02:142]: Doing action: UnpublishFeatures
    MSI (s) (1C:60) [20:34:02:142]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: ProcessComponents. Return value 1.
    Action start 20:34:02: UnpublishFeatures.
    MSI (s) (1C:60) [20:34:02:143]: Doing action: RemoveRegistryValues
    MSI (s) (1C:60) [20:34:02:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: UnpublishFeatures. Return value 1.
    Action start 20:34:02: RemoveRegistryValues.
    MSI (s) (1C:60) [20:34:02:144]: Doing action: RemoveDuplicateFiles
    MSI (s) (1C:60) [20:34:02:144]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RemoveRegistryValues. Return value 1.
    Action start 20:34:02: RemoveDuplicateFiles.
    MSI (s) (1C:60) [20:34:02:145]: Doing action: RemoveFiles
    MSI (s) (1C:60) [20:34:02:145]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RemoveDuplicateFiles. Return value 1.
    MSI (s) (1C:60) [20:34:02:145]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (1C:60) [20:34:02:145]: Note: 1: 2205 2:  3: RemoveFile
    Action start 20:34:02: RemoveFiles.
    MSI (s) (1C:60) [20:34:02:146]: Doing action: InstallFiles
    MSI (s) (1C:60) [20:34:02:146]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RemoveFiles. Return value 0.
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'SentinelFile' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'air.swf' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'template.msi' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'template.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'LGPL.txt' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Notice.txt' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Setup.swf' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'styles.swf' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Adobe.cer' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Thawte.cer' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'digest.s' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'adobecp.vch' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'adobecp.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'AdobeAIR.vch' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'AdobeAIR.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'air.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'WebKit.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'NPSWF32.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'Setup.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'airappinstaller.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'adobecp15.dll' has no eligible binary patches
    Action start 20:34:02: InstallFiles.
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence`
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    MSI (s) (1C:60) [20:34:02:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:02:148]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:60) [20:34:02:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:02:151]: Doing action: DuplicateFiles
    MSI (s) (1C:60) [20:34:02:151]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: InstallFiles. Return value 1.
    Action start 20:34:02: DuplicateFiles.
    MSI (s) (1C:60) [20:34:02:152]: Doing action: WriteRegistryValues
    MSI (s) (1C:60) [20:34:02:152]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: DuplicateFiles. Return value 1.
    Action start 20:34:02: WriteRegistryValues.
    MSI (s) (1C:60) [20:34:02:155]: Doing action: RegisterUser
    MSI (s) (1C:60) [20:34:02:155]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: WriteRegistryValues. Return value 1.
    Action start 20:34:02: RegisterUser.
    MSI (s) (1C:60) [20:34:02:156]: Doing action: RegisterProduct
    MSI (s) (1C:60) [20:34:02:156]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RegisterUser. Return value 1.
    MSI (s) (1C:60) [20:34:02:156]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:156]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    Action start 20:34:02: RegisterProduct.
    MSI (s) (1C:60) [20:34:02:157]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (1C:60) [20:34:02:157]: Doing action: PublishFeatures
    MSI (s) (1C:60) [20:34:02:157]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RegisterProduct. Return value 1.
    Action start 20:34:02: PublishFeatures.
    MSI (s) (1C:60) [20:34:02:158]: Doing action: PublishProduct
    MSI (s) (1C:60) [20:34:02:158]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: PublishFeatures. Return value 1.
    MSI (s) (1C:60) [20:34:02:159]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:60) [20:34:02:159]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
    Action start 20:34:02: PublishProduct.
    MSI (s) (1C:60) [20:34:02:160]: Doing action: InstallExecute
    MSI (s) (1C:60) [20:34:02:160]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: PublishProduct. Return value 1.
    MSI (s) (1C:60) [20:34:02:161]: Running Script: C:\Windows\Installer\MSI5FFE.tmp
    MSI (s) (1C:60) [20:34:02:161]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2203 2: c:\Windows\Installer\eb5d82.ipi 3: -2147287035
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2503
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2503
    Action start 20:34:02: InstallExecute.
    DEBUG: Error 2503:  Called RunScript when not marked in progress.
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
    MSI (s) (1C:60) [20:34:02:161]: Product: Adobe AIR -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2503. The arguments are: , ,
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2503. The arguments are: , ,
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2203 2: c:\Windows\Installer\eb5d82.ipi 3: -2147287035
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2502
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2502
    Action ended 20:34:02: InstallExecute. Return value 3.
    DEBUG: Error 2502:  Called InstallFinalize when no install in progress.
    MSI (s) (1C:60) [20:34:02:163]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:163]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
    MSI (s) (1C:60) [20:34:02:163]: Product: Adobe AIR -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2502. The arguments are: , ,
    MSI (s) (1C:60) [20:34:02:163]: No System Restore sequence number for this installation.
    MSI (s) (1C:60) [20:34:02:163]: Unlocking Server
    MSI (s) (1C:60) [20:34:02:205]: PROPERTY

    Hello all,
                                  I don’t know if anyone can help me with my problem but from what I’ve read on this forum it’s not completely unlike a problem other people have had. . I have tried completely uninstalling and re-installing adobe air 3.0, 3.6 and 3.8 on my Windows 7 Ultimate system and when I do I get…….”An error occurred while installing Adobe Air. Installation may not be allowed by your administrator. Please contact your administrator.” After installing Adobe Air on the computer successfully this comes up in a box when I try to run it. I disable malwarebytes and security essentials and windows firewall from the start of the whole process. I have run windows “fix it” (no luck). I always download the adobe file to my desktop before attempting to run it. I right click the icon and click “run as administrator” before running. I will include the adobe logs and windows installer logs. If anyone can offer a solution that would be appreciated.
                                            ……….Geoff
    SYSTEM SPECS
    Processor: Intel(R) core(TM)2 Duo CPU   E7400  @  2.80 GHz
    Installed Memory (RAM)  4.00GB
    System Type:  64-bit operating system
    Adobe log:
    [2013-08-18:20:33:55] Runtime Installer begin with version 3.8.0.870 on Windows Vista x86
    [2013-08-18:20:33:55] Commandline is:
    [2013-08-18:20:33:55] No installed runtime detected
    [2013-08-18:20:33:58] Relaunching with elevation
    [2013-08-18:20:33:58] Launching subprocess with commandline c:\users\geoff\appdata\local\temp\air3103.tmp\adobe air installer.exe -ei
    [2013-08-18:20:34:00] Runtime Installer begin with version 3.8.0.870 on Windows Vista x86
    [2013-08-18:20:34:00] Commandline is: -stdio \\.\pipe\AIR_2692_0 -ei
    [2013-08-18:20:34:00] No installed runtime detected
    [2013-08-18:20:34:01] Starting silent runtime install. Installing runtime version 3.8.0.870
    [2013-08-18:20:34:01] Installing msi at c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi with guid {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}
    [2013-08-18:20:34:02] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-08-18:20:34:02] Rolling back install of c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
    [2013-08-18:20:34:02] Rollback complete
    [2013-08-18:20:34:02] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-08-18:20:34:02] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2013-08-18:20:34:02] Runtime Installer end with exit code 7
    [2013-08-18:20:34:06] Runtime Installer end with exit code 7
    Windows installer log:
    === Verbose logging started: 18/08/2013  20:34:01  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Users\Geoff\appdata\local\temp\air3103.tmp\adobe air installer.exe ===
    MSI (c) (F8:E8) [20:34:01:420]: Resetting cached policy values
    MSI (c) (F8:E8) [20:34:01:420]: Machine policy value 'Debug' is 7
    MSI (c) (F8:E8) [20:34:01:420]: ******* RunEngine:
               ******* Product: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
               ******* Action:
               ******* CommandLine:
    MSI (c) (F8:E8) [20:34:01:421]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (F8:E8) [20:34:01:421]: Grabbed execution mutex.
    MSI (c) (F8:E8) [20:34:01:478]: Cloaking enabled.
    MSI (c) (F8:E8) [20:34:01:478]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (F8:E8) [20:34:01:481]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (1C:38) [20:34:01:489]: Running installation inside multi-package transaction c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
    MSI (s) (1C:38) [20:34:01:489]: Grabbed execution mutex.
    MSI (s) (1C:60) [20:34:01:491]: Resetting cached policy values
    MSI (s) (1C:60) [20:34:01:491]: Machine policy value 'Debug' is 7
    MSI (s) (1C:60) [20:34:01:491]: ******* RunEngine:
               ******* Product: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
               ******* Action:
               ******* CommandLine:  CURRENTDIRECTORY="C:\Users\Geoff\Desktop" CLIENTUILEVEL=3  MSICLIENTUSESEXTERNALUI=1  CLIENTPROCESSID=3832
    MSI (s) (1C:60) [20:34:01:491]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (1C:60) [20:34:01:491]: Setting cached product context: User non-assigned for product: 2F3834B5EE7379E4DA185FFF672F68AD
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 2F3834B5EE7379E4DA185FFF672F68AD
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: User non-assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: User non-assigned for product: 6DED2C82B5237CC489A371778C7FBFBA
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 6DED2C82B5237CC489A371778C7FBFBA
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: User non-assigned for product: 96C629F95804AEA469755BB4829EE27C
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: User non-assigned for product: 96C629F95804AEA469755BB4829EE27C
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 00002105501100000000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: machine assigned for product: 00002105501100000000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Using cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (1C:60) [20:34:01:492]: Setting cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 076CFAAAB965F2A4284B2449E5D03EFE
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 076CFAAAB965F2A4284B2449E5D03EFE
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 0D756077321A70C3E844C138CE981581
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 0D756077321A70C3E844C138CE981581
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 1038C85769625584FA5435B4210089A0
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 1038C85769625584FA5435B4210089A0
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 11F12B5E3396B0E42AC597363E0CD711
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 11F12B5E3396B0E42AC597363E0CD711
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 13DB5A20CA61FD54EBF93A61B74CFA2B
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 13DB5A20CA61FD54EBF93A61B74CFA2B
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (1C:60) [20:34:01:493]: Setting cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (1C:60) [20:34:01:493]: Using cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2A7527EE2A93F2D4D9CA9F2FB5A81E8D
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2A7527EE2A93F2D4D9CA9F2FB5A81E8D
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2B11A14CA4F488732B566E55603B2407
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2B11A14CA4F488732B566E55603B2407
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2C6C459DB44519044AF7117E172688E3
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2C6C459DB44519044AF7117E172688E3
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 2C75B9145BEB1024195FEC7FF3422C91
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 2C75B9145BEB1024195FEC7FF3422C91
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (1C:60) [20:34:01:494]: Setting cached product context: machine assigned for product: 394E2E69484C3E34B9596DE27E4DD0A3
    MSI (s) (1C:60) [20:34:01:494]: Using cached product context: machine assigned for product: 394E2E69484C3E34B9596DE27E4DD0A3
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 47F250E77A017E2448BE101C275FBAD5
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 47F250E77A017E2448BE101C275FBAD5
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4A4869755DDD3AC4E98AB77E9D95D34B
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4A4869755DDD3AC4E98AB77E9D95D34B
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4CD78B6ED3B23844DAFF4E38FB179819
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4CD78B6ED3B23844DAFF4E38FB179819
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4E42866C3BBC1584BBF38EFC6D539032
    MSI (s) (1C:60) [20:34:01:495]: Using cached product context: machine assigned for product: 4E42866C3BBC1584BBF38EFC6D539032
    MSI (s) (1C:60) [20:34:01:495]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120603FF
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120603FF
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120712FF
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120712FF
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140712FF
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140712FF
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 52744B0D6663D294EB6F85A741DBB99D
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 52744B0D6663D294EB6F85A741DBB99D
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 570A8206A5A90DF438CDB0EF23D68963
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 570A8206A5A90DF438CDB0EF23D68963
    MSI (s) (1C:60) [20:34:01:496]: Setting cached product context: machine assigned for product: 584D7940F10B01BD989E233FBAA219EE
    MSI (s) (1C:60) [20:34:01:496]: Using cached product context: machine assigned for product: 584D7940F10B01BD989E233FBAA219EE
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 60EA627A3AAA1D34783E075F0113F440
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 60EA627A3AAA1D34783E075F0113F440
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 65B39F425F16F514589BAA44D43AA4CF
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 65B39F425F16F514589BAA44D43AA4CF
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 68AB67CA7DA73301B744BA0000000010
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 68AB67CA7DA73301B744BA0000000010
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 6E815EB96CCE9A53884E7857C57002F0
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (1C:60) [20:34:01:497]: Setting cached product context: machine assigned for product: 7692FC6BE18C0C0489510C7547EF1F02
    MSI (s) (1C:60) [20:34:01:497]: Using cached product context: machine assigned for product: 7692FC6BE18C0C0489510C7547EF1F02
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 76EA78D0BE4101C4885AADC61318BE81
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 76EA78D0BE4101C4885AADC61318BE81
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 78BB89799B1064D4E80A66187EB2ED78
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 78BB89799B1064D4E80A66187EB2ED78
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7B292C385A83B0447A137070E0186AF4
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7B292C385A83B0447A137070E0186AF4
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7CCC956F8C36CC94A8674331C15E3D8A
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7CCC956F8C36CC94A8674331C15E3D8A
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7E0BA6F1DDC839B4A832AAE92BEFCF4E
    MSI (s) (1C:60) [20:34:01:498]: Using cached product context: machine assigned for product: 7E0BA6F1DDC839B4A832AAE92BEFCF4E
    MSI (s) (1C:60) [20:34:01:498]: Setting cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 8BD17494C3F7BD24982CCA05AFC02509
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 8BD17494C3F7BD24982CCA05AFC02509
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 9040580900063D11C8EF10054038389C
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 9040580900063D11C8EF10054038389C
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 9040620900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 9040620900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: 9040820900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: 9040820900063D11C8EF00054038389C
    MSI (s) (1C:60) [20:34:01:499]: Setting cached product context: machine assigned for product: A57765D93F393A44082948E08362ED03
    MSI (s) (1C:60) [20:34:01:499]: Using cached product context: machine assigned for product: A57765D93F393A44082948E08362ED03
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: B17E077734D20084C93BB5C6AABEBEAE
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: B17E077734D20084C93BB5C6AABEBEAE
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: B228E2A2E0B31C64E9B3CA7D1D9E1593
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: B228E2A2E0B31C64E9B3CA7D1D9E1593
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: BAF5E720674195C4AA4B23FE82253099
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: BAF5E720674195C4AA4B23FE82253099
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: BFF8CCA148D950C44AED2DA8B99C6189
    MSI (s) (1C:60) [20:34:01:500]: Using cached product context: machine assigned for product: BFF8CCA148D950C44AED2DA8B99C6189
    MSI (s) (1C:60) [20:34:01:500]: Setting cached product context: machine assigned for product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: c1c4f01781cc94c4c8fb1542c0981a2a
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C28643E881181F13CBC489DC69571E2C
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C28643E881181F13CBC489DC69571E2C
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C42CF3A20CE691545AB2DF4AAEB9D242
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C42CF3A20CE691545AB2DF4AAEB9D242
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C78C232F29E657742801FD9EB077779D
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C78C232F29E657742801FD9EB077779D
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: CF454FAAAC2892F4BA13A60149587EE6
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: CF454FAAAC2892F4BA13A60149587EE6
    MSI (s) (1C:60) [20:34:01:501]: Setting cached product context: machine assigned for product: D21EC9447C2E79B41BE9551D36AE4953
    MSI (s) (1C:60) [20:34:01:501]: Using cached product context: machine assigned for product: D21EC9447C2E79B41BE9551D36AE4953
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: E08F45ADC1622A148A5545A941F4F295
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: E08F45ADC1622A148A5545A941F4F295
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: EEDB8CDDCACDD4042875E3D8B4874276
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: EEDB8CDDCACDD4042875E3D8B4874276
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (1C:60) [20:34:01:502]: Setting cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (1C:60) [20:34:01:502]: Using cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (1C:60) [20:34:01:503]: Setting cached product context: machine assigned for product: F60730A4A66673047777F5728467D401
    MSI (s) (1C:60) [20:34:01:503]: Using cached product context: machine assigned for product: F60730A4A66673047777F5728467D401
    MSI (s) (1C:60) [20:34:01:504]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (1C:60) [20:34:01:504]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (1C:60) [20:34:01:505]: File will have security applied from OpCode.
    MSI (s) (1C:60) [20:34:01:506]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi' against software restriction policy
    MSI (s) (1C:60) [20:34:01:506]: SOFTWARE RESTRICTION POLICY: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi has a digital signature
    MSI (s) (1C:60) [20:34:01:536]: SOFTWARE RESTRICTION POLICY: c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (1C:60) [20:34:01:536]: End dialog not enabled
    MSI (s) (1C:60) [20:34:01:536]: Original package ==> c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi
    MSI (s) (1C:60) [20:34:01:536]: Package we're running from ==> c:\Windows\Installer\eb5d7f.msi
    MSI (s) (1C:60) [20:34:01:538]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (1C:60) [20:34:01:538]: APPCOMPAT: looking for appcompat database entry with ProductCode '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'.
    MSI (s) (1C:60) [20:34:01:538]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (1C:60) [20:34:01:541]: MSCOREE not loaded loading copy from system32
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (1C:60) [20:34:01:543]: User policy value 'TransformsAtSource' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'DisablePatch' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (1C:60) [20:34:01:543]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (1C:60) [20:34:01:543]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (s) (1C:60) [20:34:01:544]: APPCOMPAT: looking for appcompat database entry with ProductCode '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'.
    MSI (s) (1C:60) [20:34:01:544]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (1C:60) [20:34:01:544]: Transforms are not secure.
    MSI (s) (1C:60) [20:34:01:544]: Note: 1: 2205 2:  3: Control
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\Geoff\AppData\Local\Temp\MSIb5d31.LOG'.
    MSI (s) (1C:60) [20:34:01:544]: Command Line: CURRENTDIRECTORY=C:\Users\Geoff\Desktop CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=3832
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{D083566A-72D0-4F1B-8AB5-FA2675BEEED0}'.
    MSI (s) (1C:60) [20:34:01:544]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (1C:60) [20:34:01:544]: Product Code from property table before transforms: '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'
    MSI (s) (1C:60) [20:34:01:544]: Product Code from property table after transforms:  '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'
    MSI (s) (1C:60) [20:34:01:544]: Product not registered: beginning first-time install
    MSI (s) (1C:60) [20:34:01:544]: Product {0A5B39D2-7ED6-4779-BCC9-37F381139DB3} is not managed.
    MSI (s) (1C:60) [20:34:01:544]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (1C:60) [20:34:01:544]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (1C:60) [20:34:01:544]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (1C:60) [20:34:01:544]: Adding new sources is allowed.
    MSI (s) (1C:60) [20:34:01:544]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:544]: Package name extracted from package path: 'setup.msi'
    MSI (s) (1C:60) [20:34:01:544]: Package to be registered: 'setup.msi'
    MSI (s) (1C:60) [20:34:01:544]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:01:545]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (1C:60) [20:34:01:545]: Machine policy value 'DisableMsi' is 0
    MSI (s) (1C:60) [20:34:01:545]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:545]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:545]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (1C:60) [20:34:01:545]: Running product '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}' with elevated privileges: Product is assigned.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\Geoff\Desktop'.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:545]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '3832'.
    MSI (s) (1C:60) [20:34:01:545]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (1C:60) [20:34:01:546]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '2f5c3883cd077f47bd7c05478f637425'.
    MSI (s) (1C:60) [20:34:01:546]: RESTART MANAGER: Session opened.
    MSI (s) (1C:60) [20:34:01:546]: TRANSFORMS property is now:
    MSI (s) (1C:60) [20:34:01:546]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (1C:60) [20:34:01:547]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming
    MSI (s) (1C:60) [20:34:01:548]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Favorites
    MSI (s) (1C:60) [20:34:01:549]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (1C:60) [20:34:01:550]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Documents
    MSI (s) (1C:60) [20:34:01:551]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (1C:60) [20:34:01:551]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (1C:60) [20:34:01:552]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (1C:60) [20:34:01:553]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (1C:60) [20:34:01:553]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (1C:60) [20:34:01:554]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Local
    MSI (s) (1C:60) [20:34:01:554]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Pictures
    MSI (s) (1C:60) [20:34:01:556]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (1C:60) [20:34:01:556]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (1C:60) [20:34:01:557]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (1C:60) [20:34:01:558]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (1C:60) [20:34:01:559]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (1C:60) [20:34:01:560]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (1C:60) [20:34:01:561]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (1C:60) [20:34:01:561]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (1C:60) [20:34:01:562]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (1C:60) [20:34:01:563]: SHELL32::SHGetFolderPath returned: C:\Users\Geoff\Desktop
    MSI (s) (1C:60) [20:34:01:564]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (1C:60) [20:34:01:564]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (1C:60) [20:34:01:564]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (1C:60) [20:34:01:568]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:568]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Geoff'.
    MSI (s) (1C:60) [20:34:01:568]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\Windows\Installer\eb5d7f.msi'.
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\users\geoff\appdata\local\temp\air3103.tmp\setup.msi'.
    MSI (s) (1C:60) [20:34:01:568]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (1C:60) [20:34:01:568]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (1C:60) [20:34:01:568]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (1C:60) [20:34:01:568]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:01:568]: Machine policy value 'DisableRollback' is 0
    MSI (s) (1C:60) [20:34:01:568]: User policy value 'DisableRollback' is 0
    MSI (s) (1C:60) [20:34:01:568]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 18/08/2013  20:34:01 ===
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2205 2:  3: LaunchCondition
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2228 2:  3: LaunchCondition 4: SELECT `Condition` FROM `LaunchCondition`
    MSI (s) (1C:60) [20:34:01:569]: APPCOMPAT: [DetectVersionLaunchCondition] Failed to initialize pRecErr.
    MSI (s) (1C:60) [20:34:01:569]: PROPERTY CHANGE: Adding SHIMFLAGS property. Its value is '512'.
    MSI (s) (1C:60) [20:34:01:569]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (1C:60) [20:34:01:569]: Doing action: INSTALL
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2205 2:  3: ActionText
    Action start 20:34:01: INSTALL.
    MSI (s) (1C:60) [20:34:01:569]: Running ExecuteSequence
    MSI (s) (1C:60) [20:34:01:569]: Doing action: FindRelatedProducts
    MSI (s) (1C:60) [20:34:01:569]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:01:570]: FindRelatedProducts: could not read ASSIGNMENTTYPE info for product '{A0087DDE-69D0-11E2-AD57-43CA6188709B}'.  Skipping...
    Action start 20:34:01: FindRelatedProducts.
    MSI (s) (1C:60) [20:34:01:570]: Doing action: ValidateProductID
    MSI (s) (1C:60) [20:34:01:570]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: FindRelatedProducts. Return value 1.
    Action start 20:34:01: ValidateProductID.
    MSI (s) (1C:60) [20:34:01:570]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (1C:60) [20:34:01:570]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: ValidateProductID. Return value 1.
    MSI (s) (1C:60) [20:34:01:571]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetSHAREDADDINFOLDER'
    MSI (s) (1C:60) [20:34:01:571]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 20:34:01: SetSHAREDADDINFOLDER.
    MSI (s) (1C:60) [20:34:01:571]: Doing action: CostInitialize
    MSI (s) (1C:60) [20:34:01:571]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (1C:60) [20:34:01:571]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (1C:60) [20:34:01:571]: Baseline: Sorting baselines for {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}.
    MSI (s) (1C:60) [20:34:01:571]: Baseline: New baseline 3.8.0 from transaction.
    MSI (s) (1C:60) [20:34:01:571]: Baseline: Sorted order Native: Order 0.
    MSI (s) (1C:60) [20:34:01:571]: Baseline Data Table:
    MSI (s) (1C:60) [20:34:01:571]: ProductCode: {0A5B39D2-7ED6-4779-BCC9-37F381139DB3} Version: 3.8.0 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (1C:60) [20:34:01:571]: Baseline File Table:
    MSI (s) (1C:60) [20:34:01:572]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'c:\'.
    MSI (s) (1C:60) [20:34:01:573]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (1C:60) [20:34:01:573]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: Patch
    Action start 20:34:01: CostInitialize.
    MSI (s) (1C:60) [20:34:01:573]: Doing action: FileCost
    MSI (s) (1C:60) [20:34:01:573]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: CostInitialize. Return value 1.
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: TypeLib
    Action start 20:34:01: FileCost.
    MSI (s) (1C:60) [20:34:01:574]: Doing action: CostFinalize
    MSI (s) (1C:60) [20:34:01:574]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: FileCost. Return value 1.
    MSI (s) (1C:60) [20:34:01:574]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (1C:60) [20:34:01:575]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:60) [20:34:01:575]: Note: 1: 2205 2:  3: Condition
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'c:\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\Windows\'. Its new value: 'c:\Windows\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'. Its new value: 'c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Modifying CommonFilesFolder property. Its current value is 'C:\Program Files (x86)\Common Files\'. Its new value: 'c:\Program Files (x86)\Common Files\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding WebKitLic property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit\'.
    MSI (s) (1C:60) [20:34:01:575]: Target path resolution complete. Dumping Directory table...
    MSI (s) (1C:60) [20:34:01:575]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: TARGETDIR , Object: c:\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: WindowsFolder , Object: c:\Windows\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: SHAREDADDINFOLDER , Object: c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: CommonFilesFolder , Object: c:\Program Files (x86)\Common Files\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: AIR , Object: c:\Program Files (x86)\Common Files\Adobe AIR\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: Versions , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: Version , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: Resources , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (1C:60) [20:34:01:575]: Dir (target): Key: WebKitLic , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit\
    MSI (s) (1C:60) [20:34:01:575]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (1C:60) [20:34:01:575]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (1C:60) [20:34:01:576]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ?
    Action start 20:34:01: CostFinalize.
    MSI (s) (1C:60) [20:34:01:576]: Doing action: MigrateFeatureStates
    MSI (s) (1C:60) [20:34:01:576]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: CostFinalize. Return value 1.
    Action start 20:34:01: MigrateFeatureStates.
    MSI (s) (1C:60) [20:34:01:577]: Doing action: InstallValidate
    MSI (s) (1C:60) [20:34:01:577]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: MigrateFeatureStates. Return value 0.
    MSI (s) (1C:60) [20:34:01:577]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '2f5c3883cd077f47bd7c05478f637425'.
    MSI (s) (1C:60) [20:34:01:577]: Note: 1: 2205 2:  3: Dialog
    MSI (s) (1C:60) [20:34:01:577]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:60) [20:34:01:577]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:60) [20:34:01:577]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: Sentinel; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: AppInstaller; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: WebKit; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: WebKitLicenses; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: FlashPlugin; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: Setup; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: RootCertificate; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: TimestampingRootCertificate; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: AIRAppInstaller; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRMADOBECPVoucher; Installed: Absent;   Request: Local;   Action: Null;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRM; Installed: Absent;   Request: Local;   Action: Null;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRM15; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: DRMAIRVoucher; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (1C:60) [20:34:01:577]: Component: __WebKitLicenses65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Component: __AIRAppInstaller65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Component: __FileTypeRegistration65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Component: __ARPRegistration65; Installed: Null;   Request: Local;   Action: Local;   Client State: Null
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Font
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: TypeLib
    Action start 20:34:01: InstallValidate.
    MSI (s) (1C:60) [20:34:01:578]: Note: 1: 2205 2:  3: _RemoveFilePath
    MSI (s) (1C:60) [20:34:01:585]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Font
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2205 2:  3: TypeLib
    MSI (s) (1C:60) [20:34:01:585]: Note: 1: 2727 2: 
    MSI (s) (1C:60) [20:34:01:586]: Note: 1: 2205 2:  3: FilesInUse
    MSI (s) (1C:60) [20:34:01:593]: Note: 1: 2727 2: 
    MSI (s) (1C:60) [20:34:01:593]: Doing action: SetARPINSTALLLOCATION
    MSI (s) (1C:60) [20:34:01:593]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: InstallValidate. Return value 1.
    MSI (s) (1C:60) [20:34:01:594]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetARPINSTALLLOCATION'
    MSI (s) (1C:60) [20:34:01:594]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    Action start 20:34:01: SetARPINSTALLLOCATION.
    MSI (s) (1C:60) [20:34:01:594]: Doing action: InstallInitialize
    MSI (s) (1C:60) [20:34:01:594]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:01: SetARPINSTALLLOCATION. Return value 1.
    MSI (s) (1C:60) [20:34:01:594]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:595]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:60) [20:34:01:596]: BeginTransaction: Locking Server
    MSI (s) (1C:60) [20:34:01:596]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (1C:60) [20:34:01:596]: Server not locked: locking for product {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}
    Action start 20:34:01: InstallInitialize.
    MSI (s) (1C:60) [20:34:02:131]: Doing action: ProcessComponents
    MSI (s) (1C:60) [20:34:02:131]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: InstallInitialize. Return value 1.
    MSI (s) (1C:60) [20:34:02:133]: Note: 1: 2205 2:  3: MsiPatchCertificate
    MSI (s) (1C:60) [20:34:02:133]: LUA patching is disabled: missing MsiPatchCertificate table
    MSI (s) (1C:60) [20:34:02:133]: Resolving source.
    MSI (s) (1C:60) [20:34:02:133]: Resolving source to launched-from source.
    MSI (s) (1C:60) [20:34:02:133]: Setting launched-from source as last-used.
    MSI (s) (1C:60) [20:34:02:133]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'c:\users\geoff\appdata\local\temp\air3103.tmp\'.
    MSI (s) (1C:60) [20:34:02:133]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'c:\users\geoff\appdata\local\temp\air3103.tmp\'.
    MSI (s) (1C:60) [20:34:02:133]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{0A5B39D2-7ED6-4779-BCC9-37F381139DB3}'.
    MSI (s) (1C:60) [20:34:02:133]: SOURCEDIR ==> c:\users\geoff\appdata\local\temp\air3103.tmp\
    MSI (s) (1C:60) [20:34:02:133]: SOURCEDIR product ==> {0A5B39D2-7ED6-4779-BCC9-37F381139DB3}
    MSI (s) (1C:60) [20:34:02:133]: Determining source type
    MSI (s) (1C:60) [20:34:02:133]: Source type from package 'setup.msi': 0
    Action start 20:34:02: ProcessComponents.
    MSI (s) (1C:60) [20:34:02:134]: Source path resolution complete. Dumping Directory table...
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: TARGETDIR , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: WindowsFolder , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: SHAREDADDINFOLDER , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: CommonFilesFolder , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: AIR , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\ , LongSubPath: Adobe AIR\ , ShortSubPath: AIR\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: Versions , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\ , LongSubPath: Adobe AIR\Versions\ , ShortSubPath: AIR\Versions\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: Version , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\1.0\ , LongSubPath: Adobe AIR\Versions\1.0\ , ShortSubPath: AIR\Versions\Version\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: Resources , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\1.0\Resources\ , LongSubPath: Adobe AIR\Versions\1.0\Resources\ , ShortSubPath: AIR\Versions\Version\R\
    MSI (s) (1C:60) [20:34:02:134]: Dir (source): Key: WebKitLic , Object: c:\users\geoff\appdata\local\temp\air3103.tmp\Adobe AIR\Versions\1.0\Resources\WebKit\ , LongSubPath: Adobe AIR\Versions\1.0\Resources\WebKit\ , ShortSubPath: AIR\Versions\Version\R\R2\
    MSI (s) (1C:60) [20:34:02:134]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:02:135]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:02:136]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:60) [20:34:02:142]: Doing action: UnpublishFeatures
    MSI (s) (1C:60) [20:34:02:142]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: ProcessComponents. Return value 1.
    Action start 20:34:02: UnpublishFeatures.
    MSI (s) (1C:60) [20:34:02:143]: Doing action: RemoveRegistryValues
    MSI (s) (1C:60) [20:34:02:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: UnpublishFeatures. Return value 1.
    Action start 20:34:02: RemoveRegistryValues.
    MSI (s) (1C:60) [20:34:02:144]: Doing action: RemoveDuplicateFiles
    MSI (s) (1C:60) [20:34:02:144]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RemoveRegistryValues. Return value 1.
    Action start 20:34:02: RemoveDuplicateFiles.
    MSI (s) (1C:60) [20:34:02:145]: Doing action: RemoveFiles
    MSI (s) (1C:60) [20:34:02:145]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RemoveDuplicateFiles. Return value 1.
    MSI (s) (1C:60) [20:34:02:145]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (1C:60) [20:34:02:145]: Note: 1: 2205 2:  3: RemoveFile
    Action start 20:34:02: RemoveFiles.
    MSI (s) (1C:60) [20:34:02:146]: Doing action: InstallFiles
    MSI (s) (1C:60) [20:34:02:146]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RemoveFiles. Return value 0.
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'SentinelFile' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'air.swf' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'template.msi' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'template.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'LGPL.txt' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Notice.txt' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Setup.swf' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'styles.swf' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Adobe.cer' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'Thawte.cer' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'digest.s' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:146]: The file represented by File table key 'adobecp.vch' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'adobecp.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'AdobeAIR.vch' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'AdobeAIR.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'air.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'WebKit.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'NPSWF32.dll' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'Setup.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'airappinstaller.exe' has no eligible binary patches
    MSI (s) (1C:60) [20:34:02:147]: The file represented by File table key 'adobecp15.dll' has no eligible binary patches
    Action start 20:34:02: InstallFiles.
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence`
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:60) [20:34:02:147]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    MSI (s) (1C:60) [20:34:02:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:02:148]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:60) [20:34:02:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:60) [20:34:02:151]: Doing action: DuplicateFiles
    MSI (s) (1C:60) [20:34:02:151]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: InstallFiles. Return value 1.
    Action start 20:34:02: DuplicateFiles.
    MSI (s) (1C:60) [20:34:02:152]: Doing action: WriteRegistryValues
    MSI (s) (1C:60) [20:34:02:152]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: DuplicateFiles. Return value 1.
    Action start 20:34:02: WriteRegistryValues.
    MSI (s) (1C:60) [20:34:02:155]: Doing action: RegisterUser
    MSI (s) (1C:60) [20:34:02:155]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: WriteRegistryValues. Return value 1.
    Action start 20:34:02: RegisterUser.
    MSI (s) (1C:60) [20:34:02:156]: Doing action: RegisterProduct
    MSI (s) (1C:60) [20:34:02:156]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RegisterUser. Return value 1.
    MSI (s) (1C:60) [20:34:02:156]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:156]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    Action start 20:34:02: RegisterProduct.
    MSI (s) (1C:60) [20:34:02:157]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (1C:60) [20:34:02:157]: Doing action: PublishFeatures
    MSI (s) (1C:60) [20:34:02:157]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: RegisterProduct. Return value 1.
    Action start 20:34:02: PublishFeatures.
    MSI (s) (1C:60) [20:34:02:158]: Doing action: PublishProduct
    MSI (s) (1C:60) [20:34:02:158]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: PublishFeatures. Return value 1.
    MSI (s) (1C:60) [20:34:02:159]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:60) [20:34:02:159]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
    Action start 20:34:02: PublishProduct.
    MSI (s) (1C:60) [20:34:02:160]: Doing action: InstallExecute
    MSI (s) (1C:60) [20:34:02:160]: Note: 1: 2205 2:  3: ActionText
    Action ended 20:34:02: PublishProduct. Return value 1.
    MSI (s) (1C:60) [20:34:02:161]: Running Script: C:\Windows\Installer\MSI5FFE.tmp
    MSI (s) (1C:60) [20:34:02:161]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2203 2: c:\Windows\Installer\eb5d82.ipi 3: -2147287035
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2503
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2503
    Action start 20:34:02: InstallExecute.
    DEBUG: Error 2503:  Called RunScript when not marked in progress.
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:161]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
    MSI (s) (1C:60) [20:34:02:161]: Product: Adobe AIR -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2503. The arguments are: , ,
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2503. The arguments are: , ,
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2203 2: c:\Windows\Installer\eb5d82.ipi 3: -2147287035
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2502
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:162]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2502
    Action ended 20:34:02: InstallExecute. Return value 3.
    DEBUG: Error 2502:  Called InstallFinalize when no install in progress.
    MSI (s) (1C:60) [20:34:02:163]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:60) [20:34:02:163]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
    MSI (s) (1C:60) [20:34:02:163]: Product: Adobe AIR -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2502. The arguments are: , ,
    MSI (s) (1C:60) [20:34:02:163]: No System Restore sequence number for this installation.
    MSI (s) (1C:60) [20:34:02:163]: Unlocking Server
    MSI (s) (1C:60) [20:34:02:205]: PROPERTY

  • Adobe air Installing problem

    I downloaded town of salem off steam, when i tried to run it it said i needed to get/update adobe air, so i though thats not too hard, when i procceded to download it and install it a message came up saying "An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator." i searched all over your fourms and one thing kept coming up, download microsoft fix it. So i did, i ran it and uninstalled adobe air from my computer, because i already had a older version. Then following the fourms guidlines i re-downloaded adobe air installer and it still didnt work. Im very much so angry at this so please help me. Here is my logs
    [2014-12-30:20:17:59] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:20:17:59] Commandline is:
    [2014-12-30:20:17:59] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:18:05] Relaunching with elevation
    [2014-12-30:20:18:05] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air810b.tmp\adobe air installer.exe -ei
    [2014-12-30:20:18:05] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:20:18:05] Commandline is: -stdio \\.\pipe\AIR_8448_0 -ei
    [2014-12-30:20:18:05] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:18:05] Starting silent runtime update. Updating runtime from version 1.5.3.9130 to version 15.0.0.356
    [2014-12-30:20:18:05] Installing msi at c:\users\brody\appdata\local\temp\air810b.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:18:08] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:18:08] Rolling back install of c:\users\brody\appdata\local\temp\air810b.tmp\setup.msi
    [2014-12-30:20:18:08] Rollback complete
    [2014-12-30:20:18:08] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:18:08] Runtime Installer end with exit code 7
    [2014-12-30:20:18:18] Runtime Installer end with exit code 7
    [2014-12-30:20:18:27] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:18:27] Commandline is:
    [2014-12-30:20:18:27] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:18:32] Relaunching with elevation
    [2014-12-30:20:18:32] Launching subprocess with commandline c:\users\brody\appdata\local\temp\airf6c6.tmp\adobe air installer.exe -ei
    [2014-12-30:20:18:32] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:18:32] Commandline is: -stdio \\.\pipe\AIR_11028_0 -ei
    [2014-12-30:20:18:32] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:18:32] Starting silent runtime update. Updating runtime from version 1.5.3.9130 to version 15.0.0.356
    [2014-12-30:20:18:32] Installing msi at c:\users\brody\appdata\local\temp\airf6c6.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:18:33] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:18:33] Rolling back install of c:\users\brody\appdata\local\temp\airf6c6.tmp\setup.msi
    [2014-12-30:20:18:33] Rollback complete
    [2014-12-30:20:18:33] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:18:33] Runtime Installer end with exit code 7
    [2014-12-30:20:18:40] Runtime Installer end with exit code 7
    [2014-12-30:20:19:15] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:19:15] Commandline is:
    [2014-12-30:20:19:15] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:19:18] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:19:18] Commandline is:
    [2014-12-30:20:19:18] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:19:21] Runtime Installer end with exit code 6
    [2014-12-30:20:19:26] Relaunching with elevation
    [2014-12-30:20:19:26] Launching subprocess with commandline c:\users\brody\appdata\local\temp\airb498.tmp\adobe air installer.exe -ei
    [2014-12-30:20:19:26] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:19:26] Commandline is: -stdio \\.\pipe\AIR_11420_0 -ei
    [2014-12-30:20:19:26] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:19:26] Starting silent runtime update. Updating runtime from version 1.5.3.9130 to version 15.0.0.356
    [2014-12-30:20:19:26] Installing msi at c:\users\brody\appdata\local\temp\airb498.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:19:27] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:19:27] Rolling back install of c:\users\brody\appdata\local\temp\airb498.tmp\setup.msi
    [2014-12-30:20:19:27] Rollback complete
    [2014-12-30:20:19:27] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:19:27] Runtime Installer end with exit code 7
    [2014-12-30:20:19:48] Runtime Installer end with exit code 7
    [2014-12-30:20:19:56] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:19:56] Commandline is:
    [2014-12-30:20:19:56] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:19:59] Relaunching with elevation
    [2014-12-30:20:19:59] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air524d.tmp\adobe air installer.exe -ei
    [2014-12-30:20:19:59] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:19:59] Commandline is: -stdio \\.\pipe\AIR_916_0 -ei
    [2014-12-30:20:19:59] Installed runtime (1.5.3.9130) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2014-12-30:20:19:59] Starting silent runtime update. Updating runtime from version 1.5.3.9130 to version 15.0.0.356
    [2014-12-30:20:19:59] Installing msi at c:\users\brody\appdata\local\temp\air524d.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:20:00] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:20:00] Rolling back install of c:\users\brody\appdata\local\temp\air524d.tmp\setup.msi
    [2014-12-30:20:20:00] Rollback complete
    [2014-12-30:20:20:00] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:20:00] Runtime Installer end with exit code 7
    [2014-12-30:20:20:07] Runtime Installer end with exit code 7
    [2014-12-30:20:20:39] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:20:39] Commandline is:
    [2014-12-30:20:20:39] No installed runtime detected
    [2014-12-30:20:20:41] Relaunching with elevation
    [2014-12-30:20:20:41] Launching subprocess with commandline c:\users\brody\appdata\local\temp\airfc80.tmp\adobe air installer.exe -ei
    [2014-12-30:20:20:41] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:20:41] Commandline is: -stdio \\.\pipe\AIR_12540_0 -ei
    [2014-12-30:20:20:41] No installed runtime detected
    [2014-12-30:20:20:41] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:20:20:42] Installing msi at c:\users\brody\appdata\local\temp\airfc80.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:20:43] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:20:43] Rolling back install of c:\users\brody\appdata\local\temp\airfc80.tmp\setup.msi
    [2014-12-30:20:20:43] Rollback complete
    [2014-12-30:20:20:43] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:20:43] Runtime Installer end with exit code 7
    [2014-12-30:20:20:49] Runtime Installer end with exit code 7
    [2014-12-30:20:20:53] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:20:53] Commandline is:
    [2014-12-30:20:20:53] No installed runtime detected
    [2014-12-30:20:20:58] Relaunching with elevation
    [2014-12-30:20:20:58] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air33c6.tmp\adobe air installer.exe -ei
    [2014-12-30:20:20:58] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:20:58] Commandline is: -stdio \\.\pipe\AIR_10044_0 -ei
    [2014-12-30:20:20:58] No installed runtime detected
    [2014-12-30:20:20:58] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:20:20:58] Installing msi at c:\users\brody\appdata\local\temp\air33c6.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:20:59] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:20:59] Rolling back install of c:\users\brody\appdata\local\temp\air33c6.tmp\setup.msi
    [2014-12-30:20:20:59] Rollback complete
    [2014-12-30:20:20:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:20:59] Runtime Installer end with exit code 7
    [2014-12-30:20:21:17] Runtime Installer end with exit code 7
    [2014-12-30:20:28:20] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:20:28:20] Commandline is:
    [2014-12-30:20:28:20] No installed runtime detected
    [2014-12-30:20:28:22] Relaunching with elevation
    [2014-12-30:20:28:22] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air344.tmp\adobe air installer.exe -ei
    [2014-12-30:20:28:22] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:20:28:22] Commandline is: -stdio \\.\pipe\AIR_17624_0 -ei
    [2014-12-30:20:28:22] No installed runtime detected
    [2014-12-30:20:28:22] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:20:28:22] Installing msi at c:\users\brody\appdata\local\temp\air344.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:28:23] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:28:23] Rolling back install of c:\users\brody\appdata\local\temp\air344.tmp\setup.msi
    [2014-12-30:20:28:23] Rollback complete
    [2014-12-30:20:28:23] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:28:23] Runtime Installer end with exit code 7
    [2014-12-30:20:28:28] Runtime Installer end with exit code 7
    [2014-12-30:20:28:36] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:28:36] Commandline is:
    [2014-12-30:20:28:36] No installed runtime detected
    [2014-12-30:20:28:38] Relaunching with elevation
    [2014-12-30:20:28:38] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air436f.tmp\adobe air installer.exe -ei
    [2014-12-30:20:28:39] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:20:28:39] Commandline is: -stdio \\.\pipe\AIR_19160_0 -ei
    [2014-12-30:20:28:39] No installed runtime detected
    [2014-12-30:20:28:39] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:20:28:39] Installing msi at c:\users\brody\appdata\local\temp\air436f.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:20:28:39] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:28:39] Rolling back install of c:\users\brody\appdata\local\temp\air436f.tmp\setup.msi
    [2014-12-30:20:28:39] Rollback complete
    [2014-12-30:20:28:39] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:20:28:39] Runtime Installer end with exit code 7
    [2014-12-30:20:28:41] Runtime Installer end with exit code 7
    [2014-12-30:21:01:10] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:21:01:10] Commandline is:
    [2014-12-30:21:01:10] No installed runtime detected
    [2014-12-30:21:01:12] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:21:01:12] Commandline is:
    [2014-12-30:21:01:12] No installed runtime detected
    [2014-12-30:21:01:12] Relaunching with elevation
    [2014-12-30:21:01:12] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air11c6.tmp\adobe air installer.exe -ei
    [2014-12-30:21:01:12] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:21:01:12] Commandline is: -stdio \\.\pipe\AIR_25440_0 -ei
    [2014-12-30:21:01:12] No installed runtime detected
    [2014-12-30:21:01:12] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:21:01:12] Installing msi at c:\users\brody\appdata\local\temp\air11c6.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:21:01:14] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:21:01:14] Rolling back install of c:\users\brody\appdata\local\temp\air11c6.tmp\setup.msi
    [2014-12-30:21:01:14] Rollback complete
    [2014-12-30:21:01:14] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:21:01:14] Runtime Installer end with exit code 7
    [2014-12-30:21:01:14] Runtime Installer end with exit code 6
    [2014-12-30:21:01:16] Runtime Installer end with exit code 7
    [2014-12-30:21:01:57] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:21:01:57] Commandline is:
    [2014-12-30:21:01:57] No installed runtime detected
    [2014-12-30:21:02:04] Relaunching with elevation
    [2014-12-30:21:02:04] Launching subprocess with commandline c:\users\brody\appdata\local\temp\aircb44.tmp\adobe air installer.exe -ei
    [2014-12-30:21:02:04] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:21:02:04] Commandline is: -stdio \\.\pipe\AIR_1920_0 -ei
    [2014-12-30:21:02:04] No installed runtime detected
    [2014-12-30:21:02:04] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:21:02:04] Commandline is:
    [2014-12-30:21:02:04] No installed runtime detected
    [2014-12-30:21:02:04] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:21:02:04] Installing msi at c:\users\brody\appdata\local\temp\aircb44.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:21:02:05] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:21:02:05] Rolling back install of c:\users\brody\appdata\local\temp\aircb44.tmp\setup.msi
    [2014-12-30:21:02:05] Rollback complete
    [2014-12-30:21:02:05] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:21:02:05] Runtime Installer end with exit code 7
    [2014-12-30:21:02:09] Relaunching with elevation
    [2014-12-30:21:02:09] Launching subprocess with commandline c:\users\brody\appdata\local\temp\aire6fe.tmp\adobe air installer.exe -ei
    [2014-12-30:21:02:09] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:21:02:09] Commandline is: -stdio \\.\pipe\AIR_6912_0 -ei
    [2014-12-30:21:02:09] No installed runtime detected
    [2014-12-30:21:02:09] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:21:02:09] Installing msi at c:\users\brody\appdata\local\temp\aire6fe.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:21:02:10] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:21:02:10] Rolling back install of c:\users\brody\appdata\local\temp\aire6fe.tmp\setup.msi
    [2014-12-30:21:02:10] Rollback complete
    [2014-12-30:21:02:10] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:21:02:10] Runtime Installer end with exit code 7
    [2014-12-30:21:02:11] Runtime Installer end with exit code 7
    [2014-12-30:21:02:12] Runtime Installer end with exit code 7
    [2014-12-30:22:14:26] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:22:14:26] Commandline is:
    [2014-12-30:22:14:26] No installed runtime detected
    [2014-12-30:22:14:28] Relaunching with elevation
    [2014-12-30:22:14:28] Launching subprocess with commandline c:\users\brody\appdata\local\temp\airf9e8.tmp\adobe air installer.exe -ei
    [2014-12-30:22:14:28] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-30:22:14:28] Commandline is: -stdio \\.\pipe\AIR_1380_0 -ei
    [2014-12-30:22:14:28] No installed runtime detected
    [2014-12-30:22:14:28] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:22:14:28] Installing msi at c:\users\brody\appdata\local\temp\airf9e8.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:22:14:32] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:22:14:32] Rolling back install of c:\users\brody\appdata\local\temp\airf9e8.tmp\setup.msi
    [2014-12-30:22:14:32] Rollback complete
    [2014-12-30:22:14:32] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:22:14:32] Runtime Installer end with exit code 7
    [2014-12-30:22:14:36] Runtime Installer end with exit code 7
    [2014-12-30:22:14:45] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:22:14:45] Commandline is:
    [2014-12-30:22:14:45] No installed runtime detected
    [2014-12-30:22:14:48] Relaunching with elevation
    [2014-12-30:22:14:48] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air4347.tmp\adobe air installer.exe -ei
    [2014-12-30:22:14:48] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:22:14:48] Commandline is: -stdio \\.\pipe\AIR_3328_0 -ei
    [2014-12-30:22:14:48] No installed runtime detected
    [2014-12-30:22:14:48] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:22:14:49] Installing msi at c:\users\brody\appdata\local\temp\air4347.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:22:14:50] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:22:14:50] Rolling back install of c:\users\brody\appdata\local\temp\air4347.tmp\setup.msi
    [2014-12-30:22:14:50] Rollback complete
    [2014-12-30:22:14:50] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:22:14:50] Runtime Installer end with exit code 7
    [2014-12-30:22:14:51] Runtime Installer end with exit code 7
    [2014-12-30:22:25:48] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:22:25:48] Commandline is:
    [2014-12-30:22:25:48] No installed runtime detected
    [2014-12-30:22:25:52] Relaunching with elevation
    [2014-12-30:22:25:52] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air68d0.tmp\adobe air installer.exe -ei
    [2014-12-30:22:25:52] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-30:22:25:52] Commandline is: -stdio \\.\pipe\AIR_6048_0 -ei
    [2014-12-30:22:25:52] No installed runtime detected
    [2014-12-30:22:25:52] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-30:22:25:52] Installing msi at c:\users\brody\appdata\local\temp\air68d0.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-30:22:25:53] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:22:25:53] Rolling back install of c:\users\brody\appdata\local\temp\air68d0.tmp\setup.msi
    [2014-12-30:22:25:53] Rollback complete
    [2014-12-30:22:25:53] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-30:22:25:53] Runtime Installer end with exit code 7
    [2014-12-30:22:25:55] Runtime Installer end with exit code 7
    [2014-12-31:10:31:13] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-31:10:31:13] Commandline is:
    [2014-12-31:10:31:13] No installed runtime detected
    [2014-12-31:10:31:15] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-31:10:31:15] Commandline is:
    [2014-12-31:10:31:15] No installed runtime detected
    [2014-12-31:10:31:19] Runtime Installer end with exit code 6
    [2014-12-31:10:31:20] Relaunching with elevation
    [2014-12-31:10:31:20] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air8bc9.tmp\adobe air installer.exe -ei
    [2014-12-31:10:31:20] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-31:10:31:20] Commandline is: -stdio \\.\pipe\AIR_26988_0 -ei
    [2014-12-31:10:31:20] No installed runtime detected
    [2014-12-31:10:31:20] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-31:10:31:20] Installing msi at c:\users\brody\appdata\local\temp\air8bc9.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-31:10:31:21] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:10:31:21] Rolling back install of c:\users\brody\appdata\local\temp\air8bc9.tmp\setup.msi
    [2014-12-31:10:31:21] Rollback complete
    [2014-12-31:10:31:21] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:10:31:21] Runtime Installer end with exit code 7
    [2014-12-31:10:31:25] Runtime Installer end with exit code 7
    [2014-12-31:10:31:27] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-31:10:31:27] Commandline is:
    [2014-12-31:10:31:27] No installed runtime detected
    [2014-12-31:10:31:30] Relaunching with elevation
    [2014-12-31:10:31:30] Launching subprocess with commandline c:\users\brody\appdata\local\temp\airbff2.tmp\adobe air installer.exe -ei
    [2014-12-31:10:31:30] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-31:10:31:30] Commandline is: -stdio \\.\pipe\AIR_25396_0 -ei
    [2014-12-31:10:31:30] No installed runtime detected
    [2014-12-31:10:31:30] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-31:10:31:30] Installing msi at c:\users\brody\appdata\local\temp\airbff2.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-31:10:31:31] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:10:31:31] Rolling back install of c:\users\brody\appdata\local\temp\airbff2.tmp\setup.msi
    [2014-12-31:10:31:31] Rollback complete
    [2014-12-31:10:31:31] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:10:31:31] Runtime Installer end with exit code 7
    [2014-12-31:10:31:33] Runtime Installer end with exit code 7
    [2014-12-31:10:37:56] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-31:10:37:56] Commandline is:
    [2014-12-31:10:37:56] No installed runtime detected
    [2014-12-31:10:40:40] Relaunching with elevation
    [2014-12-31:10:40:40] Launching subprocess with commandline c:\users\brody\appdata\local\temp\airaec3.tmp\adobe air installer.exe -ei
    [2014-12-31:10:40:40] Runtime Installer begin with version 15.0.0.356 on Windows 7 x86
    [2014-12-31:10:40:40] Commandline is: -stdio \\.\pipe\AIR_32056_0 -ei
    [2014-12-31:10:40:40] No installed runtime detected
    [2014-12-31:10:40:40] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-31:10:40:40] Installing msi at c:\users\brody\appdata\local\temp\airaec3.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-31:10:40:41] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:10:40:41] Rolling back install of c:\users\brody\appdata\local\temp\airaec3.tmp\setup.msi
    [2014-12-31:10:40:41] Rollback complete
    [2014-12-31:10:40:41] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:10:40:41] Runtime Installer end with exit code 7
    [2014-12-31:10:40:45] Runtime Installer end with exit code 7
    [2014-12-31:14:31:51] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-31:14:31:51] Commandline is:
    [2014-12-31:14:31:51] No installed runtime detected
    [2014-12-31:14:31:54] Relaunching with elevation
    [2014-12-31:14:31:54] Launching subprocess with commandline c:\users\brody\appdata\local\temp\aird9be.tmp\adobe air installer.exe -ei
    [2014-12-31:14:31:54] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-31:14:31:54] Commandline is: -stdio \\.\pipe\AIR_23740_0 -ei
    [2014-12-31:14:31:54] No installed runtime detected
    [2014-12-31:14:31:54] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-31:14:31:55] Installing msi at c:\users\brody\appdata\local\temp\aird9be.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-31:14:31:55] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:14:31:55] Rolling back install of c:\users\brody\appdata\local\temp\aird9be.tmp\setup.msi
    [2014-12-31:14:31:55] Rollback complete
    [2014-12-31:14:31:55] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:14:31:55] Runtime Installer end with exit code 7
    [2014-12-31:15:04:55] Runtime Installer end with exit code 7
    [2014-12-31:22:01:34] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-31:22:01:34] Commandline is:
    [2014-12-31:22:01:34] No installed runtime detected
    [2014-12-31:22:01:36] Relaunching with elevation
    [2014-12-31:22:01:36] Launching subprocess with commandline c:\users\brody\appdata\local\temp\air8ffa.tmp\adobe air installer.exe -ei
    [2014-12-31:22:01:36] Runtime Installer begin with version 15.0.0.356 on Windows Vista x86
    [2014-12-31:22:01:36] Commandline is: -stdio \\.\pipe\AIR_5172_0 -ei
    [2014-12-31:22:01:36] No installed runtime detected
    [2014-12-31:22:01:36] Starting silent runtime install. Installing runtime version 15.0.0.356
    [2014-12-31:22:01:37] Installing msi at c:\users\brody\appdata\local\temp\air8ffa.tmp\setup.msi with guid {7BBAEC47-1CC0-4CB8-ADB4-531B78DBD1DD}
    [2014-12-31:22:01:37] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:22:01:37] Rolling back install of c:\users\brody\appdata\local\temp\air8ffa.tmp\setup.msi
    [2014-12-31:22:01:37] Rollback complete
    [2014-12-31:22:01:37] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2014-12-31:22:01:37] Runtime Installer end with exit code 7
    [2014-12-31:22:01:42] Runtime Installer end with exit code 7
    As you can se i have tried alot.

    You want to try this user's suggestion:
    Windows 8.1 control program Adobe Air uninstall fails with "error occurred, contact administrator"

  • Adobe Air Install Error 5100

    Can't seem to get this to install! Here's my Log file....
    [2011-08-04:17:44:38] Runtime Installer begin with version 2.7.0.19530 on Windows Vista x86
    [2011-08-04:17:44:38] Commandline is: -playerVersion=10,3,181,26 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -x1 http://www.jackpotspin.com/BHDownloader/BadgeHelpDownloader.air -- "installed from web"
    [2011-08-04:17:44:38] No installed runtime detected
    [2011-08-04:17:44:38] Invoking Application Installer for combined install
    [2011-08-04:17:44:38] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIR927B.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIR927B.tmp -playerVersion=10,3,181,26 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://www.jackpotspin.com/BHDownloader/BadgeHelpDownloader.air -- "installed from web"
    [2011-08-04:17:44:38] Application Installer begin with version 2.7.0.19530 on Windows Vista x86
    [2011-08-04:17:44:38] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIR927B.tmp -playerVersion=10,3,181,26 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://www.jackpotspin.com/BHDownloader/BadgeHelpDownloader.air -- "installed from web"
    [2011-08-04:17:44:38] No installed runtime detected
    [2011-08-04:17:44:39] Unpackaging http://www.jackpotspin.com/BHDownloader/BadgeHelpDownloader.air to C:\Users\Don\AppData\Local\Temp\flaBC77.tmp
    [2011-08-04:17:44:42] Application signature verified
    [2011-08-04:17:44:42] Unpackaging/validation complete
    [2011-08-04:17:45:05] Cancel request received
    [2011-08-04:17:45:05] Application Installer end with exit code 6
    [2011-08-04:17:45:05] Subprocess app installer failed (6)
    [2011-08-04:17:45:05] Cancel request received
    [2011-08-04:17:45:05] Runtime Installer end with exit code 6
    [2011-12-18:11:46:58] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2011-12-18:11:46:58] No installed runtime detected
    [2011-12-18:11:46:58] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2011-12-18:11:47:03] Download success
    [2011-12-18:11:47:03] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2011-12-18:11:47:03] Download success
    [2011-12-18:11:47:03] Detached signature verified
    [2011-12-18:11:47:03] Begin cert chain validation
    [2011-12-18:11:47:03] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2011-12-18:11:47:03] Download success
    [2011-12-18:11:47:03] Begin crl download from http://crl.adobe.com/cds.crl
    [2011-12-18:11:47:03] Download success
    [2011-12-18:11:47:03] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2011-12-18:11:47:03] Download failure: could not retrieve crl crypt object
    [2011-12-18:11:47:04] Cert chain validation succeeded
    [2011-12-18:11:47:15] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIRA600.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:47:22] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:11:47:22] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIRA600.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:47:22] No installed runtime detected
    [2011-12-18:11:47:22] Invoking Application Installer for combined install
    [2011-12-18:11:47:22] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRF538.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRF538.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRA600.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:47:22] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:11:47:22] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIRF538.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRA600.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:47:22] No installed runtime detected
    [2011-12-18:11:47:24] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIRA600.tmp\Amazon MP3 Uploader
    [2011-12-18:11:47:26] Application signature verified
    [2011-12-18:11:47:26] Unpackaging/validation complete
    [2011-12-18:11:47:44] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRF538.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRF538.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIRA600.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:47:44] Relaunching with elevation
    [2011-12-18:11:47:44] Subprocess Elevated sub-installer failed (-1)
    [2011-12-18:11:47:50] Application Installer end with exit code 7
    [2011-12-18:11:47:50] Subprocess app installer failed (7)
    [2011-12-18:11:47:50] Runtime Installer end with exit code 7
    [2011-12-18:11:47:51] Subprocess Runtime Installer failed (7)
    [2011-12-18:11:47:51] Bootstrapper end with exit code 7
    [2011-12-18:11:48:11] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2011-12-18:11:48:11] No installed runtime detected
    [2011-12-18:11:48:11] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2011-12-18:11:48:27] Download success
    [2011-12-18:11:48:27] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2011-12-18:11:48:27] Download success
    [2011-12-18:11:48:27] Detached signature verified
    [2011-12-18:11:48:27] Begin cert chain validation
    [2011-12-18:11:48:27] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2011-12-18:11:48:27] Download success
    [2011-12-18:11:48:27] Begin crl download from http://crl.adobe.com/cds.crl
    [2011-12-18:11:48:27] Download success
    [2011-12-18:11:48:27] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2011-12-18:11:48:27] Download failure: could not retrieve crl crypt object
    [2011-12-18:11:48:27] Cert chain validation succeeded
    [2011-12-18:11:48:38] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIRC5EF.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:48:44] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:11:48:44] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIRC5EF.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:48:44] No installed runtime detected
    [2011-12-18:11:48:44] Invoking Application Installer for combined install
    [2011-12-18:11:48:44] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIR3978.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIR3978.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRC5EF.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:48:44] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:11:48:44] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIR3978.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRC5EF.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:48:44] No installed runtime detected
    [2011-12-18:11:48:46] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIRC5EF.tmp\Amazon MP3 Uploader
    [2011-12-18:11:48:47] Application signature verified
    [2011-12-18:11:48:47] Unpackaging/validation complete
    [2011-12-18:11:50:17] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIR3978.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIR3978.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIRC5EF.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:50:17] Relaunching with elevation
    [2011-12-18:11:50:18] Subprocess Elevated sub-installer failed (-1)
    [2011-12-18:11:50:22] Application Installer end with exit code 7
    [2011-12-18:11:50:22] Subprocess app installer failed (7)
    [2011-12-18:11:50:22] Runtime Installer end with exit code 7
    [2011-12-18:11:50:23] Subprocess Runtime Installer failed (7)
    [2011-12-18:11:50:23] Bootstrapper end with exit code 7
    [2011-12-18:11:53:38] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2011-12-18:11:53:38] No installed runtime detected
    [2011-12-18:11:53:38] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2011-12-18:11:53:43] Download success
    [2011-12-18:11:53:43] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2011-12-18:11:53:43] Download success
    [2011-12-18:11:53:43] Detached signature verified
    [2011-12-18:11:53:43] Begin cert chain validation
    [2011-12-18:11:53:43] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2011-12-18:11:53:44] Download success
    [2011-12-18:11:53:44] Begin crl download from http://crl.adobe.com/cds.crl
    [2011-12-18:11:53:44] Download success
    [2011-12-18:11:53:44] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2011-12-18:11:53:44] Download failure: could not retrieve crl crypt object
    [2011-12-18:11:53:44] Cert chain validation succeeded
    [2011-12-18:11:53:54] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIRC40B.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:54:01] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:11:54:01] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIRC40B.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:54:01] No installed runtime detected
    [2011-12-18:11:54:01] Invoking Application Installer for combined install
    [2011-12-18:11:54:01] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIREC1.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIREC1.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRC40B.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:54:01] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:11:54:01] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIREC1.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRC40B.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:54:01] No installed runtime detected
    [2011-12-18:11:54:02] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIRC40B.tmp\Amazon MP3 Uploader
    [2011-12-18:11:54:04] Application signature verified
    [2011-12-18:11:54:04] Unpackaging/validation complete
    [2011-12-18:11:54:29] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIREC1.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIREC1.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIRC40B.tmp\Amazon MP3 Uploader"
    [2011-12-18:11:54:29] Relaunching with elevation
    [2011-12-18:11:54:30] Subprocess Elevated sub-installer failed (-1)
    [2011-12-18:11:54:36] Application Installer end with exit code 7
    [2011-12-18:11:54:36] Subprocess app installer failed (7)
    [2011-12-18:11:54:36] Runtime Installer end with exit code 7
    [2011-12-18:11:54:36] Subprocess Runtime Installer failed (7)
    [2011-12-18:11:54:36] Bootstrapper end with exit code 7
    [2011-12-18:14:19:52] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2011-12-18:14:19:52] No installed runtime detected
    [2011-12-18:14:19:52] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2011-12-18:14:19:57] Download success
    [2011-12-18:14:19:57] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2011-12-18:14:19:57] Download success
    [2011-12-18:14:19:57] Detached signature verified
    [2011-12-18:14:19:57] Begin cert chain validation
    [2011-12-18:14:19:57] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2011-12-18:14:19:57] Download success
    [2011-12-18:14:19:57] Begin crl download from http://crl.adobe.com/cds.crl
    [2011-12-18:14:19:57] Download success
    [2011-12-18:14:19:57] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2011-12-18:14:19:57] Download failure: could not retrieve crl crypt object
    [2011-12-18:14:19:57] Cert chain validation succeeded
    [2011-12-18:14:20:09] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIRA6DD.tmp\Amazon MP3 Uploader"
    [2011-12-18:14:20:15] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:14:20:15] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIRA6DD.tmp\Amazon MP3 Uploader"
    [2011-12-18:14:20:15] No installed runtime detected
    [2011-12-18:14:20:16] Invoking Application Installer for combined install
    [2011-12-18:14:20:16] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRF367.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRF367.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRA6DD.tmp\Amazon MP3 Uploader"
    [2011-12-18:14:20:16] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-18:14:20:16] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIRF367.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRA6DD.tmp\Amazon MP3 Uploader"
    [2011-12-18:14:20:16] No installed runtime detected
    [2011-12-18:14:20:17] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIRA6DD.tmp\Amazon MP3 Uploader
    [2011-12-18:14:20:19] Application signature verified
    [2011-12-18:14:20:19] Unpackaging/validation complete
    [2011-12-18:14:20:25] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRF367.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRF367.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIRA6DD.tmp\Amazon MP3 Uploader"
    [2011-12-18:14:20:25] Relaunching with elevation
    [2011-12-18:14:20:25] Subprocess Elevated sub-installer failed (-1)
    [2011-12-18:14:20:27] Application Installer end with exit code 7
    [2011-12-18:14:20:27] Subprocess app installer failed (7)
    [2011-12-18:14:20:28] Runtime Installer end with exit code 7
    [2011-12-18:14:20:28] Subprocess Runtime Installer failed (7)
    [2011-12-18:14:20:28] Bootstrapper end with exit code 7
    [2011-12-29:06:47:09] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-29:06:47:09] Commandline is:
    [2011-12-29:06:47:09] No installed runtime detected
    [2011-12-29:06:47:13] Relaunching with elevation
    [2011-12-29:06:47:13] Launching subprocess with commandline c:\users\don\appdata\local\temp\airafd0.tmp\adobe air installer.exe -ei
    [2011-12-29:06:47:13] Elevated install failed: returned error code -1
    [2011-12-29:06:47:13] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2011-12-29:06:47:16] Runtime Installer end with exit code 7
    [2012-01-27:05:22:39] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2012-01-27:05:22:39] No installed runtime detected
    [2012-01-27:05:22:39] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2012-01-27:05:22:44] Download success
    [2012-01-27:05:22:44] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2012-01-27:05:22:44] Download success
    [2012-01-27:05:22:45] Detached signature verified
    [2012-01-27:05:22:45] Begin cert chain validation
    [2012-01-27:05:22:45] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-27:05:22:45] Download success
    [2012-01-27:05:22:45] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-27:05:22:45] Download success
    [2012-01-27:05:22:45] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-27:05:22:45] Download failure: could not retrieve crl crypt object
    [2012-01-27:05:22:45] Cert chain validation succeeded
    [2012-01-27:05:22:54] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIR65B7.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:22:59] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:22:59] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIR65B7.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:22:59] No installed runtime detected
    [2012-01-27:05:23:00] Invoking Application Installer for combined install
    [2012-01-27:05:23:00] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRA7D5.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRA7D5.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIR65B7.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:23:00] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:23:00] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIRA7D5.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIR65B7.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:23:00] No installed runtime detected
    [2012-01-27:05:23:01] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIR65B7.tmp\Amazon MP3 Uploader
    [2012-01-27:05:23:03] Application signature verified
    [2012-01-27:05:23:03] Unpackaging/validation complete
    [2012-01-27:05:23:14] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRA7D5.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRA7D5.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIR65B7.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:23:14] Relaunching with elevation
    [2012-01-27:05:23:14] Subprocess Elevated sub-installer failed (-1)
    [2012-01-27:05:23:20] Application Installer end with exit code 7
    [2012-01-27:05:23:20] Subprocess app installer failed (7)
    [2012-01-27:05:23:20] Runtime Installer end with exit code 7
    [2012-01-27:05:23:20] Subprocess Runtime Installer failed (7)
    [2012-01-27:05:23:20] Bootstrapper end with exit code 7
    [2012-01-27:05:23:53] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2012-01-27:05:23:53] No installed runtime detected
    [2012-01-27:05:23:53] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2012-01-27:05:23:55] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2012-01-27:05:23:55] No installed runtime detected
    [2012-01-27:05:23:55] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2012-01-27:05:23:59] Download success
    [2012-01-27:05:23:59] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2012-01-27:05:23:59] Download success
    [2012-01-27:05:23:59] Detached signature verified
    [2012-01-27:05:23:59] Begin cert chain validation
    [2012-01-27:05:23:59] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-27:05:24:00] Download success
    [2012-01-27:05:24:00] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-27:05:24:00] Download success
    [2012-01-27:05:24:00] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-27:05:24:00] Download failure: could not retrieve crl crypt object
    [2012-01-27:05:24:00] Cert chain validation succeeded
    [2012-01-27:05:24:01] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2012-01-27:05:24:01] No installed runtime detected
    [2012-01-27:05:24:01] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2012-01-27:05:24:04] Download success
    [2012-01-27:05:24:04] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2012-01-27:05:24:04] Download success
    [2012-01-27:05:24:04] Detached signature verified
    [2012-01-27:05:24:04] Begin cert chain validation
    [2012-01-27:05:24:04] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-27:05:24:04] Download success
    [2012-01-27:05:24:04] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-27:05:24:04] Download success
    [2012-01-27:05:24:04] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-27:05:24:04] Download failure: could not retrieve crl crypt object
    [2012-01-27:05:24:04] Cert chain validation succeeded
    [2012-01-27:05:24:06] Bootstrapper end with exit code 11
    [2012-01-27:05:24:10] Download success
    [2012-01-27:05:24:10] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2012-01-27:05:24:10] Download success
    [2012-01-27:05:24:10] Detached signature verified
    [2012-01-27:05:24:10] Begin cert chain validation
    [2012-01-27:05:24:10] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-27:05:24:10] Download success
    [2012-01-27:05:24:10] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-27:05:24:10] Download success
    [2012-01-27:05:24:10] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-27:05:24:10] Download failure: could not retrieve crl crypt object
    [2012-01-27:05:24:10] Cert chain validation succeeded
    [2012-01-27:05:24:15] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:24:15] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIR842F.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:24:15] No installed runtime detected
    [2012-01-27:05:24:15] Invoking Application Installer for combined install
    [2012-01-27:05:24:15] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRD0A9.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRD0A9.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIR842F.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:24:16] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:24:16] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIRD0A9.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIR842F.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:24:16] No installed runtime detected
    [2012-01-27:05:24:17] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIR842F.tmp\Amazon MP3 Uploader
    [2012-01-27:05:24:18] Bootstrapper end with exit code 11
    [2012-01-27:05:24:18] Application signature verified
    [2012-01-27:05:24:18] Unpackaging/validation complete
    [2012-01-27:05:24:27] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRD0A9.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRD0A9.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIR842F.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:24:27] Relaunching with elevation
    [2012-01-27:05:24:27] Subprocess Elevated sub-installer failed (-1)
    [2012-01-27:05:24:29] Application Installer end with exit code 7
    [2012-01-27:05:24:29] Subprocess app installer failed (7)
    [2012-01-27:05:24:30] Runtime Installer end with exit code 7
    [2012-01-27:05:24:30] Subprocess Runtime Installer failed (7)
    [2012-01-27:05:24:30] Bootstrapper end with exit code 7
    [2012-01-27:05:26:07] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:26:07] Commandline is:
    [2012-01-27:05:26:07] No installed runtime detected
    [2012-01-27:05:26:11] Relaunching with elevation
    [2012-01-27:05:26:11] Launching subprocess with commandline c:\users\don\appdata\local\temp\air83c2.tmp\adobe air installer.exe -ei
    [2012-01-27:05:26:11] Elevated install failed: returned error code -1
    [2012-01-27:05:26:11] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-27:05:26:17] Runtime Installer end with exit code 7
    [2012-01-27:05:27:23] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2012-01-27:05:27:23] No installed runtime detected
    [2012-01-27:05:27:23] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2012-01-27:05:27:27] Download success
    [2012-01-27:05:27:27] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2012-01-27:05:27:28] Download success
    [2012-01-27:05:27:28] Detached signature verified
    [2012-01-27:05:27:28] Begin cert chain validation
    [2012-01-27:05:27:28] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-27:05:27:28] Download success
    [2012-01-27:05:27:28] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-27:05:27:28] Download success
    [2012-01-27:05:27:28] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-27:05:27:28] Download failure: could not retrieve crl crypt object
    [2012-01-27:05:27:28] Cert chain validation succeeded
    [2012-01-27:05:27:37] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIRBB75.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:27:43] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:27:43] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIRBB75.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:27:43] No installed runtime detected
    [2012-01-27:05:27:43] Invoking Application Installer for combined install
    [2012-01-27:05:27:43] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRFB23.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRFB23.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRBB75.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:27:43] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:27:44] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIRFB23.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIRBB75.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:27:44] No installed runtime detected
    [2012-01-27:05:27:45] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIRBB75.tmp\Amazon MP3 Uploader
    [2012-01-27:05:27:47] Application signature verified
    [2012-01-27:05:27:47] Unpackaging/validation complete
    [2012-01-27:05:27:54] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRFB23.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRFB23.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIRBB75.tmp\Amazon MP3 Uploader"
    [2012-01-27:05:27:54] Relaunching with elevation
    [2012-01-27:05:27:54] Subprocess Elevated sub-installer failed (-1)
    [2012-01-27:05:27:58] Application Installer end with exit code 7
    [2012-01-27:05:27:59] Subprocess app installer failed (7)
    [2012-01-27:05:27:59] Runtime Installer end with exit code 7
    [2012-01-27:05:27:59] Subprocess Runtime Installer failed (7)
    [2012-01-27:05:27:59] Bootstrapper end with exit code 7
    [2012-01-27:05:34:07] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:34:07] Commandline is:
    [2012-01-27:05:34:07] No installed runtime detected
    [2012-01-27:05:34:25] Relaunching with elevation
    [2012-01-27:05:34:25] Launching subprocess with commandline c:\users\don\appdata\local\temp\aird6e1.tmp\adobe air installer.exe -ei
    [2012-01-27:05:34:25] Elevated install failed: returned error code -1
    [2012-01-27:05:34:25] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-27:05:34:30] Runtime Installer end with exit code 7
    [2012-01-27:05:35:19] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:35:19] Commandline is:
    [2012-01-27:05:35:19] No installed runtime detected
    [2012-01-27:05:35:32] Relaunching with elevation
    [2012-01-27:05:35:32] Launching subprocess with commandline c:\users\don\appdata\local\temp\airef22.tmp\adobe air installer.exe -ei
    [2012-01-27:05:35:32] Elevated install failed: returned error code -1
    [2012-01-27:05:35:32] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-27:05:35:36] Runtime Installer end with exit code 7
    [2012-01-27:05:37:29] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:37:29] Commandline is:
    [2012-01-27:05:37:29] No installed runtime detected
    [2012-01-27:05:37:33] Relaunching with elevation
    [2012-01-27:05:37:33] Launching subprocess with commandline c:\users\don\appdata\local\temp\airedbb.tmp\adobe air installer.exe -ei
    [2012-01-27:05:37:33] Elevated install failed: returned error code -1
    [2012-01-27:05:37:33] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-27:05:37:36] Runtime Installer end with exit code 7
    [2012-01-27:05:53:28] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-27:05:53:28] Commandline is:
    [2012-01-27:05:53:28] No installed runtime detected
    [2012-01-27:05:53:34] Relaunching with elevation
    [2012-01-27:05:53:34] Launching subprocess with commandline c:\users\don\appdata\local\temp\air3fcd.tmp\adobe air installer.exe -ei
    [2012-01-27:05:53:34] Elevated install failed: returned error code -1
    [2012-01-27:05:53:34] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-27:05:53:37] Runtime Installer end with exit code 7

    Here's my Current Log! Thanks for any help!
    [2012-01-30:14:20:07] Bootstrapper begin with version 2.7.1.19610 on Win x86
    [2012-01-30:14:20:07] No installed runtime detected
    [2012-01-30:14:20:07] Begin runtime download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer
    [2012-01-30:14:20:13] Download success
    [2012-01-30:14:20:13] Begin signature download from http://airdownload.adobe.com/air/3/nai/windows6.0/x86/installer.p7
    [2012-01-30:14:20:13] Download success
    [2012-01-30:14:20:13] Detached signature verified
    [2012-01-30:14:20:13] Begin cert chain validation
    [2012-01-30:14:20:13] Begin crl download from http://crl.adobe.com/prodSvce.crl
    [2012-01-30:14:20:13] Download success
    [2012-01-30:14:20:13] Begin crl download from http://crl.adobe.com/cds.crl
    [2012-01-30:14:20:13] Download success
    [2012-01-30:14:20:13] Begin crl download from ldap:///CN=CRL1, CN=Adobe Root CA, OU=Adobe Trust Services, O=Adobe Systems Incorporated, C=US?certificateRevocationList;binary,authorityRevocationList;binary,deltaRevocationList; binary
    [2012-01-30:14:20:13] Download failure: could not retrieve crl crypt object
    [2012-01-30:14:20:13] Cert chain validation succeeded
    [2012-01-30:14:20:22] Launching subprocess with commandline "C:\Users\Don\AppData\Local\Temp\AIRRuntimeInstaller.exe" -x1 "C:\Users\Don\AppData\Local\Temp\AIR5ED7.tmp\Amazon MP3 Uploader"
    [2012-01-30:14:20:28] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-30:14:20:28] Commandline is: -x1 "C:\Users\Don\AppData\Local\Temp\AIR5ED7.tmp\Amazon MP3 Uploader"
    [2012-01-30:14:20:28] No installed runtime detected
    [2012-01-30:14:20:28] Invoking Application Installer for combined install
    [2012-01-30:14:20:28] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRA49D.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRA49D.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIR5ED7.tmp\Amazon MP3 Uploader"
    [2012-01-30:14:20:28] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-30:14:20:28] Commandline is: -runtime C:\Users\Don\AppData\Local\Temp\AIRA49D.tmp -withRuntime -url "C:\Users\Don\AppData\Local\Temp\AIR5ED7.tmp\Amazon MP3 Uploader"
    [2012-01-30:14:20:28] No installed runtime detected
    [2012-01-30:14:20:30] Validating app in folder C:\Users\Don\AppData\Local\Temp\AIR5ED7.tmp\Amazon MP3 Uploader
    [2012-01-30:14:20:31] Application signature verified
    [2012-01-30:14:20:31] Unpackaging/validation complete
    [2012-01-30:14:20:39] Launching subprocess with commandline C:\Users\Don\AppData\Local\Temp\AIRA49D.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Don\AppData\Local\Temp\AIRA49D.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files\Amazon\Utilities" -desktopShortcut -programMenu "C:\Users\Don\AppData\Local\Temp\AIR5ED7.tmp\Amazon MP3 Uploader"
    [2012-01-30:14:20:39] Relaunching with elevation
    [2012-01-30:14:20:39] Subprocess Elevated sub-installer failed (-1)
    [2012-01-30:14:20:42] Application Installer end with exit code 7
    [2012-01-30:14:20:43] Subprocess app installer failed (7)
    [2012-01-30:14:20:43] Runtime Installer end with exit code 7
    [2012-01-30:14:20:43] Subprocess Runtime Installer failed (7)
    [2012-01-30:14:20:43] Bootstrapper end with exit code 7
    [2012-01-30:14:23:38] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-30:14:23:38] Commandline is:
    [2012-01-30:14:23:38] No installed runtime detected
    [2012-01-30:14:23:43] Relaunching with elevation
    [2012-01-30:14:23:43] Launching subprocess with commandline c:\users\don\appdata\local\temp\air89ae.tmp\adobe air installer.exe -ei
    [2012-01-30:14:23:43] Elevated install failed: returned error code -1
    [2012-01-30:14:23:43] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-30:14:23:47] Runtime Installer end with exit code 7
    [2012-01-30:14:50:44] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-30:14:50:44] Commandline is:
    [2012-01-30:14:50:44] No installed runtime detected
    [2012-01-30:14:50:48] Relaunching with elevation
    [2012-01-30:14:50:48] Launching subprocess with commandline c:\users\don\appdata\local\temp\air58a1.tmp\adobe air installer.exe -ei
    [2012-01-30:14:50:49] Elevated install failed: returned error code -1
    [2012-01-30:14:50:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-30:14:50:49] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-01-30:14:50:49] Commandline is:
    [2012-01-30:14:50:49] No installed runtime detected
    [2012-01-30:14:50:50] Runtime Installer end with exit code 7
    [2012-01-30:14:50:52] Relaunching with elevation
    [2012-01-30:14:50:52] Launching subprocess with commandline c:\users\don\appdata\local\temp\air6a7b.tmp\adobe air installer.exe -ei
    [2012-01-30:14:50:52] Elevated install failed: returned error code -1
    [2012-01-30:14:50:52] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-01-30:14:50:54] Runtime Installer end with exit code 7
    [2012-02-01:04:49:32] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-02-01:04:49:32] Commandline is:
    [2012-02-01:04:49:32] No installed runtime detected
    [2012-02-01:04:49:38] Relaunching with elevation
    [2012-02-01:04:49:38] Launching subprocess with commandline c:\users\don\appdata\local\temp\air8130.tmp\adobe air installer.exe -ei
    [2012-02-01:04:49:39] Elevated install failed: returned error code -1
    [2012-02-01:04:49:39] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-02-01:04:49:50] Runtime Installer end with exit code 7
    [2012-02-01:05:25:35] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-02-01:05:25:35] Commandline is:
    [2012-02-01:05:25:35] No installed runtime detected
    [2012-02-01:05:25:54] Relaunching with elevation
    [2012-02-01:05:25:54] Launching subprocess with commandline c:\users\don\appdata\local\temp\air89d8.tmp\adobe air installer.exe -ei
    [2012-02-01:05:25:54] Elevated install failed: returned error code -1
    [2012-02-01:05:25:54] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-02-01:05:25:57] Runtime Installer end with exit code 7
    [2012-02-01:05:43:43] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-02-01:05:43:43] Commandline is:
    [2012-02-01:05:43:43] No installed runtime detected
    [2012-02-01:05:43:50] Relaunching with elevation
    [2012-02-01:05:43:50] Launching subprocess with commandline c:\users\don\appdata\local\temp\airaf90.tmp\adobe air installer.exe -ei
    [2012-02-01:05:43:52] Elevated install failed: returned error code -1
    [2012-02-01:05:43:52] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-02-01:05:43:58] Runtime Installer end with exit code 7
    [2012-02-01:05:44:13] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2012-02-01:05:44:13] Commandline is:
    [2012-02-01:05:44:13] No installed runtime detected
    [2012-02-01:05:44:17] Relaunching with elevation
    [2012-02-01:05:44:17] Launching subprocess with commandline c:\users\don\appdata\local\temp\air2f49.tmp\adobe air installer.exe -ei
    [2012-02-01:05:44:18] Elevated install failed: returned error code -1
    [2012-02-01:05:44:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-02-01:05:44:20] Runtime Installer end with exit code 7

  • Adobe air install crashes

    So today I simple installed the installer( yeah that makes
    sense) and whenever i launch it, I get an error box with nothin in
    it but a yellow exclamtion and an "ok".
    On the task bar it says "J2GPfcW"
    Im trying to a run a game emulator GGPO which requires Adobe
    air.
    Because it edits the regs i cant install it on another
    computer and transfer it over.
    I use PC/windows XP Pro by the way.

    Yep, I tried installing Adobe Air on 10.7.2 multiple times. Console shows the installer crashing (below).
    Go to System Preferences > Energy Saver and uncheck "Automatic graphics switching" and it the install now works.
    It's just Adobe trying to get back at Apple - happens all the time.
    Process:         Adobe AIR Installer [4493]
    Path:            /var/folders/*/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Identifier:      com.adobe.air.Installer
    Version:         3.0 (3.0.0.4080)
    Code Type:       X86 (Native)
    Parent Process:  updater [4491]
    Date/Time:       2011-11-08 07:21:14.844 -0700
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000e0000020
    VM Regions Near 0xe0000020:
        CG shared images       00000000c6496000-00000000c649e000 [   32K] r--/r-- SM=SHM 
    -->
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    objc_msgSend() selector name: backingScaleFactor
    objc[4493]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread

Maybe you are looking for

  • Should I use Process/Mapper or Pure Java Code for XI Adapter?

    Hi Friends, I'm developing a XI Adapter which including sending http request and also data transform, I prefer to implement all the functions by Java Code. But In NetWeaver XI Server, I find there are tools for creating process and mappers, they also

  • My iPod touch front camera extremely blurry, can't focus??

    My iPod touch's camera cannot focus, it takes extremely blurry pictures. I just noticed it does take very clear close-up photos, they almost look magnified. This seems like a hardware problem, because there is nothing visibly wrong with the camera or

  • DBConsole service can't start

    when I start DBConsole , its giving the following error (Window based services). ?Windows could not start the OracleDBConsolertlg on local computer. For more information, please review the system event log. If this is a non-Microsoft service, contact

  • Mail-In Repair Question

    ok...so Ive decided to send in my Macbook for a simple repair before my warranty expires. Its a pretty common issue it seems. My left command key got popped off by my nephew, after sticking it back on it works 90 percent of the time, but will come ba

  • Inability to accept avi files in Version 9.

    I run Version 9 of Premiere Elements.  My camera records in avi.  Elements does not import so that I can make one movie from 12 ndividual files.