Adobe AIR 2.0.2 / AS3 - Remove or change headers in NetStream

Hello,
I have problem with modify headers in NetConnection/NetStream functions (NetConnection.AddHeaders) doesn't work. How I can change headers when I usage NetStream.play(URL) ? At this moment any request from AIR enviroment is marked with Referer : app:/index.html. Maybe it's possible to disable referer header in AIR enviroment ?
Best Regards

Hi Tshann
Thanks for reporting this problem! We were aware of this issue and it will be fixed in the final release of AIR2.
-Thanks
Sundeep
AIR Team

Similar Messages

  • How to minimize adobe air android app with as3?

    I have 2 buttons in my app ( my app published by flash cs6 for android ). one button for exit app and one button for minimize app (send app to background and show homepage).what is code for 2nd button in as3?
    b1.addEventListener(MouseEvent.MOUSE_UP,exitapp);
    b2.addEventListener(MouseEvent.MOUSE_UP,minimizeapp);
    function exitapp(e:MouseEvent)
         nativeapplication.nativeapplication.exit();
    function minimizeapp(e:MouseEvent)
         //...what code I should write here?

    I don't think there's a way to do this with standard AIR APIs. On iOS there's no general solution for this, but for Android you could probably make a simple ANE, possibly by using sendTaskToBack.

  • Cannot update Adobe AIR 1.1.0.5790 to  1.5.0.7220 on Windows XP Pro

    I've tried both to remove previous version of Adobe AIR
    runtime from "Program Files > Remove programs" and from command
    line console by running "AdobeAirInstaller.exe -uninstall"
    No luck!
    When I run "AdobeAirInstaller.exe -uninstall" from command
    line console I receive an message :
    "failed (consult log)"
    What is the name of log file or where I can locate it?
    I've also tried to run hardware test on my HDD in order to
    not run into the same trap as described here
    http://www.mmug-dublin.com/blog/?p=32,
    but tests with HD Tune showed that both my HDDs are OK, not
    faulty.

    Thankt tzeng for this tip, here is the contents of my
    .airinstall.log file
    UI SWF load is complete
    starting uninstall
    Beginning install
    Uninstalling product w/ GUID
    {197A3012-8C85-4FD3-AB66-9EC7E13DB92E}
    Error occurred; beginning rollback: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    Rollback due to error complete
    error during install: [ErrorEvent type="error" bubbles=false
    cancelable=false eventPhase=2 text="1612" errorID=0]
    runtime install entering error state: [ErrorEvent
    type="error" bubbles=false cancelable=false eventPhase=2
    text="1612" errorID=0]
    begin quitting
    In general, I think my installation of OS became corrupted, I
    should reinstall my OS in order to get things fixed with Adobe AIR
    runtime installation in particular and to repair a few other weird
    things going on on my desktop PC.
    If this information from my log file is not very helpful,
    then I will reinstall OS.

  • Uninstall of Adobe Air leaves folders and files

    We have a server which had Adobe Air installed.  This was removed but there are still program file folders with files inside.  Why hasn't the uninstall removed these files ?
    Is there a tool or a way to do it properly or do we just have to delete the folder paths as I know Registry entries will also be existing.

    So, from my understanding of uninstallers, there is an install log which documents all the files that was installed.  When the uninstaller runs, it removes all of these files and then deletes the folder.  However, in this case, it does not remove the bin file and so does not remove it, and then when it checks the folder it sees there is a file still located in it so it does not remove the folder.
    I was unable to locate a way to change this in the LabWindows/CVI distribution.  An option might be to include the bin file in the installer.  However, I'm not sure exactly what this bin file does and if this would cause any future issues.  Another option would create a bat file that is distributed with the uninstaller that uninstalls the program and then deletes the folder.
    Jesse S.
    Applications Engineer
    National Instruments

  • Adobe AIR 2 Beta 2

    Does anyone know why Adobe AIR 2 Beta 2 swc files size change between  windows, linux and mac versions?
    Are they indeed different or  just anything else? I was thinking on putting they onto flexmojos maven repository, but I'm not sure if I need to put then all or what.
    VELO

    Well the SWCs are different, but I have no idea how to evaluate what this size differences mean.  Anyway, will assume is just due the compilation.
    FWIW:
    lin
    mac
    win
    AIRAliases.js
    aircore.swc
    aircore.swf
    airglobal.abc
    airglobal.swc
    AIRIntrospector.js
    AIRLocalizer.js
    AIRMenuBuilder.js
    AIRSourceViewer.js
    applicationupdater.swc
    applicationupdater.swf
    applicationupdater_ui.swc
    applicationupdater_ui.swf
    servicemonitor.swc
    servicemonitor.swf
       12.654
        7.830
        4.512
      385.807
      469.153
      290.066
       46.193
       35.747
       86.074
       45.784
       27.481
      504.068
      366.530
        6.582
        3.792
      12.654
       7.843
       4.515
    385.807
    469.867
    290.066
      46.193
      35.747
      86.074
      45.755
      27.480
    504.218
    366.484
       6.596
       3.792
    12.894
      7.834
      4.513
    385.897
    469.111
    293.964
    47.517
    37.068
    89.006
    45.756
    27.480
    504.378
    366.571
      6.581
      3.792
    VELO

  • Cannot connect to stratus from adobe air 1.5???

    Hi,
    I have tried this code from flash actionscript 3 and it connected to stratus and the event netConnectionHandler was called .  When I cutted and pasted it to ADOBE  AIR 1.5 and tested it. Nothing happened.  Did I forget something to make it to work in Adobe Air 1.5?
    Thanks
    var netConnection:NetConnection;
    var ns:NetStream;
              netConnection = new NetConnection();
        netConnection.addEventListener(NetStatusEvent.NET_STATUS, netConnectionHandler);
        netConnection.connect("rtmfp://stratus.adobe.com/8a5434f1fe6ca34eb1b1cc79-d3498defa7ba");
    function netConnectionHandler(event:NetStatusEvent):void{
        trace(event.info.code);

    Following code can work well in AIR1.5.
    Perhaps you developer key is wrong,it is '8a5434f1fe6ca34eb1b1cc79-d3498defa7ba',not '8a5434f1fe6ca34eb1b1cc79-d3498 defa7ba'.
    Please check it.
    stratusPath="rtmfp://stratus.adobe.com/8a5434f1fe6ca34eb1b1cc79-d3498defa7ba/";
    myNC=new NetConnection();
    myNC.client=this;
    myNC.addEventListener(NetStatusEvent.NET_STATUS,stratusStatus);
    myNC.addEventListener(SecurityErrorEvent.SECURITY_ERROR,securityError);
    myNC.addEventListener(AsyncErrorEvent.ASYNC_ERROR,asyncError);
    myNC.connect(stratusPath);

  • Bitmap/picture/whatever size limitation in Adobe Air on iPhone.

    Hi
    I'm gonna start on a new app and was wondering what the max width and height of a picture can be?
    I will import a big picture into my Flash CS5.5 (pro) and place it in a movieclip.
    I found this info on an old site from 2008:
    Note: The maximum dimensions of a bitmap in Flash Player is limited to 2880 pixels in either direction (width or height). If you attempt to create a BitmapData instance that is larger than this restriction, the Bitmap will not be created. This limit is in place to keep people from creating Flash movies that gobble up the client’s RAM. A bitmap that is 2880 x 2880 pixels, will use roughly 32MB of RAM.
    I'm not sure if that is the limit of today's flash version. I'm using Flash CS5.5 Pro.
    And íf now, let's say the max width and height of a picture (or should I rather say bitmap?) is 2880x2880, will the limit change in any way if it's placed in a movieclip?
    According to some more info on the same site, there's no limit if you do a "trick":
    [Workaround] Flash Bitmap maximum width and height
    The trick is to “kidnap” a BitmapData object from a loaded image with dimension over the limit of 2880 pixels (Which flash allows. Huh! Yes Flash can actually handle bitmaps larger the the limit. It just doesn’t let you create one.).
    It’s simple. Create a dummy image with the dimension you need. Save it and make it accessible to Flash. Dynamically load it using ActionScript. And take the loader object’s BitmapData object. That’s why I termed it “kidnap”. We are actually just taking the child of the parent object(loader object), which is the BitmapData, and use it like we build it ourselves.
    Here’s the actionscript ,
    // 1. Create an image loader and
    var DummyImageLoader:Loader = new Loader;
    // 2. Assign a function to “kidnap” the BitmapData object
    DummyImageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, DummyImageOnComplete);
    // 3. Load the image with the preferred dimension
    var DummyImageRequest:URLRequest = new URLRequest(“dummy_image.jpg”);
    DummyImageLoader.load(DummyImageRequest);
    function DummyImageOnComplete(evt:Event):void {
         var DummyImageBitmap = Bitmap(DummyImageLoader.content);
         // “kidnap” the BitmapData object
        var ValidBitmapData:BitmapData = DummyImageBitmap.bitmapData;
        // you can now use ValidBitmapData to draw any element larger than 2880×2880
    var InvalidBitmapData:BitmapData = new BitmapData(3000, 3000);
    Now, I don't think I can do it this way anyway, I need to import it and manually put stuff on the picture in the movieclip in the Flash IDE.
    Is there a difference in picture size limit between normal Flash stuff (no Adobe Air) and Adobe Air? Maybe the picture limit also changes if the app is made for an iPhone?, ie, size limit for Adobe Air could be 2880x2880, but the iPhone can only handle max 2000x2000 so I must not do bigger than 2000x2000.
    Speaking of picture size limits in Flash, I experienced a problem once in Flash MX. I had a picture of max size imported, I could scroll to the far right, left, up and down in the Flash Player (not IDE, this was with code) and I could see every bit of the picture, so it all worked ok... but for some reason, the graphics I manually placed on the picture (the graphics were tiny objects I've drawn myself placed in movieclips) only showed in a limited area... for instance:   the big picture I imported was 2880x2880, I have the starting position in the bottom right corner of the picture. I place some graphics on the picture far apart from each other.. first one on .x=2880/y=2880 (bottom right), then I placed several from that position to the far left, til I reached x=0/y=2880... for some reason the graphics half way to the left stopped showing. I only placed like 10 small things. So, if the picture size limit is 2880x2880, it can not show anything else beyond a certain point? only the picture itself?
    I apologize for my somewhat bad English... I find it hard to express what I want to say

    Ah, nice page... 16.7X mill seems to be the rough number.
    I didn't look such pages up as I wasn't sure, and still arn't if that size applies to everything with Flash. Could vary depending on what it's used for, like Adobe Air desktop apps, Adobe Air iPhone apps etc.... But I guess I'll just have to accept and hope it's the same for all.
    The largest square bitmap allowed is 4,095 x 4,095 pixels.  Nonrectangular size limits vary, for example, the following sizes all fit within Flash Player 10 limits:
    2169 x 7735
    3133 x 5355
    3315 x 5061
    3615 x 4641
    4095 x 4097
    4097 x 4095
    4641 x 3615
    5061 x 3315
    5355 x 3133
    7735 x 2169
    So guess I could make any size I want, as long as it's not above 7735xXXXX / XXXXx7735 and 16.7X million pixels.
    Wonder if that's how it is, or if I could have like 10000x1600...couldn't find that answer on that page.

  • Amazon rejection - The link to Adobe AIR in your app needs to be updated - How do I change this

    Here's a message I got  from Amazon:
    Device Tested : Motorola Droid (2.3), HTC Evo (2.3.3),Samsung Galaxy Tablet(2.2)
    Issue: The link to Adobe AIR in your app needs to be updated so that customers are taken directly to the Adobe AIR app page on the Amazon Appstore. The Download URL is http://www.amazon.com/gp/mas/dl/android?p=com.adobe.air Steps: i)Launch the application. ii)Tap on "Install">> "Appstore". Observe that the application goes to the home page of the Amazon app store for the installation of Adobe Air.
    I am assumed I could change this in my xml file:
    I change the URL in this line to the one they provided (http://www.amazon.com/gp/mas/dl/android?p=com.adobe.air):
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
    However, when it is published it always changes it back to the old address. How do I prevent this?

    Thanks.
    I think I found the answer couresty of Benny 7500 on Aug 11, 2011 9:18 AM.
    For me works editing of Markets.xml file at:
    "C:\Program Files\Adobe\Adobe Flash CS5.5\en_US\Configuration\Android\Markets.xml"
    and replacing of Amazon Appstore key to
    <market name="Amazon Appstore" url="http://www.amazon.com/gp/mas/dl/android?p=com.adobe.air"/>
    That's all!

  • How to Play/Pause All for Adobe Air Application using AS3 in Flash CS4?

    I am new to Flash and I'm creating an educational application in AS3 in Flash CS4 for Adobe Air. I want to use buttons to play and pause all content (movieclips AND sound).
    I have created play and pause buttons that worked by switching the frame rate between 0 and 20, unfortunately I've realised that it's never really 0fps but rather 0.01fps and so it continues playing, albeit very very slowly. Also this doesn't affect the audio; I have set sound files to Stream which are synced to movieclips on their timelines, but even when the application is set to 0fps the audio continues.
    Since I have various levels with numerous movieclips each with synced audio, what i'd like is to be able to do is pause absolutely everything within each movieclip with one button and to be able to resume from the same place using another button. Is this possible? If not, is there a global function to pause/resume the entire application/program?
    Thanks in advance for your help!

    Its possible but you would need to tell each movieclip and audioclip to play/pause. You can create a for loop inside your mouse event function to find each movieclip and pause/play its timeline and a separate for loop for audio clips. Also instead of setting fame rate to 0 for pause just use a stop() command.

  • Any News from Adobe Air SDK, on why we still can't REMOVE "android.permission.INTERNET" from a release compile?

    Is there any new developments on the Adobe Air issue, of being able to COMPLETELY REMOVE the "android.permission.INTERNET" from the manifest file?  As of today, you can still completely remove the "android.permission.INTERNET" from the manifest, bundle your app with Captive Runtime, and Adobe Air SDK will still "tack" the permission onto the end of the manifest block. With users and privacy concerns these days, surely Adobe would recognize that developers building apps that DO NOT REQUIRE Network Access, should be able to remove that permission. Any help on this?

    I see Flash will now be able to export iPhone apps directly.  Although Flash itself will still not run on the iPhone.  It would be great if Director had that functionality a well.  Even better if apps could run on both the iPhone and Blackberry!
    Mike M

  • Remove adobe air

    Can anyone PLEASE help me to remove adobe air from my system.
    I am using windows xp and have tried add/remove programs but that
    doesn't work.

    I would try removing the program via the standard add/remove programs dialog as the above posted already detailed..
    1. Select Start > Settings > Control Panel.
    2. Open the Add or Remove Programs panel.
    3. Select Adobe AIR to remove the runtime.
    4. Click the Change/Remove button.
    If you're on Vista or Windows 7, the steps may vary slightly but it should be pretty much the same.
    Your other option is brute-forcing the removal and scrubbing any trace of Adobe AIR from your system and registry. It's a pretty effective utility in diagnosing broken programs and removing those stubborn broken uninstallers. If all else, remove it with the perfect uninstaller utility. It's a paid product but it's worth the one-time fee. You can put it on three systems at a time, and use it forever. I had to download it last week when my Adobe Photoshop started crashing and I couldn't uninstall it. I spent hours trying to uninstall manually then just broke down and used the utility and it took literally seconds. lol, I couldn't believe it.

  • Help removing Adobe Air

    I made the mistake of trying to install the BBC Iplayer desktop from bbc iplayer website for those that know of it as something seem sto have gone wrong with the install and caused adobe air to act all mental on me and now each time i visit the bbc iplayer website i get the message
    "this application requires a version of adobe air which cannot be found, please download the latest version from....."
    I also get that message if i try to unistall adobe air.
    I googled this and seen that its a big issue with adobe air, tried all the fixes, the comman prompt tip but nothing works
    i got the following from my log
    [2011-05-20:19:35:01] Runtime Installer end with exit code 5
    [2011-05-30:12:00:23] Runtime Installer begin with version 2.6.0.19140 on Windows XP x86
    [2011-05-30:12:00:23] Commandline is:
    [2011-05-30:12:00:23] No installed runtime detected
    [2011-05-30:12:00:30] Starting runtime install. Installing runtime version 2.6.0.19140
    [2011-05-30:12:00:30] Reinstalling c:\docume~1\john\locals~1\temp\air1239.tmp\setup.msi
    [2011-05-30:12:00:48] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2011-05-30:12:00:48] Runtime Installer end with exit code 5
    can anyone help or suggest what I do as I do enjoy using the bbc iplayer website and this has become a major annoyance.

    I have exactly the same error now. Don't know why all of a sudden this appears:
    [2011-09-21:13:29:55] Runtime Installer begin with version 2.7.1.19610 on Windows XP x86
    [2011-09-21:13:29:55] Commandline is:
    [2011-09-21:13:29:55] No installed runtime detected
    [2011-09-21:13:29:57] Starting runtime install. Installing runtime version 2.7.1.19610
    [2011-09-21:13:29:57] Installing msi at d:\temp\windows\aircb.tmp\setup.msi with guid {FDB3B167-F4FA-461D-976F-286304A57B2A}
    [2011-09-21:13:30:05] Got an unexpected fatal error while quitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2011-09-21:13:30:05] Runtime Installer end with exit code 5
    Tried unisntalling and re-isntalling when I got a "please re-isntall air"-kin-of-message when trsying to isntall air-files. Did you find any solutions to your problem that might help me?

  • IOS and Android Native Scroll in Adobe AIR

    I think it would be a great idea to implement the smooth scroll present in native iOS and Android applications for use in Adobe AIR projects.
    Currently, the only way to obtain smooth scrolling lists with images is using StageWebView to show the image list in HTML format, and then awkwardly implement some JavaScript / AS3 communication functionality so the list in the StageWebView is interactive and can communicate with the main program. This is excessively complicated and very error prone (I've found some inexplicable JavaScript errors that only happen in the iPad, not in Android, and not in the PC!).
    It would be way better to be able to skip all the StageWebView process altogether and being able to use a simple AS3 API to put any sprite/movieclip into a scrollable canvas which can be moved using the iOS native scroll.
    Using Flash animation to simulate the scroll in a list with images is too slow in the iPad and gives a bad user experience. iPad users expect the native iPad scroll, not some poor jerky simulation. A native scroll is the only way to go.
    And even though I talk about the iPad, this should be applicable to the native Android scroll, too.
    Scrolling is a VERY BASIC action in a tablet, so this should be implemented as soon as possible.
    Actually, I'm amazed we're already at AIR 3.0 beta, and still after all this time nobody thought of this. All sorts of fancy stuff is being added to AIR (hardware accelerated video, webcam and microphone access, etc...) but still something as basic and important as a smooth scroll, which every tablet user expects, is still not possible in Adobe AIR. We either have to implement some slow Flash animated scroll, or use the extremely complicated StageWebView with JavaScript/AS3 communication approach (I'm using a third party library called StageWebViewBridge for the JS/AS3 interoperations, which is great, but still, it's a far from ideal solution, since it's pretty fiddly and the JavaScript code doesn't always work properly in iOS).

    Hi again jackson@mja.
    I've given your scroll component a try just for some static texts, and I've found quite a few important bugs:
    1. If the referenced sprite/movieclip is shorter than the scrolling area, it starts bouncing infinitely in a quite funny way,
        which renders the component unusable. Sometimes it even happens when the content is not shorter.
    2. If your component is used inside another sprite/movieclip which is added dynamically from code ("addChild(mySprite);"),
        it doesn't work and stops with an error, because the EventListener for mouseDownHandler is being added to this.stage
        in the constructor, but a dynamic movieclip doesn't have access to the stage while in the constructor step (unless it is
        already in the stage added in the Flash IDE, such as in your FLA example). To fix this, I've added the following code
        to the ScrollArea() constructor:
    this.addEventListener(Event.ADDED_TO_STAGE, init);
    this.addEventListener(Event.REMOVED_FROM_STAGE, close);
        And then I've added the following listener functions:
    private function init(event:Event):void {
    this.removeEventListener(Event.ADDED_TO_STAGE, init);
    this.stage.addEventListener(MouseEvent.MOUSE_DOWN, this.mouseDownHandler);
    private function close(event:Event):void {
    this.stage.removeEventListener(MouseEvent.MOUSE_DOWN, this.mouseDownHandler);
    3. Also, the scrollbar is only correctly rendered if the scroll area is located at the up and left corner of the stage. To put text somewhere else, the component must be put inside a movieclip.
    4. This is not really important, but I've found the following variables are never user and so I've removed these lines:
    var xy:Point = this.localToGlobal(new Point(this.x, this.y));
    var wh:Point = this.localToGlobal(new Point(this.width, this.height));
    var sign:int = sign(obj[i]);
    I hope this can help you improve your classes.
    Best regards,
    OMA2k

  • Porting existing Android native app to Adobe AIR

    I indent to port a existing Android native app to Adobe AIR for android. Reasons: To use my existing AS3 skills, "cost" for native is too high and soon port it to iOS.
    Difficulties I face here:
    Existing app package, say "com.mygame.myapp" has to be retained. By using FB with AIR SDK, we get a "air." prefix to the package name. It becomes "air.com.mygame.myapp".
    Will this solution still solve the problem in AIR SDK removing "air." prefix from package name has any working solution!?.
    The help link http://helpx.adobe.com/air/kb/opt-out-air-application-analytics.html is dead now. iOS specific is found here Opt-out | Adobe AIR app analytics | iOS
    Please suggest me a Mac suitable solution.
    In Android, using a ".keystore" file, we need to export as the ".APK" file. In AIR, if we publish using a new ".p12" signature file would it be compatible with Google Play, and it rules.
    App's existing users should find difficulty in upgrading the app.
    Another unanswered thread Possible to remove "air." appended on package and target a .keystore rather than .p12?
    Thanks a lot.

    I was able to figure it out with the help of Jeff Ward Ooh, I just discovered how to easily remove the 'air.' prefix when packaging…
    Tested and works fine with AIR SDK 15, Mac OSX 10.10 Yosemite. actionscript 3 - Android App ID prefix problem - Stack Overflow
    java -jar /FULL_PATH_TO_AIR_SDK/lib/adt.jar -package -target apk-captive-runtime -storetype jks -keystore <DEVELOPER>.keystore -storepass <PASSWORD> Main.apk Main-app.xml Main.swf -extdir /PATH_TO_ANE_DIRECTORY

  • 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.

Maybe you are looking for