Undocumented change in AIR 2.5.0

Hi,
I wonder if anybody else noticed change in AIR 2.5.0 wich is connected to mouseX/mouseY property on DisplayObject. In older versions (AIR 2.0.4 and older) mousex/mouseY returned different values after clicking on e.g. Image object then in newer AIR versions.
As the prove that something changed you could try Adobe example from their live documentation : User Interfaces / Using Drag and Drop / Drag and drop examples. Try the first example (which works with mouseX/mouseY property) and run it as AIR application (with WindowedAplpication tag - with Application tag it works just fine). It didn't work with my old AIR 1.5.1 but it did work with AIR 2.5.0.
Thanks for any comments.
//pyso

There is a specific AIR 2.0beta forum:
http://forums.adobe.com/community/labs/air2
Many people are answering questions there.
You might get faster help over there.
-ted

Similar Messages

  • Can I use my iPad2 to change Ipad Air?

    Can I use my iPad2 to change Ipad Air?

    I think you are asking if you can exchange your iPad 2 for the new version.  the answer is no--Apple does not do trade-ins.  But you could possibly sell your device by some other means.

  • Changing the air flow in Nexus 5596UP without interuption.

    We have a Nexus 5596UP and we want to change the air flow to the opposite direction.
    I think it is possible to change it without an interruption but have no lab to test it.
    I think when I remove all the fans and change 1 power supply the systems keeps running.
    (don’t know if the Nexus can work with 2 different power supply’s, this is the catch !!!)
    After the new power supply is inserted I will remove the other one (the old one) and push in the new fans.
    Hopefully all within 30 seconds to prevent a shut down or mismatch errors.
    Is this possible?
    Please advise
    Kind regards,
    Remko van Gilst

    Hi Remko,
    The airflow through the other Cisco Nexus 5000 Series switches is from front to back, but you can change the airflow back-to-front
    Note: The Cisco Nexus 5596 has front to back airflow so you must position it with the front facing a cold isle.
    Cisco Nexus 5000 Platform switch with one power supply, removing the power supply causes the switch to shut down. If you are using two power supplies and you remove one of them, the switch can continue to operate.
    The fan module is designed to be removed and replaced while the system is operating without presenting an electrical hazard or damage to the system, if the replacement is performed promptly.
    I hope you will need some down time since you need flipped around physically to align the airflow anyway.
    Please try the below steps,
    Power Supplies replacement:
    Pull one power supply (System operates normally).
    Insert one new power supply (60 second timer will begin).
    Pull the second power supply (60 second timer stops)
    Insert the second new power supply
    Fan replacement:
    Pull one fan (System operates normally with 3 fans – N+1)
    Insert one new fan
    Remove second fan.
    Insert second new fan.
    Remove third fan.
    Insert third new fan.
    Remove fourth fan.
    Insert final new fan.
    Regards,
    http://www.cisco.com/en/US/docs/switches/datacenter/nexus5000/hw/installation/guide/install5500.html#wp1258897
    Regards,
    Aru
    *** Please rate if the post is useful ***

  • Change in air 2.0Beta?

    Yesterday,  I patch the Air 2 Sdk to my sdk (3.2.0). I found that something is change and my code can not run properly.
    1. Lock File
        The xml file used in the project locked and can not save the file.
        When I use a text editor to open the xml file, It said the file is using by other program
    Load File:
                   var fileStream:FileStream = new FileStream();
                   fileStream.open(file, FileMode.READ);
                   this.rawData = XML(fileStream.readUTFBytes(fileStream.bytesAvailable));
                   fileStream.close();
    Save :
                   var fileStream:FileStream = new FileStream();
                   fileStream.open(this.file, FileMode.WRITE);
                   fileStream.writeUTFBytes(ContactData.getInstance().rawData);
                   fileStream.close();
    And it give a Error#0 in the debug box with no message.
    The problem solve after switch back to the original sdk.
    Also, the exported .air file can not be execute
    It say something like the setting of the application is wrong and contact the author
    .airappinstall.log:
    Starting app install of file:///C:/part/to/file.air
    UI SWF load is complete
    UI initialized
    Unpackaging to C:\Users\...\AppData\Local\Temp\fla48A3.tmp
    unpackaging is complete
    application is bound to side-by-side version 1.0
    application is bound to this version of the runtime
    app id ntf.PhoneBook
    pub id DB2112114A7E883717C2D1019E8D4C989D3B3B60.1
    Application located at C:\.....
    AIR file app id and/or pub id don't match
    installed app id null
    installed pub id null
    starting cleanup of temporary files
    application installer exiting
    Descriptor:
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/1.5">
    <!-- Adobe AIR Application Descriptor File Template.
         Specifies parameters for identifying, installing, and launching AIR applications.
         xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/1.5
                   The last segment of the namespace specifies the version
                   of the AIR runtime required for this application to run.
         minimumPatchLevel - The minimum patch level of the AIR runtime required to run
                   the application. Optional.
    -->
         <!-- The application identifier string, unique to this application. Required. -->
         <id>ntf.PhoneBook</id>
         <!-- Used as the filename for the application. Required. -->
         <filename>xxxx</filename>
         <!-- The name that is displayed in the AIR application installer.
              May have multiple values for each language. See samples or xsd schema file. Optional. -->
         <name>xxxx</name>
         <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
         <version>0.1</version>
         <!-- Description, displayed in the AIR application installer.
              May have multiple values for each language. See samples or xsd schema file. Optional. -->
         <description> </description>
         <!-- Copyright information. Optional -->
         <copyright> </copyright>
         <!-- Settings for the application's initial window. Required. -->
         <initialWindow>
              <!-- The main SWF or HTML file of the application. Required. -->
              <!-- Note: In Flex Builder, the SWF reference is set automatically. -->
              <content>[This value will be overwritten by Flex Builder in the output app.xml]</content>
              <!-- The title of the main window. Optional. -->
              <!-- <title></title> -->
              <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
               <systemChrome>none</systemChrome>
              <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
               <transparent>true</transparent>
              <!-- Whether the window is initially visible. Optional. Default false. -->
               <visible>true</visible>
              <!-- Whether the user can minimize the window. Optional. Default true. -->
              <!-- <minimizable></minimizable> -->
              <!-- Whether the user can maximize the window. Optional. Default true. -->
              <!-- <maximizable></maximizable> -->
              <!-- Whether the user can resize the window. Optional. Default true. -->
              <!-- <resizable></resizable> -->
              <!-- The window's initial width. Optional. -->
              <!-- <width></width> -->
              <!-- The window's initial height. Optional. -->
              <!-- <height></height> -->
              <!-- The window's initial x position. Optional. -->
              <!-- <x></x> -->
              <!-- The window's initial y position. Optional. -->
              <!-- <y></y> -->
              <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
              <!-- <minSize></minSize> -->
              <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
              <!-- <maxSize></maxSize> -->
         </initialWindow>
         <!-- The subpath of the standard default installation location to use. Optional. -->
          <installFolder>xxxx</installFolder>
         <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
          <programMenuFolder>xxxx</programMenuFolder>
         <!-- The icon the system uses for the application. For at least one resolution,
               specify the path to a PNG file included in the AIR package. Optional. -->
          <icon>
          <image16x16>images/icons/icon_16.png</image16x16>
             <image32x32>images/icons/icon_32.png</image32x32>
             <image48x48>images/icons/icon_48.png</image48x48>
             <image128x128>images/icons/icon_128.png</image128x128>
         </icon>
         <!-- Whether the application handles the update when a user double-clicks an update version
         of the AIR file (true), or the default AIR application installer handles the update (false).
         Optional. Default false. -->
         <!-- <customUpdateUI></customUpdateUI> -->
         <!-- Whether the application can be launched when the user clicks a link in a web browser.
         Optional. Default false. -->
         <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
         <!-- Listing of file types for which the application can register. Optional. -->
         <!-- <fileTypes> -->
              <!-- Defines one file type. Optional. -->
              <!-- <fileType> -->
                   <!-- The name that the system displays for the registered file type. Required. -->
                   <!-- <name></name> -->
                   <!-- The extension to register. Required. -->
                   <!-- <extension></extension> -->
                   <!-- The description of the file type. Optional. -->
                   <!-- <description></description> -->
                   <!-- The MIME content type. -->
                   <!-- <contentType></contentType> -->
                   <!-- The icon to display for the file type. Optional. -->
                   <!-- <icon>
                        <image16x16></image16x16>
                        <image32x32></image32x32>
                        <image48x48></image48x48>
                        <image128x128></image128x128>
                   </icon> -->
              <!-- </fileType> -->
         <!-- </fileTypes> -->
    </application>

    There is a specific AIR 2.0beta forum:
    http://forums.adobe.com/community/labs/air2
    Many people are answering questions there.
    You might get faster help over there.
    -ted

  • Undocumented change in QT 7.6 for Canon 5D Mark || movies

    From http://prolost.blogspot.com/
    +Apple released Quicktime 7.6 today, which "includes changes that increase reliability, improve compatibility and enhance security." Sweet.+
    +Undocumentedly, it also changes how Quicktime movies made with the Canon 5D Mark II are decoded—for the better.+

    Thanks for posting the link!
    Good news all round then!

  • What changed in AIR 1.5.2

    It appears that AIR 1.5.2 has been released. One of my colleagues was prompted to upgrade the runtime.  I confirmed this by downloading the Windows SDK which contained the 1.5.2 runtime.
    Why have there been no announcements (either in this forum or in the Adobe AIR Team Blog)?
    Why doesn't Adobe pre-release new versions to developers for testing before they roll out a new version to the general public?
    WHAT HAS CHANGED?  SHOW ME THE CHANGE NOTES!
    We want to know about bug fixes, new features and possibly breaking changes!

    The release notes for AIR 1.5.2 are available here:
    http://www.adobe.com/support/documentation/en/air/1_5_2/releasenotes_developers.html
    Rob
    Adobe AIR Team

  • HT3255 Changing MacBook Air to new model

    I just bought my MacBook Air in April 2013, now in June 2013 Apple have upgraded to a new model which is really unfair.  Can I change it?

    Just do like I do.
    My family budget contains a line item of $2100 for new computer hardware each year.
    As a result, I have bought a new Mac each year for the last 6 years straight. The last three have been Airs.
    Do you think Apple has a loyal sucker, here? Maybe, but I am happie.

  • Changing Macbook Air keyboard?

    Hi,
    i am from germany and a friend has brought me a macbook air from the US. so here is my question. is it possible to let apple change the keyboard to a german one? and how much will it cost? Can i go with my Macbook air in a retail store? is the service maybe free or i only have to pay about 20€ for the new keyboard?
    whould be very nice if i get a anwer.
    sorry for my bad english i hope you understand a little bit

    Apple will not change your keyboard. There are third-party repair services that can do this for you. There is no free lunch, and no one will do the exchange for free. I do not know what the retail cost of a MBA keyboard is, but I'm going to estimate it to be 10 times what you think.

  • Undocumented change of 'blf+sd' behavior between 7.5.3 and 7.5.4 fw

    Imagine button with Extended Function defined like this:
    fnc=blf+sd;ext=*F1234@$PROXY;sub=*D7*1234@$PROXY;vid=1
    according documentation, the button should subscribe to line *D7*1234 to show it's state ('blf' function) and dial the *F1234 when pressed ("sd" function)
    Unfortunatelly, real SPA50XG phone with firmware 7.5.3 or older doesn't work as described. It dial *D7*1234 when pressed ignoring ext= parameter at all.
    It has been fixed in firmware 7.5.4, but such change is not documented in Release Notes.
    Someone may rely on old misbehavior, so be carefull.
    You have been warned.

    Masarakš! It still doesn't work correctly.
    On firmware < 7.5.4 the device ignore ext= at all. It will dial sub= when button pressed.
    On 7.5.4 firmware the device will dial ext= when button pressed, but the notification doesn't work as long as ext= value desn't equal sub= value. Imagine following configuration:
    fnc=blf+sd;ext=*F919@$PROXY;sub=*D7*4403@$PROXY;vid=1
    The device will correctly subscribe:
    SUBSCRIBE sip:*D7*[email protected]:5060 SIP/2.0
    but then it ignore notifications:
    NOTIFY sip:[email protected]:5060 SIP/2.0
    Content-Type: application/dialog-info+xml
    <?xml version="1.0"?>
    confirmed
    Such notifications are silently ignored (including no syslog message, even at highest debug level). Button will blink yellow.

  • Audio to MIDI Groove/Audio to Score - Undocumented Change

    Anyone who uses these functions may have noticed a recent change in behaviour.
    From page 464 of the manual...
    "Creating an Audio to MIDI Groove Template"
    "5 Click on any audio trigger point to prevent it from being transferred to the template.
    Manually selected (unused) points will be dimmed."
    Well... the background of the 'trigger point' area used to be white and totally independent from the region selection process, so although the trigger points themselves are only one pixel wide, it wasn't a problem if you missed one when clicking; you just kept clicking until you got it. The problem now is that the trigger point area is dark and is included as part of the region selection process, so if you miss a trigger point by even one pixel when clicking, the region will become deselected.
    Something else not mentioned in the manual is that holding the Option/Alt key will prevent region deselection when clicking the trigger point background. Be careful not to drag while option-clicking though, as this will move the region boundaries.

    There is the Audio to Score function located in the sample editor->Factory->Audio to score which will convert Audio files into Midi Data, but it mainly works reasonably well with monophonic melodic material and drums/percussive sounds. So don't expect harmonic material/chords to be converted as you might expect.

  • Change desktop air application installer icon

    Hi,
    Im making an application in flashbuilder 4.6, and im exporting it to air desktop. The installer has the default icon, i tried putting the icon for all sizes in the descriptor file, without success:
    <icon>
            <image16x16>assets/16x16-FF.png</image16x16>
            <image32x32>assets/32x32-FF.png</image32x32>
            <image36x36>assets/36x36-FF.png</image36x36>
            <image48x48>assets/48x48-FF.png</image48x48>
            <image57x57>assets/57x57-FF.png</image57x57>
            <image72x72>assets/72x72-FF.png</image72x72>
            <image114x114>assets/114x114-FF.png</image114x114>
            <image128x128>assets/128x128-FF.png</image128x128>
        </icon>
    Any help will be appreciated, thanks

    I had tried the same in my applications.But it didnt work. So I have moved the png files into src folder and given the path in following manner.
    <icon>
            <image16x16>16x16-FF.png</image16x16>
            <image128x128>128x128-FF.png</image128x128>
        </icon>
    Since the app-descriptor file and other application level files are present at application level(src), so I have put the related icons over there and other images in assets folder.You may try this.

  • I want to change Ipad Air wifi to Ipad Air wifi Cellular.

    I have bought Ipad Air wifi but now I want Ipad Air Wifi + Cellular.. could I just go and ask to do it at Reception and Pay Extra money for it...?

    If you purchased it within the past 14 days and you have the original sales receipt, then that is exactly what you would do. Bring it back for a refund, and then purchase the upgraded iPad.
    Cheers,
    GB

  • I am using spouse's old Mac Air - how do I change all ID to me now?

    How do I change Macbook Air using OS X YOSEMITE 10.10.1 to my apple id and not my spouse who has a new apple computer?

    go to preferences --> iCloud : log out from her acoount and log on to yours.
    Message.app preferences: do the same thing
    Facetime app: same

  • 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 installation problem

    I've been trying to update my AIR install from version 1.0.8.4990 to 2.6.0.19140 but when I try to do so I get an error stating that it might not be allowed by the administrator, even though I am the admin.
    I'm running Windows 7 Home Premium SP1 64bit on an Alienware M15x i7 CPU 1.73 GHz 6GB RAM
    AIR installer log:
    [2011-05-06:22:02:09] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-05-06:22:02:09] Commandline is: -silent
    [2011-05-06:22:02:09] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-06:22:02:09] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.5.1.17730
    [2011-05-06:22:02:10] Installing msi at c:\users\nulliu~1\appdata\local\temp\airaa43.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-05-06:22:02:18] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-06:22:02:18] Rolling back install of c:\users\nulliu~1\appdata\local\temp\airaa43.tmp\setup.msi
    [2011-05-06:22:02:18] Rollback complete
    [2011-05-06:22:02:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-06:22:02:18] Runtime Installer end with exit code 7
    [2011-05-07:16:33:32] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-05-07:16:33:32] Commandline is: -silent
    [2011-05-07:16:33:32] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:33:32] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.5.1.17730
    [2011-05-07:16:33:33] Installing msi at c:\users\nulliu~1\appdata\local\temp\aird7fe.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-05-07:16:33:34] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:33:34] Rolling back install of c:\users\nulliu~1\appdata\local\temp\aird7fe.tmp\setup.msi
    [2011-05-07:16:33:34] Rollback complete
    [2011-05-07:16:33:34] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:33:34] Runtime Installer end with exit code 7
    [2011-05-07:16:34:03] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-05-07:16:34:03] Commandline is: -silent
    [2011-05-07:16:34:03] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:34:03] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.5.1.17730
    [2011-05-07:16:34:03] Installing msi at c:\users\nulliu~1\appdata\local\temp\air4df7.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-05-07:16:34:04] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:34:04] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air4df7.tmp\setup.msi
    [2011-05-07:16:34:04] Rollback complete
    [2011-05-07:16:34:04] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:34:04] Runtime Installer end with exit code 7
    [2011-05-07:16:35:51] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:35:51] Commandline is:
    [2011-05-07:16:35:51] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:02] Relaunching with elevation
    [2011-05-07:16:36:02] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\airf31c.tmp\adobe air installer.exe -ei
    [2011-05-07:16:36:04] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:36:04] Commandline is: -stdio \\.\pipe\AIR_6892_0 -ei
    [2011-05-07:16:36:04] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:04] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:16:36:04] Installing msi at c:\users\nulliu~1\appdata\local\temp\airf31c.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:16:36:06] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:06] Rolling back install of c:\users\nulliu~1\appdata\local\temp\airf31c.tmp\setup.msi
    [2011-05-07:16:36:06] Rollback complete
    [2011-05-07:16:36:06] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:06] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:06] Runtime Installer end with exit code 7
    [2011-05-07:16:36:11] Runtime Installer end with exit code 7
    [2011-05-07:16:36:32] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-05-07:16:36:32] Commandline is:
    [2011-05-07:16:36:32] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:38] Relaunching with elevation
    [2011-05-07:16:36:38] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\air8ebe.tmp\adobe air installer.exe -ei
    [2011-05-07:16:36:40] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:36:40] Commandline is: -stdio \\.\pipe\AIR_1944_0 -ei
    [2011-05-07:16:36:40] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:36:40] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:16:36:40] Installing msi at c:\users\nulliu~1\appdata\local\temp\air8ebe.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:16:36:41] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:41] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air8ebe.tmp\setup.msi
    [2011-05-07:16:36:41] Rollback complete
    [2011-05-07:16:36:41] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:41] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:36:41] Runtime Installer end with exit code 7
    [2011-05-07:16:36:43] Runtime Installer end with exit code 7
    [2011-05-07:16:50:10] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-05-07:16:50:10] Commandline is:
    [2011-05-07:16:50:10] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:50:15] Relaunching with elevation
    [2011-05-07:16:50:15] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\air11c3.tmp\adobe air installer.exe -ei
    [2011-05-07:16:50:18] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:16:50:18] Commandline is: -stdio \\.\pipe\AIR_7264_0 -ei
    [2011-05-07:16:50:18] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:16:50:18] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:16:50:18] Installing msi at c:\users\nulliu~1\appdata\local\temp\air11c3.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:16:50:20] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:50:20] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air11c3.tmp\setup.msi
    [2011-05-07:16:50:20] Rollback complete
    [2011-05-07:16:50:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:50:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:16:50:20] Runtime Installer end with exit code 7
    [2011-05-07:16:50:22] Runtime Installer end with exit code 7
    [2011-05-07:17:04:51] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-05-07:17:04:51] Commandline is:
    [2011-05-07:17:04:51] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:17:04:55] Relaunching with elevation
    [2011-05-07:17:04:55] Launching subprocess with commandline c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\adobe air installer.exe -ei
    [2011-05-07:17:04:57] Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    [2011-05-07:17:04:57] Commandline is: -stdio \\.\pipe\AIR_4516_0 -ei
    [2011-05-07:17:04:57] Installed runtime (1.0.8.4990) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-07:17:04:57] Starting silent runtime update. Updating runtime from version 1.0.8.4990 to version 2.6.0.19140
    [2011-05-07:17:04:57] Installing msi at c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-05-07:17:04:59] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:17:04:59] Rolling back install of c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
    [2011-05-07:17:04:59] Rollback complete
    [2011-05-07:17:04:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:17:04:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-05-07:17:04:59] Runtime Installer end with exit code 7
    [2011-05-07:17:05:48] Runtime Installer end with exit code 7
    MSI log:
    === Verbose logging started: 5/7/2011  17:04:57  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\adobe air installer.exe ===
    MSI (c) (24:20) [17:04:57:908]: Resetting cached policy values
    MSI (c) (24:20) [17:04:57:908]: Machine policy value 'Debug' is 0
    MSI (c) (24:20) [17:04:57:908]: ******* RunEngine:
               ******* Product: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (24:20) [17:04:57:908]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (24:20) [17:04:57:908]: Grabbed execution mutex.
    MSI (c) (24:20) [17:04:57:988]: Cloaking enabled.
    MSI (c) (24:20) [17:04:57:988]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (24:20) [17:04:57:993]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (68:44) [17:04:58:003]: Running installation inside multi-package transaction c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
    MSI (s) (68:44) [17:04:58:003]: Grabbed execution mutex.
    MSI (s) (68:B8) [17:04:58:008]: Resetting cached policy values
    MSI (s) (68:B8) [17:04:58:008]: Machine policy value 'Debug' is 0
    MSI (s) (68:B8) [17:04:58:008]: ******* RunEngine:
               ******* Product: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (68:B8) [17:04:58:008]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: User non-assigned for product: 3C0A5E89DE68924439680FBD949E85AE
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: User non-assigned for product: 3C0A5E89DE68924439680FBD949E85AE
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: User non-assigned for product: 68C813D9C4FAF9046ACA1738FFC44F42
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: User non-assigned for product: 68C813D9C4FAF9046ACA1738FFC44F42
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 00004109D60090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 00004109D60090400100000000F01FEC
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 03F1681F9143BD442B1A2C472865893B
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 03F1681F9143BD442B1A2C472865893B
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 0E9201899CF73FC4BA93F631631229A1
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 0E9201899CF73FC4BA93F631631229A1
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 0EF2A18C47539A00EC4DDBAA33C4EBE8
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 0EF2A18C47539A00EC4DDBAA33C4EBE8
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1007C6B46D7C017319E3B52CF3EC196E
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1007C6B46D7C017319E3B52CF3EC196E
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 130592F1397E80343A48553579D7DF31
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 130592F1397E80343A48553579D7DF31
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 16DFDCBFFCD717E4296278B30A501393
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 16DFDCBFFCD717E4296278B30A501393
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 195F8ADCA6CF19E448F7F849D267DE01
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 195F8ADCA6CF19E448F7F849D267DE01
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1C955A13D4E9B324D93D436A5C937825
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1C955A13D4E9B324D93D436A5C937825
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1DCE80E5E89C1174FB56F87D633B9F96
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1DCE80E5E89C1174FB56F87D633B9F96
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 1F764691F11C67F458B88521DA8CB349
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 1F764691F11C67F458B88521DA8CB349
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 2350B7483E55FAA4D8B73E1A7ADC715E
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 249202383B4805C468228B0CAAD28258
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 249202383B4805C468228B0CAAD28258
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 249C00B832E9FB846BED526B3E5A3A4C
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 249C00B832E9FB846BED526B3E5A3A4C
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 26ABA8B10F47DE741BC84A13825E198B
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 26ABA8B10F47DE741BC84A13825E198B
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 33408A8EB2031FF418D5CF8CAE4C28FF
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 33408A8EB2031FF418D5CF8CAE4C28FF
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3CEB74B887CF864284216F68252FFF2E
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3CEB74B887CF864284216F68252FFF2E
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3e43b73803c7c394f8a6b2f0402e19c2
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3e43b73803c7c394f8a6b2f0402e19c2
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3ECDCD77DED23F261845507E5474D270
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3ECDCD77DED23F261845507E5474D270
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 3F0F872B985FE9B920F4473AC2E039D6
    MSI (s) (68:B8) [17:04:58:008]: Using cached product context: machine assigned for product: 3F0F872B985FE9B920F4473AC2E039D6
    MSI (s) (68:B8) [17:04:58:008]: Setting cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 48D53FB2773607F4F99379FC766EF7FF
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 48D53FB2773607F4F99379FC766EF7FF
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 4A94D9E94FD183147BBDD5788A3980E8
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4A94D9E94FD183147BBDD5788A3980E8
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140602FF
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF268140602FF
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 54F83076AC671556892920E52F056CD3
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 54F83076AC671556892920E52F056CD3
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 55565908215A0914C9DA0B003CD6B6B6
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 55565908215A0914C9DA0B003CD6B6B6
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 561F2E879F5EF1A638AC7317915A5839
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 561F2E879F5EF1A638AC7317915A5839
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 57AD0A24A82AEEADFD8D1603DA6F3E55
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 57AD0A24A82AEEADFD8D1603DA6F3E55
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5A537C33EF859C78FBD73FFB0FA2C3C7
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5A537C33EF859C78FBD73FFB0FA2C3C7
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5A5F69ECD485F8F4AAE3B9EA4D31BD27
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5A5F69ECD485F8F4AAE3B9EA4D31BD27
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5C7DDB6FDE989654398164A99A375227
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5C7DDB6FDE989654398164A99A375227
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 5F85FC338D845754386D695F474E8DA3
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 5F85FC338D845754386D695F474E8DA3
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6113A595BB04F0E42A8E7D59D15A2607
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6113A595BB04F0E42A8E7D59D15A2607
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6116D6C8427B0184F8D20D746E7B6DE8
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 623AB863DA37153448DEC3A0A725CC35
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 623AB863DA37153448DEC3A0A725CC35
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 685B8432EA9CEC6439C66AE849622E41
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 685B8432EA9CEC6439C66AE849622E41
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 68AB67CA7DA73301B7449A0400000010
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 68AB67CA7DA73301B7449A0400000010
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 68AB67CA7DA746454382090000000040
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 68AB67CA7DA746454382090000000040
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 691D6C014ED07BC2B5AA96D65D354684
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 691D6C014ED07BC2B5AA96D65D354684
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6E58EC68CABDDFF39B774E7BF9389C90
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6F18CA263DDB0114D963E3E9AA4B9099
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6F18CA263DDB0114D963E3E9AA4B9099
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 6F9E66FF7E38E3A3FA41D89E8A906A4A
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 7292FB95B781FCD62A64AA1392A86AED
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 7292FB95B781FCD62A64AA1392A86AED
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 766F6333940964D4896BC447E3BE5C1B
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 775F634D5961F2D4B844CA679CE90020
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 7BD4C90EC03660F46A13E87A329932FA
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 7F80AB91827CC964A853FBDB6333EB80
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 828D9A99181FA7C4293C4C5AC0BE61D0
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 828D9A99181FA7C4293C4C5AC0BE61D0
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 83A4CE2B545B00A4284131EFE019E5D6
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 83A4CE2B545B00A4284131EFE019E5D6
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 840D7C5E4B9F91243B32B8BD102A65D3
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 840D7C5E4B9F91243B32B8BD102A65D3
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 8456A20EEDF62E04E89D11D9D7E746F1
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 88119C0AF88C68E4396EDCC7A9626694
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 884FD4BEFEAAF6043A14BCA2AA13B509
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 884FD4BEFEAAF6043A14BCA2AA13B509
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 89242C726A04A4B58A5E70F0B402DB3E
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 89242C726A04A4B58A5E70F0B402DB3E
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8994BF104C33134458DE70E9E3FE7ED5
    MSI (s) (68:B8) [17:04:58:013]: Using cached product context: machine assigned for product: 8994BF104C33134458DE70E9E3FE7ED5
    MSI (s) (68:B8) [17:04:58:013]: Setting cached product context: machine assigned for product: 8A3132AB8427AFB1293EE74989D78097
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 8A3132AB8427AFB1293EE74989D78097
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 971105A74725DFA6DD6E2B321648F3C5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 971105A74725DFA6DD6E2B321648F3C5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 9A4666D624338494B9E730E4EF63F6F0
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 9A4666D624338494B9E730E4EF63F6F0
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 9B1A53230CA5AAA3757A23FE29B9D3B0
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 9B1A53230CA5AAA3757A23FE29B9D3B0
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: 9C8928403D4AB094F99FBA20A329833F
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: 9C8928403D4AB094F99FBA20A329833F
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A1DEB581D160FEE3525B905F953FC61D
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A1DEB581D160FEE3525B905F953FC61D
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A2A7011144DA8CB4BA5B8EE836CB7A58
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A2A7011144DA8CB4BA5B8EE836CB7A58
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A3878338869058B3FA7CABEAA036CD05
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A3878338869058B3FA7CABEAA036CD05
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A6C64DD86500CEF47BA082BB611A1FF1
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A80654B854CDB3F429F116DC2AC2A938
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A80654B854CDB3F429F116DC2AC2A938
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A889D6FD0AEE7724AA8B51E880E634B9
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: A97530051D0438AB848FA19B9155ABB8
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: A97530051D0438AB848FA19B9155ABB8
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: AB4C301D509FA7340894BD4267B3EB63
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: AB4C301D509FA7340894BD4267B3EB63
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: ACE1E529364750D6661E85E40538A4F7
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: ACE1E529364750D6661E85E40538A4F7
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: AD0AC5DBDA17AD341BE9E6EEC0A9CDA9
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: AD0AC5DBDA17AD341BE9E6EEC0A9CDA9
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: b25099274a207264182f8181add555d0
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: b25099274a207264182f8181add555d0
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: B418526280CCFE90113F81A35D441AA5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: B418526280CCFE90113F81A35D441AA5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: B6ACDB9A3563B764CA384963D73AFB3E
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: B9802F8A97F16FB43B582A2C0B9B7AD4
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: B9802F8A97F16FB43B582A2C0B9B7AD4
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BAA8E7CC7F038D185776280B6E4E14C8
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BAA8E7CC7F038D185776280B6E4E14C8
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BC3F6BE54F64F1540A82F7D6D8537D0D
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BC3F6BE54F64F1540A82F7D6D8537D0D
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BD002968A7820CD40BB2B27678BFDCC4
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BD002968A7820CD40BB2B27678BFDCC4
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BF137C06159CEC14DA14E8458C956490
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BF137C06159CEC14DA14E8458C956490
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: BFD0E1EA9D3AC154AAF764DF9340004D
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: BFD0E1EA9D3AC154AAF764DF9340004D
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C4B69A87346AF0D4892C8A1EA666969F
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C65D44196E6661AC78673BEFCCF2FFE1
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C65D44196E6661AC78673BEFCCF2FFE1
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C7BCDCEDCC85568419FA26F77989EF84
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: C8CA84773E81BB3459B980F8EA1AF62B
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: C8CA84773E81BB3459B980F8EA1AF62B
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: D0487B17D4BBC904782AE9DF01CBC0D3
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: D0487B17D4BBC904782AE9DF01CBC0D3
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: D20352A90C039D93DBF6126ECE614057
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DB4460A8C7059F6287C86815D79DA441
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DB4460A8C7059F6287C86815D79DA441
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DBD00402BD6E8B54B9B6D17D308381CE
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DBD00402BD6E8B54B9B6D17D308381CE
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DC276626FCFB9A94EAEFBAF0DEB3CFB5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DC276626FCFB9A94EAEFBAF0DEB3CFB5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DEC122ABDE1FED9DEC3AD32879A25568
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DEC122ABDE1FED9DEC3AD32879A25568
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DFC90B5F2B0FFA63D84FD16F6BF37C4B
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: DFDBABC48F94DF74EBD7CEED270725A5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: DFDBABC48F94DF74EBD7CEED270725A5
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: E3C9A781137F267137B14EC5EDEB2176
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: E3C9A781137F267137B14EC5EDEB2176
    MSI (s) (68:B8) [17:04:58:018]: Setting cached product context: machine assigned for product: E5D9D200AB92D6E3B94CD3D7D6CB37C5
    MSI (s) (68:B8) [17:04:58:018]: Using cached product context: machine assigned for product: E5D9D200AB92D6E3B94CD3D7D6CB37C5
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: e611ef0aa8a9f664ea0e26c57b2c703e
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: e611ef0aa8a9f664ea0e26c57b2c703e
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: E97A59ECCF4EFFF4A857920FB449F22F
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: EB940C659E972054EB7A79453A6EF0B9
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: EB940C659E972054EB7A79453A6EF0B9
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: ECD1404F1EF381E4A8E9D96E2513EE63
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: ECD1404F1EF381E4A8E9D96E2513EE63
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: EDEED656CA6FAC745A861A4B3EB47506
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F132F0B0A6ECD384AA32773B467F9571
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F13E2FB2BB8B7A046B05892DE8F0D774
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F13E2FB2BB8B7A046B05892DE8F0D774
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F3E910CC2D956844D8B47818506BA217
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F3E910CC2D956844D8B47818506BA217
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F4E3B286A696ED244AC1C470AE61874B
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: F6BD9287660A04E49821BC7088C702BB
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: F6BD9287660A04E49821BC7088C702BB
    MSI (s) (68:B8) [17:04:58:023]: Setting cached product context: machine assigned for product: FDEF50A6E266FB64A85210E0F3C1C996
    MSI (s) (68:B8) [17:04:58:023]: Using cached product context: machine assigned for product: FDEF50A6E266FB64A85210E0F3C1C996
    MSI (s) (68:B8) [17:04:58:023]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (68:B8) [17:04:58:023]: File will have security applied from OpCode.
    MSI (s) (68:B8) [17:04:58:033]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi' against software restriction policy
    MSI (s) (68:B8) [17:04:58:033]: SOFTWARE RESTRICTION POLICY: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi has a digital signature
    MSI (s) (68:B8) [17:04:58:088]: SOFTWARE RESTRICTION POLICY: c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (68:B8) [17:04:58:088]: End dialog not enabled
    MSI (s) (68:B8) [17:04:58:088]: Original package ==> c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi
    MSI (s) (68:B8) [17:04:58:088]: Package we're running from ==> c:\Windows\Installer\189a635.msi
    MSI (s) (68:B8) [17:04:58:088]: APPCOMPAT: Compatibility mode property overrides found.
    MSI (s) (68:B8) [17:04:58:088]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (68:B8) [17:04:58:088]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (68:B8) [17:04:58:093]: MSCOREE not loaded loading copy from system32
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (68:B8) [17:04:58:098]: User policy value 'TransformsAtSource' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'DisablePatch' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (68:B8) [17:04:58:098]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (68:B8) [17:04:58:098]: 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) (68:B8) [17:04:58:098]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (68:B8) [17:04:58:098]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (68:B8) [17:04:58:098]: Transforms are not secure.
    MSI (s) (68:B8) [17:04:58:098]: Note: 1: 2205 2:  3: Control
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\NULLIU~1\AppData\Local\Temp\MSI9a5a8.LOG'.
    MSI (s) (68:B8) [17:04:58:098]: Command Line: CURRENTDIRECTORY=C:\Users\Nullius Filius\Downloads CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=4644
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{85FFA26D-EE25-43C8-AE73-191F2347856C}'.
    MSI (s) (68:B8) [17:04:58:098]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (68:B8) [17:04:58:098]: Product Code from property table before transforms: '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (68:B8) [17:04:58:098]: Product Code from property table after transforms:  '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (68:B8) [17:04:58:098]: Product not registered: beginning first-time install
    MSI (s) (68:B8) [17:04:58:098]: Product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} is not managed.
    MSI (s) (68:B8) [17:04:58:098]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (68:B8) [17:04:58:098]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (68:B8) [17:04:58:098]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (68:B8) [17:04:58:098]: Adding new sources is allowed.
    MSI (s) (68:B8) [17:04:58:098]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:098]: Package name extracted from package path: 'setup.msi'
    MSI (s) (68:B8) [17:04:58:098]: Package to be registered: 'setup.msi'
    MSI (s) (68:B8) [17:04:58:098]: Note: 1: 2205 2:  3: Error
    MSI (s) (68:B8) [17:04:58:098]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (68:B8) [17:04:58:103]: Machine policy value 'DisableMsi' is 0
    MSI (s) (68:B8) [17:04:58:103]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (68:B8) [17:04:58:103]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (68:B8) [17:04:58:103]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (68:B8) [17:04:58:103]: Running product '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}' with elevated privileges: Product is assigned.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\Nullius Filius\Downloads'.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '4644'.
    MSI (s) (68:B8) [17:04:58:103]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is 'c35c031dda612843bc6997001c000814'.
    MSI (s) (68:B8) [17:04:58:103]: RESTART MANAGER: Session opened.
    MSI (s) (68:B8) [17:04:58:103]: TRANSFORMS property is now:
    MSI (s) (68:B8) [17:04:58:103]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (68:B8) [17:04:58:103]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming
    MSI (s) (68:B8) [17:04:58:103]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Favorites
    MSI (s) (68:B8) [17:04:58:108]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (68:B8) [17:04:58:108]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Documents
    MSI (s) (68:B8) [17:04:58:108]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (68:B8) [17:04:58:113]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Local
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Pictures
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (68:B8) [17:04:58:118]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (68:B8) [17:04:58:123]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (68:B8) [17:04:58:123]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (68:B8) [17:04:58:123]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (68:B8) [17:04:58:128]: SHELL32::SHGetFolderPath returned: C:\Users\Nullius Filius\Desktop
    MSI (s) (68:B8) [17:04:58:133]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (68:B8) [17:04:58:133]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (68:B8) [17:04:58:133]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (68:B8) [17:04:58:138]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Nullius Filius'.
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\Windows\Installer\189a635.msi'.
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\users\nulliu~1\appdata\local\temp\air7e7a.tmp\setup.msi'.
    MSI (s) (68:B8) [17:04:58:138]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (68:B8) [17:04:58:138]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (68:B8) [17:04:58:138]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (68:B8) [17:04:58:138]: Machine policy value 'DisableRollback' is 0
    MSI (s) (68:B8) [17:04:58:138]: User policy value 'DisableRollback' is 0
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 5/7/2011  17:04:58 ===
    MSI (s) (68:B8) [17:04:58:138]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (68:B8) [17:04:58:138]: Doing action: INSTALL
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 2205 2:  3: ActionText
    Action start 17:04:58: INSTALL.
    MSI (s) (68:B8) [17:04:58:138]: Running ExecuteSequence
    MSI (s) (68:B8) [17:04:58:138]: Doing action: FindRelatedProducts
    MSI (s) (68:B8) [17:04:58:138]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (68:B8) [17:04:58:143]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:143]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    MSI (s) (68:B8) [17:04:58:143]: Using cached product context: machine assigned for product: 8663020007180A44EB446B23AFD487F0
    Action start 17:04:58: FindRelatedProducts.
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Adding UC8DA920D5C41C42E0BF3187BA49984EE4 property. Its value is '{00203668-8170-44A0-BE44-B632FA4D780F}'.
    MSI (s) (68:B8) [17:04:58:143]: Doing action: ValidateProductID
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: FindRelatedProducts. Return value 1.
    Action start 17:04:58: ValidateProductID.
    MSI (s) (68:B8) [17:04:58:143]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: ValidateProductID. Return value 1.
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SetSHAREDADDINFOLDER'
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 17:04:58: SetSHAREDADDINFOLDER.
    MSI (s) (68:B8) [17:04:58:143]: Doing action: CostInitialize
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (68:B8) [17:04:58:143]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (68:B8) [17:04:58:143]: Baseline: Sorting baselines for {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}.
    MSI (s) (68:B8) [17:04:58:143]: Baseline: New baseline 2.6.0 from transaction.
    MSI (s) (68:B8) [17:04:58:143]: Baseline: Sorted order Native: Order 0.
    MSI (s) (68:B8) [17:04:58:143]: Baseline Data Table:
    MSI (s) (68:B8) [17:04:58:143]: ProductCode: {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} Version: 2.6.0 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (68:B8) [17:04:58:143]: Baseline File Table:
    MSI (s) (68:B8) [17:04:58:143]: Note: 1: 1336 2: 5 3: Q:\
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'c:\'.
    MSI (s) (68:B8) [17:04:58:143]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Patch
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (68:B8) [17:04:58:148]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Patch
    Action start 17:04:58: CostInitialize.
    MSI (s) (68:B8) [17:04:58:148]: Doing action: FileCost
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: CostInitialize. Return value 1.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Class
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Extension
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: TypeLib
    Action start 17:04:58: FileCost.
    MSI (s) (68:B8) [17:04:58:148]: Doing action: CostFinalize
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: FileCost. Return value 1.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Patch
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: Condition
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'c:\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\Windows\'. Its new value: 'c:\Windows\'.
    MSI (s) (68:B8) [17:04:58:148]: 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) (68:B8) [17:04:58:148]: 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) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (68:B8) [17:04:58:148]: Target path resolution complete. Dumping Directory table...
    MSI (s) (68:B8) [17:04:58:148]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: TARGETDIR , Object: c:\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: WindowsFolder , Object: c:\Windows\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: SHAREDADDINFOLDER , Object: c:\Program Files (x86)\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: CommonFilesFolder , Object: c:\Program Files (x86)\Common Files\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: AIR , Object: c:\Program Files (x86)\Common Files\Adobe AIR\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: Versions , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: Version , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (68:B8) [17:04:58:148]: Dir (target): Key: Resources , Object: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (68:B8) [17:04:58:148]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (68:B8) [17:04:58:148]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (68:B8) [17:04:58:148]: 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 17:04:58: CostFinalize.
    MSI (s) (68:B8) [17:04:58:153]: Doing action: MigrateFeatureStates
    MSI (s) (68:B8) [17:04:58:153]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: CostFinalize. Return value 1.
    Action start 17:04:58: MigrateFeatureStates.
    MSI (s) (68:B8) [17:04:58:158]: Doing action: InstallValidate
    MSI (s) (68:B8) [17:04:58:158]: Note: 1: 2205 2:  3: ActionText
    Action ended 17:04:58: MigrateFeatureStates. Return value 0.
    MSI (s) (68:B8) [17:04:58:158]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is 'c35c031dda612843bc6997001c000814'.
    MSI (s) (68:B8) [17:04:58:158]: Note: 1: 2205 2:  3: Dialog
    MSI (s) (68:B8) [17:04:58:158]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (68:B8) [17:04:58:158]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (68:B8) [17:04:58:158]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local;   Client State: Unknown
    MSI (s) (68:B8) [17:04:58:158]: Component: Sentinel; Install

    Thanks! That tip worked perfectly!
    AIR installed without any issues after that.
    Murtaza

Maybe you are looking for

  • JTreeTable: can't get CellEditor for non-tree cells to work

    Hi! I'm using a JTreeTable ( http://java.sun.com/products/jfc/tsc/articles/treetable2/index.html ) in my application. In the table cells I use ImageIcons to visualize some object data. Now I need some interaction when the user clicks on these icons,

  • Duplicate subtree in PI 7.1 (EHP1) not working as it did in XI 3.0

    Hello, When I duplicate a subtree with occurrence of 0---Unbounded in PI 7.1 (EHP1), the node gets duplicated but without the occurrence and type in the duplicated node. When duplicating a subtree with occurrence of 0---Unbounded  in XI 3.0, the occu

  • Problem compiling in Linux using ant

    Hi, I have a problem using ant in Linux. When I build my application using ant in Windows it works fine, but when I try to build the same application with ant in Linux it gives me the following exception: /identifier/MidiReader.java:5: error: Class o

  • Email folders

    How do I create a new email folder in icloud.com?

  • Address Book-changing sync method?

    When I sync'd for the first time, I was asked how I wanted to do it, "merge, erase, etc." Now I need to change from one to another. How do I do that?