SWF Talking to Adobe AIR

I have an Adobe Air App, inside the app is a SWF embedded
with the Object Tag, the SWF calls StopPlay and then calls
GetURL(Javascript Command) to call a Function Interfaced with a
Function inside the Application Sandbox and it works but it only
works while the MOUSE IS MOVING!! I cant find any documentation on
it saying the GetURL requires Mouse Interaction at all! So for now
I had to make a Autoit script to keep the mouse moving 100% of the
time until it finnaly calls GetURL then it works, if the mouse
stops moving GetURL fails Silently, Im sure this is due to SWF
secuirty so that Flash cant just Spam out URL's but any way to make
all SWF's on this machine SAFE even though it may be a vaulnerable
to Exploit, I would be perfectly fine with that!
HELP! =D
Thanks

I seem to have a similar problem. Last night I attempted to download Elements 13, I use 11. On the Adobe site I attempted to buy an upgrade, but when I went to pay it wanted me to sign in. I had forgotten my password ( never used it in several years) reset it, went back to buy Elements 13 to find I had now bought 2 versions for double the price. No edit cart option that I could find. Went back to try again only to find I had bought three versions now ! On every other site I have used I have the option of editing the contents of my cart.
I attempted to phone Adobe with the 0800 number only to be told I was calling out of hours etc. I have just this morning attempted to phone about this issue only for the phone to go dead twice as I was waiting for a human.
I conclude Adobe does not want me to upgrade to Elements 13. I do not want to upgrade to Elements 13. I have better things to do with my life

Similar Messages

  • Can you play/view swf files on adobe air for android?

    Hi, yes; I'm new here, as well as to Adobe Air, and I'm still trying to learn the ropes around here, and I apologize in advance if this has already been asked, or I have placed this question in the wrong forum.
    The thing is, I was wondering if it was possible to play my SWF files via adobe air for android; and if so, how? Thanks in advance either way.

    Can you please give directions where can i clear that cash.
    Anyway i don`t think its the case, because this is first time i hooked phone to internet, and first time i launched Android app store.
    Edit:
    I went to https://market.android.com and there is Adobe air app. But when i try to download it says that my device doesn't support it (Samsung Galaxy GT-I5500) By default it comes with android 2.1 and doesn't support Adobe air, but i upgraded firmware to 2.2.
    Maybe that is the reason it doesn't show me Adobe AIR in app store - based on my phone, not my Android version ?

  • Seam.2.2 with Adobe Air

    Hi,
         I'm trying to seam application with Adobe Air.
    1. However when i hit http://localhost:8090/Demo/Demo.swf it throws exception. What m'I missing?
    2. When exported as installer and run it it gives the [flex object async token] status instead of message. Do I need to add any related files while export? How can I do that?
    In my seam project I have added the Air Project type and output is config to webContent folder of the project. Followed the tutorials from http://www.exadel.com/flamingo/docs/guide/en/html/CreateNewFlamingoProject.html & http://www.exadel.com/flamingo/docs/guide/en/html/GettingStarted.html
    3. Further, what jars/dpendencies are needed to run the .swf compiled with Adobe Air?
    Using:
         Eclipse 3.5
         Flex Plugin 4
         Seam 2.2.0
         Flamingo.
    Thank you in advance!

    Hi,
         I'm trying to seam application with Adobe Air.
    1. However when i hit http://localhost:8090/Demo/Demo.swf it throws exception. What m'I missing?
    2. When exported as installer and run it it gives the [flex object async token] status instead of message. Do I need to add any related files while export? How can I do that?
    In my seam project I have added the Air Project type and output is config to webContent folder of the project. Followed the tutorials from http://www.exadel.com/flamingo/docs/guide/en/html/CreateNewFlamingoProject.html & http://www.exadel.com/flamingo/docs/guide/en/html/GettingStarted.html
    3. Further, what jars/dpendencies are needed to run the .swf compiled with Adobe Air?
    Using:
         Eclipse 3.5
         Flex Plugin 4
         Seam 2.2.0
         Flamingo.
    Thank you in advance!

  • Security behaviour in Adobe Air

    Hi everyone!
    I am trying to load external SWFs in my Adobe AIR App. The loaded SWF is trying to access an URL to retrieve some informations via XML.
    When starting the SWF by itself it works fine. When loading the SWF from the File.applicationStorageDirectory i will get an Security-Error because the loaded App is executed in a local-with-filesystem Sandbox appareantly.
    First Question: Is there a way to change this? That the loaded SWF is running in a network Sandbox?
    Since that first attempt didn't worked i've moved the SWF to the app:// directory.
    Now i'll get a Security-Error because there is no policy file on the Server available where the XML data should be retrieved.
    Second Question: Why is the policy file not necessary when running the SWF by itself, but is necessary when trying to load the data from the application Sandbox? What am i doing wrong?
    Thanks in advance!
    Timo

    Hi Joe,
    thanks for quick response.
    In the meantime i was able to get to a solution. I am doing an ActionScript-based app btw. My goal here is the create an AIR Application that loads different modules on demand from a given internet ressource. The two applications are using the child/parentSandboxBridge to communicate.
    I was using the SWFLoader class but did not correctly pass the LoaderContext with allowLoadBytesCodeExecution (or allowCodeImport for AIR2.0). As i was passing a LoaderContext with the mentioned variable, i was getting an VerifyError: Error #1053: Illegal override of activate in mx.managers.SystemManagerProxy since the AIR Application is done with Flex 4.0 and the loaded SWF is compiled with Flex 3.5.
    The reason that error was thrown although the loadForCompatibility property was set to true was, that the SWFLoader class does not set the necessary applicationDomain for compatibility when a LoaderContext Object is passed. So i did the applicationDomain setting myself and everything works as a charme .
    If anyone is interested in this procedure, just look into the SWFLoader::loadContent Method. In Flex 4 the interesting part starts at line 1836.
    Thanks anyway.
    Timo

  • Adobe AIR not playing sound from swf, but Flex-app in browser does. Why?

    Hi
    Why won't Adobe AIR play the sound in an swf animation I've got? It plays perfectly as an Flex Application in a browser.
    This works good (Animation is shown and sound is played):
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:SWFLoader id="testLoader" source="niceview.swf">
    </mx:SWFLoader>
    </mx:Application>
    This does not work: (Animation is shown BUT sound is NOT played):
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="500" height="400">
    <mx:SWFLoader id="testLoader" source="niceview.swf">
    </mx:SWFLoader>   
    </mx:WindowedApplication>
    I started out loading the swf from the filesystem, which is what I want to accomplish, but in this test the "niceview.swf" is located inside the source folder and therefore sandbox-violations should not be the issue here, right?

    A little bump.
    I still haven't found any solution to this.

  • [advance question] loading a swf in adobe Air, which loads an image with "componentloader"

    Good evening all,
    I think this is a complex issue.
    I have adobe air application which loads a SWF I made.
    Inside this SWF I have used the "component LOADER" to load
    something with "ContentPath=image.jpg" for example.
    But the swf loaded in the Adobe air works, but does not load
    the "ContentPath image"...
    (it does load and display it when it this swf is run outside
    adobe Air)
    I need it to be dynamic like this, so if eventually I Include
    it in the package it won't help much...
    I just intend to replace an image background from this loaded
    swf file!
    Thanks!
    Edit:
    At this time of the editing, I fear and realize
    something....I have been using Actionscript2 for the .SWF file,
    could it be why it does not works???
    If its problematic, is there a simple way like telling it to
    read actionscript2, rather than transforming everything??
    edit2:
    I found this on the official AIR FAQ:
    Will Flash version 8 and below SWF files run in Adobe AIR?
    Yes. However, the Adobe AIR APIs are only exposed to Flash
    content via ActionScript 3 / AVM2, and thus Flash 8 / AVM1 SWFs
    will be able to run, but they will not have direct access to the
    Adobe AIR APIs.
    source:
    source
    faq Adobe
    it seems it should works!!??
    Edit3:
    nope I confirm at least some code made in Actionscript2
    works.
    I am sure this code needed to be changed for working in
    actionscript3, so "actionscript2" code works in Adobe Air.
    The problem of not loading my image must come from something
    else!!??

    Good Morning all!
    Hilarious....
    I tried so much to think maybe Adobe Air does not like a SWF
    using actionscript2, or it does not load any "external image from a
    swf", etc...
    None of that!
    I just in FLASH in the ComponentLoader....I did put simply
    the ContentPath at "myimage.jpg"....
    Of course I had to use the absolute path like
    "c:\\myfolder\\myimage.jpg"
    Of course aswell it works now!!!

  • Multipe swf try out with adobe air 3.6 on ipad - black screen

    Hello Everyone,
    I am trying to build our app with the new adobe air 3.6, i read that i should build in aot mode to achieve it to work properly. In Flash Builder simulator the app works well, i see the assets in position(whitch is loaded from another swf "assets/swf/assets.swf") but on the ipad it only shows blacks screen nothing more.
    Why is that? Should I set something or i did something wrong?
    I am using Flash Builder 4.6 ( I hope i dont need to update to 4.7)
    Thank you for the Help!
    Cheers.
    Mat

    Solved. Was not AIR specific problem.
    BTW the product is great!

  • Adobe air swf file error in browser

    my fla file setting
    version: adobe air 1.0 actionscript 3.0
    i able to compile without problem and when i load the swf file in browser, if my actionscript included this line "import flash.filesystem.File". My flash just show up "blank" . no error in flashlog. if i removed this line, my swf file able to run. what is wrong?
    p/s: i embeded the air app as swf and open with browser

    You can't load SWFs published for AIR in a browser. The Flash plug-in does not recognize the extra AIR APIs like File.
    AIR SWFs can only be used as part of an AIR application.

  • Play SWF file in Android using Adobe AIR.

    Hi All,
         I have a group of SWF files. I want to play these files in my Android Application using Adobe AIR. Is it possible? If yes, can anyone tell me how to do this.

    Is it a plain ActionScript3 project? if so, from memory, this should be enough:
    var loader:Loader = new Loader();
    loader.load(new URLRequest("yourswf.swf"));
    addChild(loader);
    Of course, you can get more control over the loading process, this may result in error if you paste down the code as is in a class that is not a subclass of DisplayObjectContainer, etc.

  • Does updating Flash Player and Adobe Air solve the Swf.Exploit.CVE_2014_0581 problem?

    My ClamXav found the following attached to an app (JL Edwardian Advent Calendar) on my computer: Swf.Exploit.CVE_2014_0581. I have deleted and reinstalled the app, and I have updated the Flash Player and Adobe Air, but ClamXav continues to mark it as infected. Could this be a false positive? Is it safe to run this app after the updates?

    Added one yesterday:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3560258
    Interestingly air 3.7 on IOS to Desktop air 3.7 will work.
    I am investigating if I can use 3.7 on Android to connect to 3.7 on iOS - so far I cannot get the apk to install on my Galaxy S3, compile using 3.4 and all is good. Air runtime has been updated via Play store - and build uses compiled runtime.
    I cannot get Flash player 11.4 to connect with air 3.7 on iOS either.
    NetGroup.Neighbour.Connect never fires.
    All SDKS above 3.4 upto 3.8 beta exhibit the same problem.
    3.4 works perfectly and can connect to flash player, and other Air/iOS devices just fine.
    Shuld not be a issue with firewalls etc, thay are all open.
    I can email you the fla, it is for a product so I can't post it here.
    Thanks,
    Steve.

  • I have flash professional cc and I need air for desktop application with .exe or .air that should contain all swf's and captive air runtime in one Installer only . I don't want to install separate adobe air runtime .

    I need Air for desktop application either in .exe or in .air with embedded captive runtime just like .apk . I don't want to install adobe air separate . everything should come in installer
    I have adobe flash professional cc development tool , let me know whether I have to go with other development tool???
    your reply will  increase my confidential level
    please anyone can help me to solve this problem
    Thanks&regards
    Niranjan

    Adobe Flash Professional CC manual
    1) Create new project
    2) Configure your Project properties
    3) Embed runtime, so you users can use Adobe AIR without pre-installed Adobe AIR runtime
    4) After publishing you will receive %APP_NAME%.app folder that contain your project files

  • 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

  • Unable to Install Adobe AIR 2.6.0.19140

    I am trying to install Adobe AIR (for the first time) on a Windows XP SP3 computer.
    The setup window informs me that:  "An error has occurred while installing Adobe AIR.  Installation may not be allowed by your administrator.  Please contact your administrator."
    Of course this is nonsense as I have full privileges to install whatever I want on my own computer!  Does anyone have a solution to this?
    Here is a copy of Adobe's AIR install.log, after which I am also posting a copy of MSI*.log.  (Sorry for the length of this message, but I could not find a way to attach files to it!)
    [2011-04-15:22:22:40] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-15:22:22:40] Commandline is:
    [2011-04-15:22:22:40] No installed runtime detected
    [2011-04-15:22:22:42] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-15:22:22:42] Installing msi at c:\docume~1\tb\locals~1\temp\air17.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-15:22:22:45] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:22:45] Rolling back install of c:\docume~1\tb\locals~1\temp\air17.tmp\setup.msi
    [2011-04-15:22:22:45] Rollback complete
    [2011-04-15:22:22:45] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:22:47] Runtime Installer end with exit code 7
    [2011-04-15:22:22:57] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-15:22:22:57] Commandline is:
    [2011-04-15:22:22:57] No installed runtime detected
    [2011-04-15:22:23:00] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-15:22:23:00] Installing msi at c:\docume~1\tb\locals~1\temp\air1b.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-15:22:23:03] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:23:03] Rolling back install of c:\docume~1\tb\locals~1\temp\air1b.tmp\setup.msi
    [2011-04-15:22:23:03] Rollback complete
    [2011-04-15:22:23:03] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:29:28] Runtime Installer end with exit code 7
    [2011-04-15:22:30:30] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-15:22:30:30] Commandline is:
    [2011-04-15:22:30:30] No installed runtime detected
    [2011-04-15:22:30:31] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-15:22:30:31] Installing msi at c:\docume~1\tb\locals~1\temp\air20.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-15:22:30:35] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:30:35] Rolling back install of c:\docume~1\tb\locals~1\temp\air20.tmp\setup.msi
    [2011-04-15:22:30:35] Rollback complete
    [2011-04-15:22:30:35] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:30:37] Runtime Installer end with exit code 7
    [2011-04-15:22:31:43] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-15:22:31:43] Commandline is:
    [2011-04-15:22:31:43] No installed runtime detected
    [2011-04-15:22:31:45] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-15:22:31:45] Installing msi at c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-15:22:31:49] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:31:49] Rolling back install of c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi
    [2011-04-15:22:31:49] Rollback complete
    [2011-04-15:22:31:49] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:31:51] Runtime Installer end with exit code 7
    [2011-04-15:22:36:13] Runtime Installer begin with version 2.6.0.19120 on Windows XP x86
    [2011-04-15:22:36:13] Commandline is:
    [2011-04-15:22:36:13] No installed runtime detected
    [2011-04-15:22:36:17] Starting runtime install. Installing runtime version 2.6.0.19120
    [2011-04-15:22:36:17] Installing msi at c:\docume~1\tb\locals~1\temp\aire.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-15:22:36:21] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:36:21] Rolling back install of c:\docume~1\tb\locals~1\temp\aire.tmp\setup.msi
    [2011-04-15:22:36:21] Rollback complete
    [2011-04-15:22:36:21] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-15:22:36:26] Runtime Installer end with exit code 7
    [2011-04-16:11:09:09] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:09:09] Commandline is:
    [2011-04-16:11:09:09] No installed runtime detected
    [2011-04-16:11:09:16] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-16:11:09:16] Installing msi at c:\docume~1\tb\locals~1\temp\airb.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-16:11:09:20] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:09:20] Rolling back install of c:\docume~1\tb\locals~1\temp\airb.tmp\setup.msi
    [2011-04-16:11:09:20] Rollback complete
    [2011-04-16:11:09:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:09:23] Runtime Installer end with exit code 7
    [2011-04-16:11:10:25] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:10:25] Commandline is:
    [2011-04-16:11:10:25] Installed runtime (2.6.0.19140) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-16:11:10:36] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-04-16:11:10:36] Runtime Installer end with exit code 0
    [2011-04-16:11:10:37] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:10:37] Commandline is: -installupdatecheck
    [2011-04-16:11:10:37] Installed runtime (2.6.0.19140) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-16:11:10:37] Performing pingback request
    [2011-04-16:11:10:38] Pingback request completed with HTTP status 200
    [2011-04-16:11:10:38] Starting runtime background update check
    [2011-04-16:11:10:38] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19140/update
    [2011-04-16:11:10:38] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19140/update to C:\Documents and Settings\TB\Application Data\Adobe\AIR\Updater\Background
    [2011-04-16:11:10:38] Runtime update not available
    [2011-04-16:11:10:38] Unpackaging cancelled
    [2011-04-16:11:10:38] Runtime Installer end with exit code 0
    [2011-04-16:11:22:29] Runtime Installer begin with version 2.6.0.19120 on Windows XP x86
    [2011-04-16:11:22:29] Commandline is:
    [2011-04-16:11:22:29] Installed runtime (2.6.0.19140) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-16:11:22:38] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-04-16:11:22:38] Runtime Installer end with exit code 0
    [2011-04-16:11:22:38] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:22:38] Commandline is: -installupdatecheck
    [2011-04-16:11:22:38] Installed runtime (2.6.0.19140) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-16:11:22:38] Performing pingback request
    [2011-04-16:11:22:39] Pingback request completed with HTTP status 200
    [2011-04-16:11:22:39] Starting runtime background update check
    [2011-04-16:11:22:39] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19140/update
    [2011-04-16:11:22:39] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19140/update to C:\Documents and Settings\TB\Application Data\Adobe\AIR\Updater\Background
    [2011-04-16:11:22:39] Runtime update not available
    [2011-04-16:11:22:39] Unpackaging cancelled
    [2011-04-16:11:22:39] Runtime Installer end with exit code 0
    [2011-04-16:11:22:55] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:22:55] Commandline is:
    [2011-04-16:11:22:55] Installed runtime (2.6.0.19140) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-16:11:23:00] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-04-16:11:23:00] Runtime Installer end with exit code 0
    [2011-04-16:11:23:00] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:23:00] Commandline is: -installupdatecheck
    [2011-04-16:11:23:00] Installed runtime (2.6.0.19140) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-16:11:23:01] Performing pingback request
    [2011-04-16:11:23:01] Pingback request completed with HTTP status 200
    [2011-04-16:11:23:01] Starting runtime background update check
    [2011-04-16:11:23:01] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19140/update
    [2011-04-16:11:23:01] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19140/update to C:\Documents and Settings\TB\Application Data\Adobe\AIR\Updater\Background
    [2011-04-16:11:23:01] Runtime update not available
    [2011-04-16:11:23:01] Unpackaging cancelled
    [2011-04-16:11:23:01] Runtime Installer end with exit code 0
    [2011-04-16:11:29:06] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:29:06] Commandline is:
    [2011-04-16:11:29:06] No installed runtime detected
    [2011-04-16:11:29:10] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-16:11:29:10] Installing msi at c:\docume~1\tb\locals~1\temp\airf.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-16:11:29:14] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:29:14] Rolling back install of c:\docume~1\tb\locals~1\temp\airf.tmp\setup.msi
    [2011-04-16:11:29:14] Rollback complete
    [2011-04-16:11:29:14] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:29:39] Runtime Installer end with exit code 7
    [2011-04-16:11:30:48] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:30:48] Commandline is:
    [2011-04-16:11:30:48] No installed runtime detected
    [2011-04-16:11:30:51] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-16:11:30:51] Installing msi at c:\docume~1\tb\locals~1\temp\air18.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-16:11:30:53] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:30:53] Rolling back install of c:\docume~1\tb\locals~1\temp\air18.tmp\setup.msi
    [2011-04-16:11:30:53] Rollback complete
    [2011-04-16:11:30:53] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:30:54] Runtime Installer end with exit code 7
    [2011-04-16:11:31:16] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:11:31:16] Commandline is:
    [2011-04-16:11:31:16] No installed runtime detected
    [2011-04-16:11:31:18] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-16:11:31:18] Installing msi at c:\docume~1\tb\locals~1\temp\air1c.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-16:11:31:20] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:31:20] Rolling back install of c:\docume~1\tb\locals~1\temp\air1c.tmp\setup.msi
    [2011-04-16:11:31:20] Rollback complete
    [2011-04-16:11:31:20] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:11:31:22] Runtime Installer end with exit code 7
    [2011-04-16:12:01:11] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-04-16:12:01:11] Commandline is:
    [2011-04-16:12:01:11] No installed runtime detected
    [2011-04-16:12:01:13] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-04-16:12:01:13] Installing msi at c:\docume~1\tb\locals~1\temp\aire.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-04-16:12:01:18] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:12:01:18] Rolling back install of c:\docume~1\tb\locals~1\temp\aire.tmp\setup.msi
    [2011-04-16:12:01:18] Rollback complete
    [2011-04-16:12:01:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
    [2011-04-16:12:01:19] Runtime Installer end with exit code 7
    Here is the MSI*.log copy:
    === Verbose logging started: 4/16/2011  13:09:40  Build type: SHIP UNICODE 3.01.4001.5512  Calling process: C:\DOCUME~1\TB\LOCALS~1\Temp\AIR24.tmp\Adobe AIR Installer.exe ===
    MSI (c) (18:A8) [13:09:40:843]: Resetting cached policy values
    MSI (c) (18:A8) [13:09:40:843]: Machine policy value 'Debug' is 0
    MSI (c) (18:A8) [13:09:40:843]: ******* RunEngine:
               ******* Product: c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (18:A8) [13:09:40:843]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (18:A8) [13:09:40:843]: Grabbed execution mutex.
    MSI (c) (18:A8) [13:09:40:953]: Cloaking enabled.
    MSI (c) (18:A8) [13:09:40:953]: Attempting to enable all disabled priveleges before calling Install on Server
    MSI (c) (18:A8) [13:09:40:984]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (2C:68) [13:09:41:000]: Grabbed execution mutex.
    MSI (s) (2C:A0) [13:09:41:000]: Resetting cached policy values
    MSI (s) (2C:A0) [13:09:41:000]: Machine policy value 'Debug' is 0
    MSI (s) (2C:A0) [13:09:41:000]: ******* RunEngine:
               ******* Product: c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (2C:A0) [13:09:41:015]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (2C:A0) [13:09:41:046]: File will have security applied from OpCode.
    MSI (s) (2C:A0) [13:09:41:046]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi' against software restriction policy
    MSI (s) (2C:A0) [13:09:41:046]: SOFTWARE RESTRICTION POLICY: c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi has a digital signature
    MSI (s) (2C:A0) [13:09:41:234]: SOFTWARE RESTRICTION POLICY: c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (2C:A0) [13:09:41:234]: End dialog not enabled
    MSI (s) (2C:A0) [13:09:41:234]: Original package ==> c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi
    MSI (s) (2C:A0) [13:09:41:234]: Package we're running from ==> c:\WINDOWS\Installer\1bc37b.msi
    MSI (s) (2C:A0) [13:09:41:234]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (2C:A0) [13:09:41:234]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (2C:A0) [13:09:41:250]: MSCOREE not loaded loading copy from system32
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (2C:A0) [13:09:41:265]: User policy value 'TransformsAtSource' is 0
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'DisablePatch' is 0
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (2C:A0) [13:09:41:265]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (2C:A0) [13:09:41:265]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (2C:A0) [13:09:41:265]: Transforms are not secure.
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2205 2:  3: Control
    MSI (s) (2C:A0) [13:09:41:265]: Command Line: CURRENTDIRECTORY=C:\temp\software CLIENTUILEVEL=3 CLIENTPROCESSID=1560
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{85FFA26D-EE25-43C8-AE73-191F2347856C}'.
    MSI (s) (2C:A0) [13:09:41:265]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (2C:A0) [13:09:41:265]: Product Code from property table before transforms: '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (2C:A0) [13:09:41:265]: Product Code from property table after transforms:  '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (2C:A0) [13:09:41:265]: Product not registered: beginning first-time install
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (2C:A0) [13:09:41:265]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (2C:A0) [13:09:41:265]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (2C:A0) [13:09:41:265]: Adding new sources is allowed.
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (2C:A0) [13:09:41:265]: Package name extracted from package path: 'setup.msi'
    MSI (s) (2C:A0) [13:09:41:265]: Package to be registered: 'setup.msi'
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2205 2:  3: Error
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2729
    MSI (s) (2C:A0) [13:09:41:265]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'DisableMsi' is 0
    MSI (s) (2C:A0) [13:09:41:265]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (2C:A0) [13:09:41:265]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (2C:A0) [13:09:41:265]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (2C:A0) [13:09:41:265]: Running product '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}' with elevated privileges: Product is assigned.
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\temp\software'.
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '1560'.
    MSI (s) (2C:A0) [13:09:41:265]: TRANSFORMS property is now:
    MSI (s) (2C:A0) [13:09:41:265]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Application Data
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Favorites
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\NetHood
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\My Documents
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\PrintHood
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Recent
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\SendTo
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Templates
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Application Data
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Local Settings\Application Data
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\My Documents\My Pictures
    MSI (s) (2C:A0) [13:09:41:281]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs\Administrative Tools
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs\Startup
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Desktop
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Start Menu\Programs\Administrative Tools
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Start Menu\Programs\Startup
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Start Menu\Programs
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Start Menu
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\TB\Desktop
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Templates
    MSI (s) (2C:A0) [13:09:41:296]: SHELL32::SHGetFolderPath returned: C:\WINDOWS\Fonts
    MSI (s) (2C:A0) [13:09:41:296]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Windows-22587'.
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\WINDOWS\Installer\1bc37b.msi'.
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\docume~1\tb\locals~1\temp\air24.tmp\setup.msi'.
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (2C:A0) [13:09:41:312]: Machine policy value 'DisableRollback' is 0
    MSI (s) (2C:A0) [13:09:41:312]: User policy value 'DisableRollback' is 0
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 4/16/2011  13:09:41 ===
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (2C:A0) [13:09:41:312]: Doing action: INSTALL
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (2C:A0) [13:09:41:312]: Running ExecuteSequence
    MSI (s) (2C:A0) [13:09:41:312]: Doing action: FindRelatedProducts
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 2205 2:  3: ActionText
    Action start 13:09:41: INSTALL.
    Action start 13:09:41: FindRelatedProducts.
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Adding UC8DA920D5C41C42E0BF3187BA49984EE4 property. Its value is '{46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}'.
    MSI (s) (2C:A0) [13:09:41:312]: Doing action: ValidateProductID
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: FindRelatedProducts. Return value 1.
    Action start 13:09:41: ValidateProductID.
    MSI (s) (2C:A0) [13:09:41:312]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: ValidateProductID. Return value 1.
    MSI (s) (2C:A0) [13:09:41:312]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 13:09:41: SetSHAREDADDINFOLDER.
    MSI (s) (2C:A0) [13:09:41:312]: Doing action: CostInitialize
    MSI (s) (2C:A0) [13:09:41:312]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (2C:A0) [13:09:41:312]: Machine policy value 'MaxPatchCacheSize' is 10
    Action start 13:09:41: CostInitialize.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'c:\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Patch
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (2C:A0) [13:09:41:328]: Doing action: FileCost
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: CostInitialize. Return value 1.
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Class
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Extension
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: TypeLib
    Action start 13:09:41: FileCost.
    MSI (s) (2C:A0) [13:09:41:328]: Doing action: CostFinalize
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: FileCost. Return value 1.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Patch
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Condition
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'c:\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is 'C:\Program Files\Adobe\Flash Player\AddIns\airappinstaller'. Its new value: 'c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\WINDOWS\'. Its new value: 'c:\WINDOWS\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Modifying CommonFilesFolder property. Its current value is 'C:\Program Files\Common Files\'. Its new value: 'c:\Program Files\Common Files\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files\Common Files\Adobe AIR\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:41:328]: Target path resolution complete. Dumping Directory table...
    MSI (s) (2C:A0) [13:09:41:328]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: TARGETDIR , Object: c:\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: SHAREDADDINFOLDER , Object: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: WindowsFolder , Object: c:\WINDOWS\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: CommonFilesFolder , Object: c:\Program Files\Common Files\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: AIR , Object: c:\Program Files\Common Files\Adobe AIR\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: Versions , Object: c:\Program Files\Common Files\Adobe AIR\Versions\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: Version , Object: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (2C:A0) [13:09:41:328]: Dir (target): Key: Resources , Object: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (2C:A0) [13:09:41:328]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (2C:A0) [13:09:41:328]: 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 13:09:41: CostFinalize.
    MSI (s) (2C:A0) [13:09:41:328]: Doing action: MigrateFeatureStates
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: CostFinalize. Return value 1.
    Action start 13:09:41: MigrateFeatureStates.
    MSI (s) (2C:A0) [13:09:41:328]: Doing action: InstallValidate
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: MigrateFeatureStates. Return value 0.
    MSI (s) (2C:A0) [13:09:41:328]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: Sentinel; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: AppInstaller; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: WebKit; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: FlashPlugin; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: Setup; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: RootCertificate; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: TimestampingRootCertificate; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: AIRAppInstaller; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: DRMADOBECPVoucher; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: DRM; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: DRM15; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: DRMAIRVoucher; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: __FileTypeRegistration65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: __ARPRegistration65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Component: __AIRAppInstaller65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Extension
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Font
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: Class
    Action start 13:09:41: InstallValidate.
    MSI (s) (2C:A0) [13:09:41:328]: Note: 1: 2205 2:  3: _RemoveFilePath
    MSI (s) (2C:A0) [13:09:41:343]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: Extension
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: Font
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: Class
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2727 2: 
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2727 2: 
    MSI (s) (2C:A0) [13:09:41:343]: Doing action: SetARPINSTALLLOCATION
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: InstallValidate. Return value 1.
    MSI (s) (2C:A0) [13:09:41:343]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'c:\Program Files\Common Files\Adobe AIR\'.
    Action start 13:09:41: SetARPINSTALLLOCATION.
    MSI (s) (2C:A0) [13:09:41:343]: Doing action: InstallInitialize
    MSI (s) (2C:A0) [13:09:41:343]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: SetARPINSTALLLOCATION. Return value 1.
    MSI (s) (2C:A0) [13:09:41:343]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (2C:A0) [13:09:41:343]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (2C:A0) [13:09:41:343]: BeginTransaction: Locking Server
    MSI (s) (2C:A0) [13:09:41:343]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (2C:A0) [13:09:41:343]: Server not locked: locking for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    Action start 13:09:41: InstallInitialize.
    MSI (s) (2C:A0) [13:09:41:937]: Doing action: ProcessComponents
    MSI (s) (2C:A0) [13:09:41:937]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: InstallInitialize. Return value 1.
    MSI (s) (2C:A0) [13:09:41:937]: Note: 1: 2205 2:  3: MsiPatchCertificate
    MSI (s) (2C:A0) [13:09:41:937]: LUA patching is disabled: missing MsiPatchCertificate table
    MSI (s) (2C:A0) [13:09:41:937]: Resolving source.
    MSI (s) (2C:A0) [13:09:41:937]: Resolving source to launched-from source.
    MSI (s) (2C:A0) [13:09:41:937]: Setting launched-from source as last-used.
    MSI (s) (2C:A0) [13:09:41:937]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'c:\docume~1\tb\locals~1\temp\air24.tmp\'.
    MSI (s) (2C:A0) [13:09:41:937]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'c:\docume~1\tb\locals~1\temp\air24.tmp\'.
    MSI (s) (2C:A0) [13:09:41:937]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (2C:A0) [13:09:41:937]: SOURCEDIR ==> c:\docume~1\tb\locals~1\temp\air24.tmp\
    MSI (s) (2C:A0) [13:09:41:937]: SOURCEDIR product ==> {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    MSI (s) (2C:A0) [13:09:41:937]: Determining source type
    MSI (s) (2C:A0) [13:09:41:937]: Source type from package 'setup.msi': 0
    Action start 13:09:41: ProcessComponents.
    MSI (s) (2C:A0) [13:09:41:937]: Source path resolution complete. Dumping Directory table...
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: TARGETDIR , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: SHAREDADDINFOLDER , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: WindowsFolder , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: CommonFilesFolder , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: AIR , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\ , LongSubPath: Adobe AIR\ , ShortSubPath: AIR\
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: Versions , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\ , LongSubPath: Adobe AIR\Versions\ , ShortSubPath: AIR\Versions\
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: Version , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\ , LongSubPath: Adobe AIR\Versions\1.0\ , ShortSubPath: AIR\Versions\Version\
    MSI (s) (2C:A0) [13:09:41:937]: Dir (source): Key: Resources , Object: c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\ , LongSubPath: Adobe AIR\Versions\1.0\Resources\ , ShortSubPath: AIR\Versions\Version\R\
    MSI (s) (2C:A0) [13:09:41:937]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (2C:A0) [13:09:41:937]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (2C:A0) [13:09:41:953]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (2C:A0) [13:09:41:953]: Doing action: UnpublishFeatures
    MSI (s) (2C:A0) [13:09:41:953]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: ProcessComponents. Return value 1.
    Action start 13:09:41: UnpublishFeatures.
    MSI (s) (2C:A0) [13:09:41:953]: Doing action: RemoveRegistryValues
    MSI (s) (2C:A0) [13:09:41:953]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: UnpublishFeatures. Return value 1.
    Action start 13:09:41: RemoveRegistryValues.
    MSI (s) (2C:A0) [13:09:41:953]: Doing action: RemoveDuplicateFiles
    MSI (s) (2C:A0) [13:09:41:953]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: RemoveRegistryValues. Return value 1.
    Action start 13:09:41: RemoveDuplicateFiles.
    MSI (s) (2C:A0) [13:09:41:953]: Doing action: RemoveFiles
    MSI (s) (2C:A0) [13:09:41:953]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: RemoveDuplicateFiles. Return value 1.
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: RemoveFile
    Action start 13:09:41: RemoveFiles.
    MSI (s) (2C:A0) [13:09:41:968]: Doing action: InstallFiles
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: RemoveFiles. Return value 0.
    Action start 13:09:41: InstallFiles.
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: Patch
    MSI (s) (2C:A0) [13:09:41:968]: 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) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: Error
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (2C:A0) [13:09:41:968]: Doing action: DuplicateFiles
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: InstallFiles. Return value 1.
    Action start 13:09:41: DuplicateFiles.
    MSI (s) (2C:A0) [13:09:41:968]: Doing action: WriteRegistryValues
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: DuplicateFiles. Return value 1.
    Action start 13:09:41: WriteRegistryValues.
    MSI (s) (2C:A0) [13:09:41:968]: Doing action: RegisterUser
    MSI (s) (2C:A0) [13:09:41:968]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: WriteRegistryValues. Return value 1.
    Action start 13:09:41: RegisterUser.
    MSI (s) (2C:A0) [13:09:41:984]: Doing action: RegisterProduct
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: RegisterUser. Return value 1.
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2205 2:  3: Error
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    Action start 13:09:41: RegisterProduct.
    MSI (s) (2C:A0) [13:09:41:984]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (2C:A0) [13:09:41:984]: Doing action: PublishFeatures
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: RegisterProduct. Return value 1.
    Action start 13:09:41: PublishFeatures.
    MSI (s) (2C:A0) [13:09:41:984]: Doing action: PublishProduct
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: PublishFeatures. Return value 1.
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2205 2:  3: Icon
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
    Action start 13:09:41: PublishProduct.
    MSI (s) (2C:A0) [13:09:41:984]: Doing action: InstallExecute
    MSI (s) (2C:A0) [13:09:41:984]: Note: 1: 2205 2:  3: ActionText
    Action ended 13:09:41: PublishProduct. Return value 1.
    MSI (s) (2C:A0) [13:09:41:984]: Running Script: C:\WINDOWS\Installer\MSI25.tmp
    MSI (s) (2C:A0) [13:09:41:984]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (2C:A0) [13:09:42:000]: Machine policy value 'DisableRollback' is 0
    MSI (s) (2C:A0) [13:09:42:000]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: Header(Signature=1397708873,Version=301,Timestamp=1049651509,LangId=1033,Platform=0,Scrip tType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
    Action start 13:09:41: InstallExecute.
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: ProductInfo(ProductKey={AFF7E080-1974-45BF-9310-10DE1A1F5ED0},ProductName=Adobe AIR,PackageName=setup.msi,Language=1033,Version=33947648,Assignment=1,ObsoleteArg=0,,,Pac kageCode={85FFA26D-EE25-43C8-AE73-191F2347856C},,,InstanceType=0,LUASetting=0,RemoteURTIns talls=0)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: DialogInfo(Type=0,Argument=1033)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: DialogInfo(Type=1,Argument=Adobe AIR)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: SetBaseline(Baseline=0,)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: SetBaseline(Baseline=1,)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: ProgressTotal(Total=17,Type=1,ByteEquivalent=24000)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: ComponentRegister(ComponentId={701D2A09-14BE-45F8-9233-1CE0ED0023A9},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: ComponentRegister(ComponentId={95CB0A23-64ED-4832-8C2C-8E1671678EA8},KeyPath=02:\Software \Adobe\Adobe AIR\FileTypeRegistration\,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:000]: Executing op: ComponentRegister(ComponentId={12055C63-FC8C-4CC0-81A5-38E057039902},KeyPath=02:\SOFTWARE \Microsoft\Windows\CurrentVersion\Uninstall\Adobe AIR\UninstallString,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={8E61C856-01FD-4B39-9D18-90B226C2013C},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={F748231B-0260-4E35-BFB8-7FACFDCE1711},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={DC74C3C6-CAB8-4C49-BE18-5B1DCD0D197E},KeyPath=c:\Program Files\Common Files\Adobe AIR\sentinel,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={F5EE0D89-3BC5-4752-9EBB-533B036EA809},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={5281ED57-AD60-4235-A34D-F7571E28FC4C},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={7A5778CF-5BD0-4931-8224-43B630C24273},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={1A511B10-11FC-4CAB-9C48-68641F09CF00},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={76C2FC36-B864-4E7A-9C96-F9B80CDE9A13},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={5E6626CD-4343-4FF9-8DB0-CFB62473037E},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Thawte Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:015]: Executing op: ComponentRegister(ComponentId={7B2F9BE9-D1F1-4E4D-9AF0-AD085F073B33},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe,State=3,,Disk=1,SharedDllRefCount=0,Binary Type=0)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ComponentRegister(ComponentId={4E0C3DA9-8FD3-487A-92EB-DDE2CDC7EEAA},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\adobecp.vch,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ComponentRegister(ComponentId={060F1E52-BC43-4D4D-9DAD-197E00DCD5C9},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ComponentRegister(ComponentId={4E7390B9-0423-46B8-AED6-39BB3FB2C8FE},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\AdobeCP15.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0 )
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ComponentRegister(ComponentId={91DAC761-D04A-4404-BC97-E62936576E30},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR.vch,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ActionStart(Name=InstallFiles,Description=Copying new files,Template=File: [1],  Directory: [9],  Size: [6])
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ProgressTotal(Total=31110638,Type=0,ByteEquivalent=1)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: SetTargetFolder(Folder=c:\Program Files\Common Files\Adobe AIR\)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: SetSourceFolder(Folder=1\AIR\|Adobe AIR\)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,,BytesPerTick=32768,CopierType=0,,,,,,IsFirstPhysicalMedia=1)
    MSI (s) (2C:A0) [13:09:42:031]: Executing op: FileCopy(SourceName=sentinel,SourceCabKey=SentinelFile,DestName=sentinel,Attributes=512,F ileSize=11,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,HashOptions= 0,HashPart1=-1608728155,HashPart2=-1204748780,HashPart3=-375235064,HashPart4=-996773537,,)
    MSI (s) (2C:A0) [13:09:42:031]: File: c:\Program Files\Common Files\Adobe AIR\sentinel; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:031]: Source for file 'sentinel' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\'.
    MSI (s) (2C:A0) [13:09:42:031]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\sentinel
    MSI (s) (2C:A0) [13:09:42:046]: Executing op: SetTargetFolder(Folder=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\)
    MSI (s) (2C:A0) [13:09:42:046]: Executing op: SetSourceFolder(Folder=1\AIR\Versions\Version\|Adobe AIR\Versions\1.0\)
    MSI (s) (2C:A0) [13:09:42:046]: Executing op: FileCopy(SourceName=AIR.dll|Adobe AIR.dll,SourceCabKey=AdobeAIR.dll,DestName=Adobe AIR.dll,Attributes=512,FileSize=10257792,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Vers ion=2.6.0.19140,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (2C:A0) [13:09:42:046]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:046]: Source for file 'Adobe AIR.dll' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\'.
    MSI (s) (2C:A0) [13:09:42:046]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll
    MSI (s) (2C:A0) [13:09:42:109]: Executing op: FileCopy(SourceName=air.exe|Adobe AIR Application Installer.exe,SourceCabKey=air.exe,DestName=Adobe AIR Application Installer.exe,Attributes=512,FileSize=129920,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0, Version=2.6.0.19140,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (2C:A0) [13:09:42:109]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:109]: Source for file 'Adobe AIR Application Installer.exe' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\'.
    MSI (s) (2C:A0) [13:09:42:109]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe
    MSI (s) (2C:A0) [13:09:42:109]: Executing op: FileCopy(SourceName=air.swf|Adobe AIR Application Installer.swf,SourceCabKey=air.swf,DestName=Adobe AIR Application Installer.swf,Attributes=512,FileSize=723315,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0, ,,InstallMode=62914560,HashOptions=0,HashPart1=-166813196,HashPart2=1229503538,HashPart3=- 2015506811,HashPart4=-251257560,,)
    MSI (s) (2C:A0) [13:09:42:109]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.swf; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:109]: Source for file 'Adobe AIR Application Installer.swf' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\'.
    MSI (s) (2C:A0) [13:09:42:109]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.swf
    MSI (s) (2C:A0) [13:09:42:140]: Executing op: SetTargetFolder(Folder=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\)
    MSI (s) (2C:A0) [13:09:42:140]: Executing op: SetSourceFolder(Folder=1\AIR\Versions\Version\R\|Adobe AIR\Versions\1.0\Resources\)
    MSI (s) (2C:A0) [13:09:42:140]: Executing op: FileCopy(SourceName=template.msi,SourceCabKey=template.msi,DestName=template.msi,Attribut es=512,FileSize=20480,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,H ashOptions=0,HashPart1=1205134664,HashPart2=-1868915957,HashPart3=-18417062,HashPart4=-168 2108965,,)
    MSI (s) (2C:A0) [13:09:42:140]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:140]: Source for file 'template.msi' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:140]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi
    MSI (s) (2C:A0) [13:09:42:140]: Executing op: FileCopy(SourceName=template.exe,SourceCabKey=template.exe,DestName=template.exe,Attribut es=512,FileSize=59904,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,H ashOptions=0,HashPart1=-2057105634,HashPart2=2132188210,HashPart3=2054072424,HashPart4=-13 02401633,,)
    MSI (s) (2C:A0) [13:09:42:140]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:140]: Source for file 'template.exe' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:140]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe
    MSI (s) (2C:A0) [13:09:42:140]: Executing op: FileCopy(SourceName=WebKit.dll|WebKit.dll,SourceCabKey=WebKit.dll,DestName=WebKit.dll,Att ributes=512,FileSize=4298112,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Version=6531.9.0. 0,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (2C:A0) [13:09:42:140]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:140]: Source for file 'WebKit.dll' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:156]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll
    MSI (s) (2C:A0) [13:09:42:171]: Executing op: FileCopy(SourceName=NPSWF32.dll|NPSWF32.dll,SourceCabKey=NPSWF32.dll,DestName=NPSWF32.dll ,Attributes=512,FileSize=6053248,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Version=10.2. 159.1,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (2C:A0) [13:09:42:171]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:171]: Source for file 'NPSWF32.dll' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:171]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll
    MSI (s) (2C:A0) [13:09:42:234]: Executing op: FileCopy(SourceName=Setup.exe|Adobe AIR Updater.exe,SourceCabKey=Setup.exe,DestName=Adobe AIR Updater.exe,Attributes=512,FileSize=97280,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,Ver sion=2.6.0.19140,Language=1033,InstallMode=62914560,,,,,,,)
    MSI (s) (2C:A0) [13:09:42:234]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:234]: Source for file 'Adobe AIR Updater.exe' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:234]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe
    MSI (s) (2C:A0) [13:09:42:406]: Executing op: FileCopy(SourceName=setup.swf,SourceCabKey=Setup.swf,DestName=setup.swf,Attributes=512,Fi leSize=744348,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=62914560,HashOptio ns=0,HashPart1=-1990843193,HashPart2=1443252638,HashPart3=-1896080642,HashPart4=192616295, ,)
    MSI (s) (2C:A0) [13:09:42:406]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\setup.swf; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:406]: Source for file 'setup.swf' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:406]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\setup.swf
    MSI (s) (2C:A0) [13:09:42:437]: Executing op: FileCopy(SourceName=styles.swf|stylesNative.swf,SourceCabKey=styles.swf,DestName=stylesNa tive.swf,Attributes=512,FileSize=234066,PerTick=32768,,VerifyMedia=1,,,,,CheckCRC=0,,,Inst allMode=62914560,HashOptions=0,HashPart1=-328572304,HashPart2=-489336595,HashPart3=-149768 3317,HashPart4=-1129114573,,)
    MSI (s) (2C:A0) [13:09:42:437]: File: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\stylesNative.swf; To be installed; Won't patch; No existing file
    MSI (s) (2C:A0) [13:09:42:437]: Source for file 'stylesNative.swf' is uncompressed, at 'c:\docume~1\tb\locals~1\temp\air24.tmp\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (2C:A0) [13:09:42:437]: Note: 1: 2318 2: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\stylesNative.swf
    MSI (s) (2C:A0) [13:09:42:453]: Executing op: FileCopy(SourceName=Adobe.cer|Adobe Root Certificate.cer,SourceCabKey=Adobe.cer,DestName=Adobe Root Certificate.cer,Attributes=512,FileSize=1189,PerTick=32768,,Verif

    Chris,
    Your suggestion to use Windows Installer CleanUp Utility to solve my problem worked!  Many thanks for the suggestion.
    For anyone who wants to use Windows Installer CleanUp Utility:  Microsoft no longer supports this utility and you will no longer be able to download it from their site.  I found a copy of it at:
    http://www.softpedia.com/get/Security/Secure-cleaning/Windows-Installer-CleanUp-Utility.sh tml
    Please note that after you install it, you will have to go find it in Start -> All Programs (Windows XP), launch it, select Adobe AIR, and click the Remove button.

  • Error Installing Adobe Air from Story Desktop Application Installer

    This is truly driving me nuts already.
    Every time I try to install the Desktop Application from the Story website, it says I must install Adobe Air. So I click Install, it shows the progress bar to 100%, then errors out with a window. The window header reads "Adobe AIR Installer" and the main section of the window reads "Couldn't write the application to the hard disk. Please verify the hard disk is available and try again." - There is a Retry and Cancel. Retry does it all again with same results.
    No, I had no previous versions of Adobe Air. So I tried installing AIR direct from the Adobe website, and it installs fine. So I go back to the Story webpage and try installing the Desktop Application again and the exact same set of events as described above happens. I uninstalled the AIR install, tried again, same result.
    I had Production Premium CS3 previously, and installed Production Premium CS5 UPGRADE. All the programs in the suite work like a charm!
    I'm running Windows 7 64 bit with 208 Gig free on my C drive, as well as over 500 gig free spread out over two other drives. 8 Gig memory, and two Nvidia Qadro FX 3500 video cards (If that matters at all). Full admin rights to the PC, not limited in any way.
    A quick Google search shows plenty of other people having the same problem,  just no known fixes I've found!
    HELP!!!
    PS- I have a picture of the error message, but the insert picture link is greyed out and won't let me add anything to this post.

    Here is the installer log entries as requested:
    9/3/10 11:34:54 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] Starting app install of file:///Users/Shared/Downloads/AdobeStory.air
    9/3/10 11:34:54 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] UI SWF load is complete
    9/3/10 11:34:55 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] UI initialized
    9/3/10 11:34:55 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] beginning UI styling
    9/3/10 11:34:55 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] UI styling complete
    9/3/10 11:34:55 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] Unpackaging to /private/var/folders/dJ/dJl0jNt6GK4MiC2esOh-GU+++TM/TemporaryItems/FlashTmp0
    9/3/10 11:34:58 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] unpackaging/validation is complete
    9/3/10 11:34:58 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] application is bound to this version of the runtime
    9/3/10 11:34:58 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] app id com.adobe.AdobeStory
    9/3/10 11:34:58 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] pub id 4875E02D9FB21EE389F73B8D1702B320485DF8CE.1
    9/3/10 11:34:58 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] Application located at /Applications
    9/3/10 11:34:58 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] The certificate of the installed app fails to match either the signature or migration signature of the AIR file
    9/3/10 11:35:01 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] starting cleanup of temporary files
    9/3/10 11:35:02 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] application installer exiting
    9/3/10 11:35:02 AM /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[344] application installer exiting
    9/3/10 11:35:02 AM com.apple.launchd[223] ([0x0-0x40040].com.adobe.air.ApplicationInstaller[344]) Exited with exit code: 9
    Thank you for your help.

  • Can not install or uninstall Adobe Air.  Tells me I do not have administrator privileges

    === Verbose logging started: 4/16/2011  12:40:27  Build type: SHIP UNICODE 3.01.4001.5512  Calling process: C:\DOCUME~1\APIDLU~1\LOCALS~1\Temp\AIR9.tmp\Adobe AIR Installer.exe ===
    MSI (c) (5C:C4) [12:40:27:218]: Resetting cached policy values
    MSI (c) (5C:C4) [12:40:27:218]: Machine policy value 'Debug' is 0
    MSI (c) (5C:C4) [12:40:27:218]: ******* RunEngine:
               ******* Product: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (5C:C4) [12:40:27:234]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (5C:C4) [12:40:27:234]: Grabbed execution mutex.
    MSI (c) (5C:C4) [12:40:27:250]: Cloaking enabled.
    MSI (c) (5C:C4) [12:40:27:250]: Attempting to enable all disabled priveleges before calling Install on Server
    MSI (c) (5C:C4) [12:40:27:265]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (1C:84) [12:40:27:296]: Grabbed execution mutex.
    MSI (s) (1C:D8) [12:40:27:296]: Resetting cached policy values
    MSI (s) (1C:D8) [12:40:27:296]: Machine policy value 'Debug' is 0
    MSI (s) (1C:D8) [12:40:27:296]: ******* RunEngine:
               ******* Product: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (1C:D8) [12:40:27:296]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: User non-assigned for product: 07CAE84500EEDD1109C8000565084666
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: User non-assigned for product: 07CAE84500EEDD1109C8000565084666
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: User non-assigned for product: 606AD6FDD40981C428F34AFC3C30E535
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: User non-assigned for product: 606AD6FDD40981C428F34AFC3C30E535
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: User non-assigned for product: 802CC8C2C5691A84098AFD4B4853F8C1
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: User non-assigned for product: 802CC8C2C5691A84098AFD4B4853F8C1
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: User non-assigned for product: A8ED819A8C8902900010000000000000
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: User non-assigned for product: A8ED819A8C8902900010000000000000
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 00002159221090400000000000F01FEC
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 00002159221090400000000000F01FEC
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 000021599B0090400000000000F01FEC
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 000021599B0090400000000000F01FEC
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 00006FCA9B229EC4896DC2FC53B9CA70
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 00006FCA9B229EC4896DC2FC53B9CA70
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 0599FB1ABDC8E86438AFAEFC0BE07A5D
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 0599FB1ABDC8E86438AFAEFC0BE07A5D
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 0B79C053C7D38EE4AB9A00CB3B5D2472
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 0B79C053C7D38EE4AB9A00CB3B5D2472
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 0D756077321A70C3E844C138CE981581
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 0D756077321A70C3E844C138CE981581
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 0DC1503A46F231838AD88BCDDC8E8F7C
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 0DC1503A46F231838AD88BCDDC8E8F7C
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 0E23E40C6140D434FA9B96967D309AFE
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 0E23E40C6140D434FA9B96967D309AFE
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 163B91C35E9CC9D499AAFC30C97E9FE6
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 163B91C35E9CC9D499AAFC30C97E9FE6
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 1D034B0FAA6BD374B960AAD30DF10D8B
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 1D734FEF466E7EF42B1259029D4A806E
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 1D734FEF466E7EF42B1259029D4A806E
    MSI (s) (1C:D8) [12:40:27:296]: Setting cached product context: machine assigned for product: 1E3325E85947BF44D8BEB49E605D6991
    MSI (s) (1C:D8) [12:40:27:296]: Using cached product context: machine assigned for product: 1E3325E85947BF44D8BEB49E605D6991
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 1F4FCA05A83DECD41874F075C4ED4FB5
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 1F4FCA05A83DECD41874F075C4ED4FB5
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 1F9ACB2AC6655084791DF7CD39837632
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 1F9ACB2AC6655084791DF7CD39837632
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 2509FC9A0A4FD5740AF08A83C826DD36
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 2509FC9A0A4FD5740AF08A83C826DD36
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 26DDC2EC4210AC63483DF9D4FCC5B59D
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 26DDC2EC4210AC63483DF9D4FCC5B59D
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 27E946A053BD45C469E8ECACCE7A2E39
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 27E946A053BD45C469E8ECACCE7A2E39
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 2FFAE75BEE6DC6C41957DEF971FB1CCB
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 2FFAE75BEE6DC6C41957DEF971FB1CCB
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 30A4452B0D01E5E4AB963026FF2CD081
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 30A4452B0D01E5E4AB963026FF2CD081
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 34036E1FCF45B924BAC213FAF9ABB47C
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 34036E1FCF45B924BAC213FAF9ABB47C
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 39300200DBBAFF44991E023BFC92ADC6
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 39300200DBBAFF44991E023BFC92ADC6
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 3950C99C84B39D144BF2E630B5234094
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 3950C99C84B39D144BF2E630B5234094
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 3D6E421B4B19C3E4DA30AB59B9225373
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 3D6E421B4B19C3E4DA30AB59B9225373
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 3e43b73803c7c394f8a6b2f0402e19c2
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 3e43b73803c7c394f8a6b2f0402e19c2
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 3F156ACFADB5ADD4E9A4D5786D19C44C
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 3F156ACFADB5ADD4E9A4D5786D19C44C
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 41F524A416504D110972000680C9AD1E
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 41F524A416504D110972000680C9AD1E
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 44DC6DBCD72B94646B94A2E13771D75F
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 44DC6DBCD72B94646B94A2E13771D75F
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 4C677A77F01DD614880F352F9DCD9D3B
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 4C677A77F01DD614880F352F9DCD9D3B
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 4D17E48404B4BEC4DB6A68952BD8376D
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 4D17E48404B4BEC4DB6A68952BD8376D
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 4D880477777087D409D44E533B815F2D
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 4D880477777087D409D44E533B815F2D
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120611FF
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120611FF
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 4FD70DB160BFAB148B692BAD9500C069
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 4FD70DB160BFAB148B692BAD9500C069
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 53A1318FDF74DA7211D6E097FAD55EEE
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 53A1318FDF74DA7211D6E097FAD55EEE
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 568774731F3A2774DA34AACFB6FC9FF9
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 568774731F3A2774DA34AACFB6FC9FF9
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 56A968A049C8C7F45A7C79D2C3C8DEE9
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 56A968A049C8C7F45A7C79D2C3C8DEE9
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 58F0D9C98565E5A4599A567FBD9261EE
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 58F0D9C98565E5A4599A567FBD9261EE
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 5C1093C35543A0E32A41B090A305076A
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 5C1093C35543A0E32A41B090A305076A
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 5F52F4749CDB5E041B6B6FFB32CF01F6
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 5F52F4749CDB5E041B6B6FFB32CF01F6
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 6030E61781384634B8F8C04C9E73B6CA
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 6030E61781384634B8F8C04C9E73B6CA
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 62287FAB00234BD4EB33D429A2978904
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 62287FAB00234BD4EB33D429A2978904
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 6452961996941D647A162BFC62FE1485
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 6452961996941D647A162BFC62FE1485
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 68AB67CA7DA73301B7448A0200000030
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 68AB67CA7DA73301B7448A0200000030
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 68AB67CA7DA73301B744AA0000000010
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 68AB67CA7DA73301B744AA0000000010
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 697CDB50154318F49BD19EF8A7AD672C
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 697CDB50154318F49BD19EF8A7AD672C
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 6D4B04801DD7781458326ECF0070FE7B
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 6D4B04801DD7781458326ECF0070FE7B
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 6E8A266FCD4F2A1409E1C8110F44DBCE
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 6FBA8444D687D3C44AD9B72B736EDD71
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 6FBA8444D687D3C44AD9B72B736EDD71
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 70D8516E7362FCE45B67734C98661947
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 70D8516E7362FCE45B67734C98661947
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 788E47A8F0F87104FA35BC4A2211AA5A
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 788E47A8F0F87104FA35BC4A2211AA5A
    MSI (s) (1C:D8) [12:40:27:312]: Setting cached product context: machine assigned for product: 791C998D1C8F3774E94CC6F1ABBDB992
    MSI (s) (1C:D8) [12:40:27:312]: Using cached product context: machine assigned for product: 791C998D1C8F3774E94CC6F1ABBDB992
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 7B4228C8B9AA708479DC5598B9CA38EF
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 7B4228C8B9AA708479DC5598B9CA38EF
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 7CEBB04F4A2C00A4B942A750A5C22526
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 7CEBB04F4A2C00A4B942A750A5C22526
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 7E577B2224C65CF4E801A9E52375DB49
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 7E577B2224C65CF4E801A9E52375DB49
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8465CFF88FAF3A34CBF824ABE172C5E4
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8465CFF88FAF3A34CBF824ABE172C5E4
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 84B99039A63E9C640AF38C25109D1B1C
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 84B99039A63E9C640AF38C25109D1B1C
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8722930A111978843A2A0DD97BDD3C3F
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8722930A111978843A2A0DD97BDD3C3F
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F841731866D117AB7000B0D411200
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F841731866D117AB7000B0D411200
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D510006
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D510006
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D510009
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D510009
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D511000
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D511000
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D610001
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D610001
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D610003
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D610003
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D610007
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 8A0F842331866D117AB7000B0D610007
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 9040110900063D11C8EF10054038389C
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 9040110900063D11C8EF10054038389C
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 9040420900063D11C8EF10054038389C
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 9040420900063D11C8EF10054038389C
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 9040AC0900063D11C8EF10054038389C
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 9040AC0900063D11C8EF10054038389C
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 90CE28730004E574A895C9BA6D0FB3C4
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 90CE28730004E574A895C9BA6D0FB3C4
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 940E57139A9FD3A4F891CAF90B54411D
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 940E57139A9FD3A4F891CAF90B54411D
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: 9CF66F1AEE11F2F4899C618F1D6EF97B
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: 9CF66F1AEE11F2F4899C618F1D6EF97B
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: A14EC92C8623C5A4B89275990976589E
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: A14EC92C8623C5A4B89275990976589E
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: A4FA46DB08C82514DA77CFDD0F2580BA
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: A4FA46DB08C82514DA77CFDD0F2580BA
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: B00E525A9066E244D9DC4654C332E3D8
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: B00E525A9066E244D9DC4654C332E3D8
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: B25003A2C1383D140844C33088603605
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: B25003A2C1383D140844C33088603605
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: B6ED15411EBA26F4EBA93B361A57882A
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: B6ED15411EBA26F4EBA93B361A57882A
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: B7B6EC28566992E4C80EDD9943483BD8
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: B7B6EC28566992E4C80EDD9943483BD8
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: BC0EBE1CF4427444999EAB5FE4931346
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: BC0EBE1CF4427444999EAB5FE4931346
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: BDAD5335AB438EA45A9146D887948864
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: BDAD5335AB438EA45A9146D887948864
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: BE8FF29D77DBEA046BB86AFB6C8F66D1
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: BE8FF29D77DBEA046BB86AFB6C8F66D1
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: D03E6E60894BF2449A3470ED147D7F58
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: D03E6E60894BF2449A3470ED147D7F58
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: D7314F9862C648A4DB8BE2A5B47BE100
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: DC3BF90CC0D3D2F398A9A6D1762F70F3
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: DC3BF90CC0D3D2F398A9A6D1762F70F3
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: DDA39468D428E8B4DB27C8D5DC5CA217
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: DDB6C50237B7ED245850A990F3532A83
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: DDB6C50237B7ED245850A990F3532A83
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: DDC3CDCFE35F9324C85ACB94922439B1
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: DDC3CDCFE35F9324C85ACB94922439B1
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: DDE7F2BCF1D91C3409CFF425AE1E271A
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: DDE7F2BCF1D91C3409CFF425AE1E271A
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: E43C19D2CC21B1B4095D13AD4DB7F684
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: E43C19D2CC21B1B4095D13AD4DB7F684
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: e611ef0aa8a9f664ea0e26c57b2c703e
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: e611ef0aa8a9f664ea0e26c57b2c703e
    MSI (s) (1C:D8) [12:40:27:328]: Setting cached product context: machine assigned for product: E636E4B356D976D4AB1681890028F325
    MSI (s) (1C:D8) [12:40:27:328]: Using cached product context: machine assigned for product: E636E4B356D976D4AB1681890028F325
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: E7DE4D8DC459D9442BD1F67930D60F9E
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: E7DE4D8DC459D9442BD1F67930D60F9E
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: ECEC214627185EB439B5C6CECA2DAC78
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: ECEC214627185EB439B5C6CECA2DAC78
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: ED2388710ED978C4F92839519A0B9358
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: ED2388710ED978C4F92839519A0B9358
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: F863BF329931CAE418C7B438CEEBD338
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: F863BF329931CAE418C7B438CEEBD338
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: FCCCF2F43F929B4488F6D6618F145722
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: FCCCF2F43F929B4488F6D6618F145722
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: FCDAC0A0AD874C333A05DC1548B97920
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: FCDAC0A0AD874C333A05DC1548B97920
    MSI (s) (1C:D8) [12:40:27:343]: Setting cached product context: machine assigned for product: FD563AF386D2DE54F838C8A8336E1534
    MSI (s) (1C:D8) [12:40:27:343]: Using cached product context: machine assigned for product: FD563AF386D2DE54F838C8A8336E1534
    MSI (s) (1C:D8) [12:40:27:406]: File will have security applied from OpCode.
    MSI (s) (1C:D8) [12:40:27:453]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi' against software restriction policy
    MSI (s) (1C:D8) [12:40:27:453]: SOFTWARE RESTRICTION POLICY: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi has a digital signature
    MSI (s) (1C:D8) [12:40:27:859]: SOFTWARE RESTRICTION POLICY: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (1C:D8) [12:40:27:859]: End dialog not enabled
    MSI (s) (1C:D8) [12:40:27:859]: Original package ==> c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi
    MSI (s) (1C:D8) [12:40:27:859]: Package we're running from ==> c:\WINDOWS\Installer\84157.msi
    MSI (s) (1C:D8) [12:40:27:937]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (1C:D8) [12:40:27:937]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (1C:D8) [12:40:28:015]: MSCOREE not loaded loading copy from system32
    MSI (s) (1C:D8) [12:40:28:109]: Machine policy value 'TransformsSecure' is 0
    MSI (s) (1C:D8) [12:40:28:109]: User policy value 'TransformsAtSource' is 0
    MSI (s) (1C:D8) [12:40:28:109]: Machine policy value 'DisablePatch' is 0
    MSI (s) (1C:D8) [12:40:28:109]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (1C:D8) [12:40:28:109]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (1C:D8) [12:40:28:109]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (1C:D8) [12:40:28:109]: 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:D8) [12:40:28:125]: APPCOMPAT: looking for appcompat database entry with ProductCode '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (1C:D8) [12:40:28:125]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (1C:D8) [12:40:28:125]: Transforms are not secure.
    MSI (s) (1C:D8) [12:40:28:125]: Note: 1: 2205 2:  3: Control
    MSI (s) (1C:D8) [12:40:28:125]: Command Line: CURRENTDIRECTORY=C:\Documents and Settings\apidlusky\Desktop CLIENTUILEVEL=3 CLIENTPROCESSID=5980
    MSI (s) (1C:D8) [12:40:28:125]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{85FFA26D-EE25-43C8-AE73-191F2347856C}'.
    MSI (s) (1C:D8) [12:40:28:125]: Product Code passed to Engine.Initialize:           ''
    MSI (s) (1C:D8) [12:40:28:125]: Product Code from property table before transforms: '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (1C:D8) [12:40:28:125]: Product Code from property table after transforms:  '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'
    MSI (s) (1C:D8) [12:40:28:125]: Product not registered: beginning first-time install
    MSI (s) (1C:D8) [12:40:28:125]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (s) (1C:D8) [12:40:28:125]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (1C:D8) [12:40:28:125]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (1C:D8) [12:40:28:140]: Adding new sources is allowed.
    MSI (s) (1C:D8) [12:40:28:140]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (s) (1C:D8) [12:40:28:140]: Package name extracted from package path: 'setup.msi'
    MSI (s) (1C:D8) [12:40:28:140]: Package to be registered: 'setup.msi'
    MSI (s) (1C:D8) [12:40:28:140]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:D8) [12:40:28:140]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:156]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:156]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:156]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2729
    MSI (s) (1C:D8) [12:40:28:171]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (1C:D8) [12:40:28:171]: Machine policy value 'DisableMsi' is 0
    MSI (s) (1C:D8) [12:40:28:171]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:D8) [12:40:28:171]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:D8) [12:40:28:171]: Product installation will be elevated because user is admin and product is being installed per-machine.
    MSI (s) (1C:D8) [12:40:28:171]: Running product '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}' with elevated privileges: Product is assigned.
    MSI (s) (1C:D8) [12:40:28:171]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Documents and Settings\apidlusky\Desktop'.
    MSI (s) (1C:D8) [12:40:28:171]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (1C:D8) [12:40:28:171]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '5980'.
    MSI (s) (1C:D8) [12:40:28:171]: TRANSFORMS property is now:
    MSI (s) (1C:D8) [12:40:28:171]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (s) (1C:D8) [12:40:28:171]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Application Data
    MSI (s) (1C:D8) [12:40:28:171]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Favorites
    MSI (s) (1C:D8) [12:40:28:187]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\NetHood
    MSI (s) (1C:D8) [12:40:28:187]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\My Documents
    MSI (s) (1C:D8) [12:40:28:187]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\PrintHood
    MSI (s) (1C:D8) [12:40:28:187]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Recent
    MSI (s) (1C:D8) [12:40:28:187]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\SendTo
    MSI (s) (1C:D8) [12:40:28:187]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Templates
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Application Data
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Local Settings\Application Data
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\My Documents\My Pictures
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs\Administrative Tools
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs\Startup
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu\Programs
    MSI (s) (1C:D8) [12:40:28:203]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Start Menu
    MSI (s) (1C:D8) [12:40:28:218]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Desktop
    MSI (s) (1C:D8) [12:40:28:218]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Start Menu\Programs\Administrative Tools
    MSI (s) (1C:D8) [12:40:28:218]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Start Menu\Programs\Startup
    MSI (s) (1C:D8) [12:40:28:218]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Start Menu\Programs
    MSI (s) (1C:D8) [12:40:28:218]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Start Menu
    MSI (s) (1C:D8) [12:40:28:218]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\apidlusky\Desktop
    MSI (s) (1C:D8) [12:40:28:234]: SHELL32::SHGetFolderPath returned: C:\Documents and Settings\All Users\Templates
    MSI (s) (1C:D8) [12:40:28:234]: SHELL32::SHGetFolderPath returned: C:\WINDOWS\Fonts
    MSI (s) (1C:D8) [12:40:28:234]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (1C:D8) [12:40:28:234]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'NE'.
    MSI (s) (1C:D8) [12:40:28:234]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding COMPANYNAME property. Its value is 'ANL'.
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'c:\WINDOWS\Installer\84157.msi'.
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\setup.msi'.
    MSI (s) (1C:D8) [12:40:28:234]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:D8) [12:40:28:234]: Machine policy value 'DisableRollback' is 0
    MSI (s) (1C:D8) [12:40:28:234]: User policy value 'DisableRollback' is 0
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 4/16/2011  12:40:28 ===
    MSI (s) (1C:D8) [12:40:28:234]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (1C:D8) [12:40:28:234]: Doing action: INSTALL
    MSI (s) (1C:D8) [12:40:28:234]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:D8) [12:40:28:265]: Running ExecuteSequence
    MSI (s) (1C:D8) [12:40:28:265]: Doing action: FindRelatedProducts
    MSI (s) (1C:D8) [12:40:28:265]: Note: 1: 2205 2:  3: ActionText
    Action start 12:40:28: INSTALL.
    MSI (s) (1C:D8) [12:40:28:281]: Using cached product context: machine assigned for product: 1F9ACB2AC6655084791DF7CD39837632
    MSI (s) (1C:D8) [12:40:28:281]: Using cached product context: machine assigned for product: 1F9ACB2AC6655084791DF7CD39837632
    MSI (s) (1C:D8) [12:40:28:281]: Using cached product context: machine assigned for product: 1F9ACB2AC6655084791DF7CD39837632
    Action start 12:40:28: FindRelatedProducts.
    MSI (s) (1C:D8) [12:40:28:281]: PROPERTY CHANGE: Adding UC8DA920D5C41C42E0BF3187BA49984EE4 property. Its value is '{A2BCA9F1-566C-4805-97D1-7FDC93386723}'.
    MSI (s) (1C:D8) [12:40:28:281]: Doing action: ValidateProductID
    MSI (s) (1C:D8) [12:40:28:281]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:28: FindRelatedProducts. Return value 1.
    Action start 12:40:28: ValidateProductID.
    MSI (s) (1C:D8) [12:40:28:281]: Doing action: SetSHAREDADDINFOLDER
    MSI (s) (1C:D8) [12:40:28:281]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:28: ValidateProductID. Return value 1.
    MSI (s) (1C:D8) [12:40:28:281]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is '(computed)'. Its new value: 'C:\Program Files\Adobe\Flash Player\AddIns\airappinstaller'.
    Action start 12:40:28: SetSHAREDADDINFOLDER.
    MSI (s) (1C:D8) [12:40:28:281]: Doing action: CostInitialize
    MSI (s) (1C:D8) [12:40:28:281]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:28: SetSHAREDADDINFOLDER. Return value 1.
    MSI (s) (1C:D8) [12:40:28:281]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (1C:D8) [12:40:28:281]: Baseline: Sorting baselines for {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}.
    MSI (s) (1C:D8) [12:40:28:281]: Baseline: New baseline 2.6.0 from transaction.
    MSI (s) (1C:D8) [12:40:28:281]: Baseline: Sorted order Native: Order 0.
    MSI (s) (1C:D8) [12:40:28:281]: Baseline Data Table:
    MSI (s) (1C:D8) [12:40:28:281]: ProductCode: {AFF7E080-1974-45BF-9310-10DE1A1F5ED0} Version: 2.6.0 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (1C:D8) [12:40:28:281]: Baseline File Table:
    Action start 12:40:28: CostInitialize.
    MSI (s) (1C:D8) [12:40:28:312]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'c:\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:D8) [12:40:28:343]: 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:D8) [12:40:28:343]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (1C:D8) [12:40:28:343]: Doing action: FileCost
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:28: CostInitialize. Return value 1.
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: TypeLib
    Action start 12:40:28: FileCost.
    MSI (s) (1C:D8) [12:40:28:343]: Doing action: CostFinalize
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:28: FileCost. Return value 1.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: Condition
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'c:\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Modifying SHAREDADDINFOLDER property. Its current value is 'C:\Program Files\Adobe\Flash Player\AddIns\airappinstaller'. Its new value: 'c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Modifying WindowsFolder property. Its current value is 'C:\WINDOWS\'. Its new value: 'c:\WINDOWS\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Modifying CommonFilesFolder property. Its current value is 'C:\Program Files\Common Files\'. Its new value: 'c:\Program Files\Common Files\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding AIR property. Its value is 'c:\Program Files\Common Files\Adobe AIR\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding Versions property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding Version property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\'.
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding Resources property. Its value is 'c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\'.
    MSI (s) (1C:D8) [12:40:28:343]: Target path resolution complete. Dumping Directory table...
    MSI (s) (1C:D8) [12:40:28:343]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: TARGETDIR , Object: c:\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: SHAREDADDINFOLDER , Object: c:\Program Files\Adobe\Flash Player\AddIns\airappinstaller\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: WindowsFolder , Object: c:\WINDOWS\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: CommonFilesFolder , Object: c:\Program Files\Common Files\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: AIR , Object: c:\Program Files\Common Files\Adobe AIR\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: Versions , Object: c:\Program Files\Common Files\Adobe AIR\Versions\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: Version , Object: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\
    MSI (s) (1C:D8) [12:40:28:343]: Dir (target): Key: Resources , Object: c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\
    MSI (s) (1C:D8) [12:40:28:343]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (s) (1C:D8) [12:40:28:343]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (1C:D8) [12:40:28:343]: 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 12:40:28: CostFinalize.
    MSI (s) (1C:D8) [12:40:29:578]: Doing action: MigrateFeatureStates
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:29: CostFinalize. Return value 1.
    Action start 12:40:29: MigrateFeatureStates.
    MSI (s) (1C:D8) [12:40:29:578]: Doing action: InstallValidate
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:29: MigrateFeatureStates. Return value 0.
    MSI (s) (1C:D8) [12:40:29:578]: Feature: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Feature: Management; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: Runtime; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: FileTypeRegistration; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: ARPRegistration; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: template.msi; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: template.exe; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: Sentinel; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: AppInstaller; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: WebKit; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: FlashPlugin; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: Setup; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: RootCertificate; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: TimestampingRootCertificate; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: AIRAppInstaller; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: DRMADOBECPVoucher; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: DRM; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: DRM15; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: DRMAIRVoucher; Installed: Absent;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: __FileTypeRegistration65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: __ARPRegistration65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Component: __AIRAppInstaller65; Installed: Null;   Request: Local;   Action: Local
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: Font
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: Class
    Action start 12:40:29: InstallValidate.
    MSI (s) (1C:D8) [12:40:29:578]: Note: 1: 2205 2:  3: _RemoveFilePath
    MSI (s) (1C:D8) [12:40:30:000]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: Extension
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: Font
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2205 2:  3: Class
    MSI (s) (1C:D8) [12:40:30:000]: Note: 1: 2727 2: 
    MSI (s) (1C:D8) [12:40:30:218]: Note: 1: 2727 2: 
    MSI (s) (1C:D8) [12:40:30:218]: Doing action: SetARPINSTALLLOCATION
    MSI (s) (1C:D8) [12:40:30:218]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:30: InstallValidate. Return value 1.
    MSI (s) (1C:D8) [12:40:30:218]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'c:\Program Files\Common Files\Adobe AIR\'.
    Action start 12:40:30: SetARPINSTALLLOCATION.
    MSI (s) (1C:D8) [12:40:30:218]: Doing action: InstallInitialize
    MSI (s) (1C:D8) [12:40:30:218]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:30: SetARPINSTALLLOCATION. Return value 1.
    MSI (s) (1C:D8) [12:40:30:218]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:D8) [12:40:30:218]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (1C:D8) [12:40:30:218]: BeginTransaction: Locking Server
    MSI (s) (1C:D8) [12:40:30:218]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (1C:D8) [12:40:30:218]: Server not locked: locking for product {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    Action start 12:40:30: InstallInitialize.
    MSI (s) (1C:D8) [12:40:31:046]: Doing action: ProcessComponents
    MSI (s) (1C:D8) [12:40:31:046]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: InstallInitialize. Return value 1.
    MSI (s) (1C:D8) [12:40:31:046]: Note: 1: 2205 2:  3: MsiPatchCertificate
    MSI (s) (1C:D8) [12:40:31:046]: LUA patching is disabled: missing MsiPatchCertificate table
    MSI (s) (1C:D8) [12:40:31:046]: Resolving source.
    MSI (s) (1C:D8) [12:40:31:046]: Resolving source to launched-from source.
    MSI (s) (1C:D8) [12:40:31:046]: Setting launched-from source as last-used.
    MSI (s) (1C:D8) [12:40:31:046]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\'.
    MSI (s) (1C:D8) [12:40:31:046]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\'.
    MSI (s) (1C:D8) [12:40:31:046]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{AFF7E080-1974-45BF-9310-10DE1A1F5ED0}'.
    MSI (s) (1C:D8) [12:40:31:046]: SOURCEDIR ==> c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\
    MSI (s) (1C:D8) [12:40:31:046]: SOURCEDIR product ==> {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    MSI (s) (1C:D8) [12:40:31:046]: Determining source type
    MSI (s) (1C:D8) [12:40:31:046]: Source type from package 'setup.msi': 0
    Action start 12:40:31: ProcessComponents.
    MSI (s) (1C:D8) [12:40:31:046]: Source path resolution complete. Dumping Directory table...
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: TARGETDIR , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: SHAREDADDINFOLDER , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: WindowsFolder , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: CommonFilesFolder , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\ , LongSubPath:  , ShortSubPath:
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: AIR , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\Adobe AIR\ , LongSubPath: Adobe AIR\ , ShortSubPath: AIR\
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: Versions , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\Adobe AIR\Versions\ , LongSubPath: Adobe AIR\Versions\ , ShortSubPath: AIR\Versions\
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: Version , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\Adobe AIR\Versions\1.0\ , LongSubPath: Adobe AIR\Versions\1.0\ , ShortSubPath: AIR\Versions\Version\
    MSI (s) (1C:D8) [12:40:31:046]: Dir (source): Key: Resources , Object: c:\docume~1\apidlu~1\locals~1\temp\air9.tmp\Adobe AIR\Versions\1.0\Resources\ , LongSubPath: Adobe AIR\Versions\1.0\Resources\ , ShortSubPath: AIR\Versions\Version\R\
    MSI (s) (1C:D8) [12:40:31:046]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:D8) [12:40:31:046]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:D8) [12:40:31:046]: Note: 1: 2205 2:  3: ActionText
    MSI (s) (1C:D8) [12:40:31:062]: Doing action: UnpublishFeatures
    MSI (s) (1C:D8) [12:40:31:062]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: ProcessComponents. Return value 1.
    Action start 12:40:31: UnpublishFeatures.
    MSI (s) (1C:D8) [12:40:31:078]: Doing action: RemoveRegistryValues
    MSI (s) (1C:D8) [12:40:31:078]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: UnpublishFeatures. Return value 1.
    Action start 12:40:31: RemoveRegistryValues.
    MSI (s) (1C:D8) [12:40:31:078]: Doing action: RemoveDuplicateFiles
    MSI (s) (1C:D8) [12:40:31:078]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: RemoveRegistryValues. Return value 1.
    Action start 12:40:31: RemoveDuplicateFiles.
    MSI (s) (1C:D8) [12:40:31:078]: Doing action: RemoveFiles
    MSI (s) (1C:D8) [12:40:31:078]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: RemoveDuplicateFiles. Return value 1.
    MSI (s) (1C:D8) [12:40:31:078]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (1C:D8) [12:40:31:093]: Note: 1: 2205 2:  3: RemoveFile
    Action start 12:40:31: RemoveFiles.
    MSI (s) (1C:D8) [12:40:31:093]: Doing action: InstallFiles
    MSI (s) (1C:D8) [12:40:31:093]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: RemoveFiles. Return value 0.
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'SentinelFile' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'air.swf' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'template.msi' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'template.exe' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'Setup.swf' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'styles.swf' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'Adobe.cer' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'Thawte.cer' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'digest.s' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'adobecp.vch' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'AdobeAIR.vch' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'AdobeAIR.dll' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'air.exe' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'WebKit.dll' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'NPSWF32.dll' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'Setup.exe' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'airappinstaller.exe' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'adobecp.dll' has no eligible binary patches
    MSI (s) (1C:D8) [12:40:31:156]: The file represented by File table key 'adobecp15.dll' has no eligible binary patches
    Action start 12:40:31: InstallFiles.
    MSI (s) (1C:D8) [12:40:31:156]: Note: 1: 2205 2:  3: Patch
    MSI (s) (1C:D8) [12:40:31:156]: 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:D8) [12:40:31:156]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:D8) [12:40:31:156]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (1C:D8) [12:40:31:203]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (1C:D8) [12:40:31:203]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (1C:D8) [12:40:31:203]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (1C:D8) [12:40:31:203]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    MSI (s) (1C:D8) [12:40:31:203]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (1C:D8) [12:40:31:218]: Doing action: DuplicateFiles
    MSI (s) (1C:D8) [12:40:31:218]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: InstallFiles. Return value 1.
    Action start 12:40:31: DuplicateFiles.
    MSI (s) (1C:D8) [12:40:31:218]: Doing action: WriteRegistryValues
    MSI (s) (1C:D8) [12:40:31:218]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: DuplicateFiles. Return value 1.
    Action start 12:40:31: WriteRegistryValues.
    MSI (s) (1C:D8) [12:40:31:234]: Doing action: RegisterUser
    MSI (s) (1C:D8) [12:40:31:234]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: WriteRegistryValues. Return value 1.
    Action start 12:40:31: RegisterUser.
    MSI (s) (1C:D8) [12:40:31:234]: Doing action: RegisterProduct
    MSI (s) (1C:D8) [12:40:31:234]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: RegisterUser. Return value 1.
    MSI (s) (1C:D8) [12:40:31:234]: Note: 1: 2205 2:  3: Error
    MSI (s) (1C:D8) [12:40:31:234]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    Action start 12:40:31: RegisterProduct.
    MSI (s) (1C:D8) [12:40:31:234]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (1C:D8) [12:40:31:234]: Doing action: PublishFeatures
    MSI (s) (1C:D8) [12:40:31:234]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: RegisterProduct. Return value 1.
    Action start 12:40:31: PublishFeatures.
    MSI (s) (1C:D8) [12:40:31:250]: Doing action: PublishProduct
    MSI (s) (1C:D8) [12:40:31:250]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: PublishFeatures. Return value 1.
    MSI (s) (1C:D8) [12:40:31:265]: Note: 1: 2205 2:  3: Icon
    MSI (s) (1C:D8) [12:40:31:265]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon`
    Action start 12:40:31: PublishProduct.
    MSI (s) (1C:D8) [12:40:31:265]: Doing action: InstallExecute
    MSI (s) (1C:D8) [12:40:31:265]: Note: 1: 2205 2:  3: ActionText
    Action ended 12:40:31: PublishProduct. Return value 1.
    MSI (s) (1C:D8) [12:40:31:312]: Running Script: C:\WINDOWS\Installer\MSIA.tmp
    MSI (s) (1C:D8) [12:40:31:312]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (1C:D8) [12:40:31:312]: Machine policy value 'DisableRollback' is 0
    MSI (s) (1C:D8) [12:40:31:343]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: Header(Signature=1397708873,Version=301,Timestamp=1049650448,LangId=1033,Platform=0,Scrip tType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
    Action start 12:40:31: InstallExecute.
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: ProductInfo(ProductKey={AFF7E080-1974-45BF-9310-10DE1A1F5ED0},ProductName=Adobe AIR,PackageName=setup.msi,Language=1033,Version=33947648,Assignment=1,ObsoleteArg=0,,,Pac kageCode={85FFA26D-EE25-43C8-AE73-191F2347856C},,,InstanceType=0,LUASetting=0,RemoteURTIns talls=0)
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: DialogInfo(Type=0,Argument=1033)
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: DialogInfo(Type=1,Argument=Adobe AIR)
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: SetBaseline(Baseline=0,)
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: SetBaseline(Baseline=1,)
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)
    MSI (s) (1C:D8) [12:40:31:343]: Executing op: ProgressTotal(Total=17,Type=1,ByteEquivalent=24000)
    MSI (s) (1C:D8) [12:40:31:359]: Executing op: ComponentRegister(ComponentId={701D2A09-14BE-45F8-9233-1CE0ED0023A9},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:359]: Executing op: ComponentRegister(ComponentId={95CB0A23-64ED-4832-8C2C-8E1671678EA8},KeyPath=02:\Software \Adobe\Adobe AIR\FileTypeRegistration\,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:359]: Executing op: ComponentRegister(ComponentId={12055C63-FC8C-4CC0-81A5-38E057039902},KeyPath=02:\SOFTWARE \Microsoft\Windows\CurrentVersion\Uninstall\Adobe AIR\UninstallString,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:359]: Executing op: ComponentRegister(ComponentId={8E61C856-01FD-4B39-9D18-90B226C2013C},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.msi,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:359]: Executing op: ComponentRegister(ComponentId={F748231B-0260-4E35-BFB8-7FACFDCE1711},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\template.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:375]: Executing op: ComponentRegister(ComponentId={DC74C3C6-CAB8-4C49-BE18-5B1DCD0D197E},KeyPath=c:\Program Files\Common Files\Adobe AIR\sentinel,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:375]: Executing op: ComponentRegister(ComponentId={F5EE0D89-3BC5-4752-9EBB-533B036EA809},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:375]: Executing op: ComponentRegister(ComponentId={5281ED57-AD60-4235-A34D-F7571E28FC4C},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\WebKit.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:375]: Executing op: ComponentRegister(ComponentId={7A5778CF-5BD0-4931-8224-43B630C24273},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\NPSWF32.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:390]: Executing op: ComponentRegister(ComponentId={1A511B10-11FC-4CAB-9C48-68641F09CF00},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:390]: Executing op: ComponentRegister(ComponentId={76C2FC36-B864-4E7A-9C96-F9B80CDE9A13},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:390]: Executing op: ComponentRegister(ComponentId={5E6626CD-4343-4FF9-8DB0-CFB62473037E},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Thawte Root Certificate.cer,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
    MSI (s) (1C:D8) [12:40:31:390]: Executing op: ComponentRegister(ComponentId={7B2F9BE9-D1F1-4E4D-9AF0-AD085F073B33},KeyPath=c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe,State=3,,Disk=1,SharedDllRefCount=0,Binary Type=0)
    MSI (s) (1C:D8) [12:40:31:406]: Executing op: ComponentRegister(ComponentId={4E0C3DA9-8FD3-487A-92EB-DDE2CDC7EEAA},KeyPath=c:\Program Files\Common Files\A

    I have similar issues.
    What I've tried:
    Installing Windows Installer Cleanup (which is, btw, no longer approved by Microsoft), but the installation of this tool failed
    Removing Adobe AIR with CCleaner
    Cleaning up the registry with CCleaner
    Running the Adobe CS5 Clean script - but AIR is not among the options available
    Adding a "-uninstall" suffix in a shortcut as suggested here: http://www.sevenforums.com/software/68987-cant-install-adobe-air-2.html#post749619
    Using Ninite installer: http://ninite.com/air/ (as suggested here: http://www.sevenforums.com/software/68987-cant-install-adobe-air-3.html#post1318156). I got the error: "Install failed - Could not verify installation (1), 7 - 1329"
    In the registry, under HKEY_CLASSES_ROOT/Installer/Products/, manually removing the entry with .air-files (which is of course risky business)
    Installing an older version of AIR (2.0.2)
    Trying to uninstall - and remove AIR components with Revo Uninstaller Pro. This actually looked quite promising since it appearingly found a lot of "abandoned" AIR files. Unfortunately this didn't help either
    None of the above has helped, since when trying to install AIR I keep getting the administrator error:
    "An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator."
    As far as I can tell from googling various sites, this is a pretty common error, but none of the solution proposals seem to work for me.
    Any suggestions on what else to try???

Maybe you are looking for

  • IDOC not visible in IR but metadata successfully imported

    Hi, I have this wiered issue. I want to import IDOC WPUSKR01 (cashier productivity) from BI. But when I connect to BI system from IR to import Idoc structure, this IDOC is not visible. But I can manually import the metadata from BI in idx2. Now how t

  • Font installation problem

    Hi I have problemin installing font. I used Suitcase X1 for long time and now, after unistall it, when I try to install a font using Font Book, the font is not installed. When I try to add the font to Font Book using CMD+O often Font Book Crashes (Bu

  • Free music for your ears

    [size="4" color="#000066"]Shameless self?promotion of [size="4" color="#000099">http://www.datz.com[size="4" color="#000099">?[size="4" color="#000066"]A?brilliant?new online music download site[size="4" color="#000066"]?[size="4" color="#000066"]WMA

  • Would you Check my Site for Me?

    Hey gang. Site is still under construction. I was hoping a couple of you could just poke around to see if the links work, and see if the load times are on a par with iWeb in general. I know that iWeb code is a bit bloated and slow, but maybe I'll tra

  • Alot of unknown harddrive activity

    hi for the last 2 week i had very much harddrive activity when im using my computer. it sometimes takes more than 3 minutes to get up a explorer window. i tried unified driver 2.03 and 2.45 no difference. im using the same program as i have done for