An installer created with LV2011SP1 won't install on a machine with LV2013 installed

I'm currently working on several FPGA drivers generated with Labview 2011SP1, which include a dll interface and a test program to test functionality of the dll. I used an installation pacakge to install 1) the dll to system32
                                                               2) the .dll/.lib/.h to an absolute path on the target PC.
                                                               3) the .exe test program to an absolute path on the target PC.
                                                               4) the necessary NI components (The NI Labview Run-Time Engine 2011 SP1 f5 and NI R series RIO 13.1),
                                                                   via the additional installers section of the Installer dialog.
This has been working fine, up until the customer installed Labview 2013 on his system. When I then gave him the next release of the package, it fails to install, with the message <files> "Incompatible with products already installed". Via trial and error I removed various of the 4 items listed above and the problem only disappears when 4), the NI components are removed. I then uninstalled LV2013, and retried my installation and it works. The customer doesn't need LV2013 on the machine so this fix is ok for now, but I am now concerned that all these similar packages I'm producing, delivered to several different customers, could be prevented from working if a target PC contains a later version of Labview than the one it was developed on.
Can someone confirm this issue and how it can be rectified?
I've found the following http://digital.ni.com/public.nsf/allkb/F41A941BE2AFAC47862574B100736584 issue which is possibly the same issue, but with a much older version of LV (I'd have expected it to have been fixed by LV2011SP1!). The fix for the above issue is to uninstall the runtime engines, however they don't appear on the list of installed NI products, and to unsintall them I apparently need to use an unsupported tool called msiblaster? Even if this worked, if the customer wanted to use LV2013 in the future, how could I support that?
I'm getting increasingly frustrated that I spend more of my time trawling the forums finding fixes for LV bugs than trawling my own code fixing my own bugs... 

redfrank wrote:
I'm getting increasingly frustrated that I spend more of my time trawling the forums finding fixes for LV bugs than trawling my own code fixing my own bugs... 
There's an easy solution to that problem.
Write more buggy code.....
This joke was brought to you by increasing levels of frustration during a day of non-reproducible  Real-Time benchmarking.....
Say hello to my little friend.
RFC 2323 FHE-Compliant

Similar Messages

  • Installer (created with CCP) quits

    I created an installer for Win64Bit with all programs. Now it won't work though the packager said it was successful created.
    It just quits after creating a CC shortcut on the desktop and showing a status bar with "Please wait while Windows configures installer"
    Any ideas?

    Hi av_mleh,
    Do you have any other Adobe software installed on your machine. Perform selective startup and try installing again: http://windows.microsoft.com/en-in/windows-vista/run-selective-startup-using-system-config uration .
    If still the same issue please attach the PDApp.log located in temp.
    Regards,
    Romit Sinha.

  • How to get installer created via LV project to install executables on a Vista machine which are in admin mode?

    I have an installer for a program created via a LV project which installs two executables.
    On Vista, only one of the executables is in admin mode.  So, I always have to right click
    on the other and select 'run as administrator'.
    Any way of getting both of them set to run as administrator by default?

    Do your executables include a manifest inside them or are you installing a manifest file next to your executables?
    What happens if you just manually copy the executables to your system rather than installing them? Same thing, or different behavior?
    -Bob

  • Win 7, 64-Bit, p6630f, #BM421AA#ABA. Installation Pkg for HPSolCenter won't install .msi?

    Somehow my Windows Installation pkg for  The HP Solution Center for my desktop Pavillion has been lost and the error message I recieve is; Error Code #2761 and, in the past it has come up as an .msi issue, which I have found to be a network issue.  It seems to be a sensitive issue w/warnings I receive.  Can you help me get my installation pkg for this issue up and running?

    Hello and thanks for joining HP forums.  Please go to the link below and enter your HP printer product number.  Download and install that latest software and any updates suggested.  This should correct this error.  Alternatively if you have the disc that came with your printer you can install the software from the disc and it should resolve the issue.
    http://www8.hp.com/us/en/support-drivers.html
    Thanks.
    I am an HP employee.
    Please post rather than sending a Private Message. It's good for the community and I might not be able to get back quickly.- Thank you.
    Please click the White Kudos star on the left to say thanks.
    Please mark Accept As Solution if this resolves your issue.

  • Printer installation crashed and now won't install

    Hi,
    I'm running 10.9.2 on a MacBook Pro.
    I tried to install the software for a Samsung printer and about half way through the process the laptop was closed by my daughter. I tried to restart the process but after I force quit the installation and tried again the progress bar got about half way and the 12 hours later was still there.
    I have cancelled it again as when it's on the screen I can't easily do anything as it forces to the front.
    As an aside when I restarted the Mac by desktop picture has been changed to a default one, which has never happened befrore.
    Any help will be much appreciated.
    Vicki

    I have tried all combinations of home button/power button, holding for more than 30 seconds each time. Tried the home button + usb cable. But nothing is working! It's just as if it's dead, but I know it's got 100% battery so there must be some way to kick start it.

  • J2ME: jar created using Eclipse won't install..

    hi
    i am using following code to create this J2ME : jar package but, it doesnt gives installation error in my mobile.. :(
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class Login extends MIDlet implements CommandListener
           private Display display;
           private TextField userName,password;
           public Form form;
           private Command loginCommand, exitCommand;
           private Image img;
           public Login() {
             form = new Form("Login Screen");
             userName = new TextField("LoginID:", "", 30, TextField.ANY);
             password = new TextField("Password:", "", 30, TextField.PASSWORD);
             exitCommand = new Command("Exit", Command.EXIT, 0);
             loginCommand = new Command("Login", Command.OK, 2);
             try
               img = Image.createImage("/loginscreen.jpg");
             catch(Exception e)
               System.out.println(e.getMessage());
            public void startApp()
             display = Display.getDisplay(this);
             try{
                  form.append(img);
             catch(Exception e)
             form.append(userName);
             form.append(password);
             form.addCommand(exitCommand);
             form.addCommand(loginCommand);
             form.setCommandListener(this);
             display.setCurrent(form);
           public void pauseApp()
           public void destroyApp(boolean unconditional)
             notifyDestroyed();
           public void validateUser(String name, String password)
             if (name.equals("default") && password.equals("default"))
               showMsg();
             else
               tryAgain();
           public void showMsg()
             Alert success = new Alert("Login Successfully", "Your Login Process is completed!", img, AlertType.INFO);
             success.setImage(img);
             userName.setString("");
             password.setString("");
             display.setCurrent(success, form);   
           public void tryAgain()
             Alert error = new Alert("Login Incorrect", "Please try again", img, AlertType.ERROR);
             error.setTimeout(900);
             error.setImage(img);
             userName.setString("");
             password.setString("");
             display.setCurrent(error, form);
           public void commandAction(Command c, Displayable d)
             String label = c.getLabel();
             if(label.equals("Exit"))
               destroyApp(true);
             else if(label.equals("Login"))
               validateUser(userName.getString(), password.getString());
    }hello world sort J2ME applications are still working..
    how to get this jar package to work?? have i made any mistake while coding it??

    hello Darryl.Burke
    as soon as my WTK started to emulate applications i was able to see an exception in it something like ClassNotDefined.. i understood that i named file under src as well as class in caps which was the problem .. (java is a case-sensitive language)
    anyways thanks alot for all help i got from yourside..
    regards
    Anshul Bhatnagar

  • Ref Movie created on Mac won't play on Windows machine

    I created a Ref Movie on a Mac. Copied Ref Movie and full movie to a WinPC. Got -2048 error. Could view full movie. Also, Ref Movie file size was reported as 0k on WinPC.
    Used WinPC to access and run both movies from the Mac. Same problems.
    Created Ref Movie on WinPC, copied both to Mac. Mac played the both just fine. However, Mac reported file size of the Ref Movie as 0K.
    Can I created Ref Movies on a Mac that can be used on a WinPC (I realize full movie has to also be available on WinPC)?

    Turns out the problem is file system related. When OSX copies a file to a Win machine, it also creates a hidden file with additional information. It my case, OSX is creating the following two files on my WinPC:
    MyRefMovie.mov
    ._MyRefMovie.mov (a hidden file on a Windows machine)
    The application I use to create the ref movie seems to generate my problem, because it is putting the ref movie data into the hidden file, not the unhidden file. Apple's MakeRefMovie utility puts the information into the unhidden file. The behavior of creating hidden files is part of OSX (though there is a utility called BlueHarvest that can control it), but what goes into the files seems to be an application level issue. Hope this helps others who have the problem.

  • Apple Mobile Device Service (AMDS) won't install with iTunes,either V10.7 or V11. The service can't be started b/c the software is not there. Windows 7 with latest service pack. V11 iTunes installs

    Apple Mobile Device Service (AMDS) won't install with iTunes,either V10.7 or V11. The service can't be started b/c the software is not there. Windows 7 with latest service pack. V11 iTunes installs fine, iPod found, no iPhone 5 b/c no AMDS.  Error "insufficient premissions to install AMDS" Tried numerous uninstall / reinstall combinations, installed iTunes as administrator, etc.  Somethings not right. What the Heck ?

    See the following article for dealing with Apple Mobile Device Services: http://support.apple.com/kb/TS1567
    Downloading and installing iTunes will not fix this problem. If the other troubleshooting steps do not work, go to the Control Panel and uninstall iTunes, Apple Mobile Device Services, Quicktime and any other Apple program that might be present. Reboot your computer, then download and install the latest version of iTunes.

  • AIR won't install after Yosemite with Error "Installer Damaged"

    Error message ""Adobe AIR Application Installer" is damaged and can't be opened"
    I've uninstalled previous versions,using uninstaller, removed all incidents of AIR files, and my computer is not connected to another Hard Drive or Time Machine. Does anyone know an answer to this?  Thanks.
    here's the log file
    Oct 29 07:57:05 Jeremys-Airmac-2 kernel[0]: hfs: mounted Adobe AIR on device disk2s1
    Oct 29 07:57:05 Jeremys-Airmac-2.local mds[32]: (Volume.Normal:2464) volume:0x7faf54078800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Adobe AIR
    Oct 29 07:57:16 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Runtime Installer begin with version 15.0.0.293 on Mac OS 10.10.0 x86
    Oct 29 07:57:16 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Commandline is: -psn_0_344148
    Oct 29 07:57:16 Jeremys-Airmac-2.local Adobe AIR Installer[583]: No installed runtime detected
    Oct 29 07:57:17 Jeremys-Airmac-2.local Adobe AIR Installer[583]: The function ‘CGFontSetShouldUseMulticache’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    Oct 29 07:57:20 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Relaunching with elevation
    Oct 29 07:57:20 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Launching subprocess with commandline /Volumes/Adobe AIR/Adobe AIR Installer.app -ei
    Oct 29 07:57:25 Jeremys-Airmac-2.local authexec[588]: executing /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Runtime Installer begin with version 15.0.0.293 on Mac OS 10.10.0 x86
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Commandline is: -ei
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: No installed runtime detected
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Library/Application Support/Adobe"
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /usr/sbin/chown -hfRP jeremy "/Users/jeremy/Library/Application Support/Adobe"
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/jeremy/Library/Application Support/Adobe"
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /usr/sbin/chown -hfRP jeremy "/Users/jeremy/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Oct 29 07:57:25 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Starting silent runtime install. Installing runtime version 15.0.0.293
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Subprocess chown succeeded
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Subprocess chown succeeded
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Subprocess chown succeeded
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[588]: Runtime Installer end with exit code 0
    Oct 29 07:57:28 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Elevated install completed
    Oct 29 07:57:33 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Launching subprocess with commandline /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR Updater -installupdatecheck
    Oct 29 07:57:33 Jeremys-Airmac-2.local Adobe AIR Installer[583]: Runtime Installer end with exit code 0
    Oct 29 07:57:34 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Runtime Installer begin with version 15.0.0.293 on Mac OS 10.10.0 x86
    Oct 29 07:57:34 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Commandline is: -installupdatecheck
    Oct 29 07:57:34 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Installed runtime (15.0.0.293) located at /Library/Frameworks/Adobe AIR.framework
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Performing pingback request
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Pingback request completed with HTTP status 200
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Starting runtime background update check
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Begin Background update download from http://airdownload.adobe.com/air/3/background/macos/x86/patch/15.0.0.293/update
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Unpackaging http://airdownload.adobe.com/air/3/background/macos/x86/patch/15.0.0.293/update to /Users/jeremy/Library/Application Support/Adobe/AIR/Updater/Background
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Runtime update not available
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Unpackaging cancelled
    Oct 29 07:57:35 Jeremys-Airmac-2.local Adobe AIR Installer[600]: Runtime Installer end with exit code 0
    Oct 29 07:58:36 Jeremys-Airmac-2 kernel[0]: proc 617: load code signature error 4 for file "Adobe AIR Application Installer"
    Oct 29 07:58:36 Jeremys-Airmac-2.local amfid[254]: /Applications/Utilities/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer signature not valid: 0xfffefa2a
    Oct 29 07:58:49 Jeremys-Airmac-2 com.apple.xpc.launchd[1] (com.apple.xpc.launchd.oneshot.0x1000000f.Adobe AIR Application Installer[617]): Service exited due to signal: Killed: 9

    Alright y'all (jklawmd, Supritha Papannajklawmd, and anyone else having this issue),
         I was having this same exact issue, and I actually referred to your post hoping for a fix (that I obviously did not find), however, I did discover a work around!!! I use "Adobe AIR" for my "Pandora One Desktop Application", but every time I opened the installer for "Pandora One" it gave me the same exact error. Here is what I did to fix it (Hoping it helps y'all too):
    BEFORE starting ensure that the "AIR Program" that you want to install is downloaded and located in your "Downloads" folder
    Uninstall "Adobe AIR" using the included uninstaller (Navigate to your "Utilities" folder in a "New Finder Window" in order to find this, once you're there you can't miss it)
    Delete all previous "Adobe AIR" downloads
    Download a new "Adobe AIR" Installer from "Adobe" (Sounds redundant I know, but bear with me)
    Install "Adobe AIR" using the most recent download
    VERY IMPORTANT: DO NOT ATTEMPT TO INSTALL THE "AIR PROGRAM" YET
    Once the "Adobe AIR" Installation is complete navigate to "File" and select "New Finder Window"
    Once there select the "Applications" folder from the menu bar on the left of the window (Should be under "Favorites")
    Navigate to your "Utilities" Folder (Again)
    Locate the icon for "Adobe AIR Application Installer" and open it; This will open a new window
    Once the new window is open, navigate to your "Downloads" folder and locate the "AIR Program" that you want to install select the "AIR Program" and click "Open" (Bottom right hand corner)
    TaDa!!!
    Following those steps should culminate in the initialization of the install process for the program that you weren't able to install before, and from there it is business as usual (selecting and answering to the necessary install prompts for the "AIR Program"). It seems like there is a glitch somewhere between "Yosemite" and "Adobe AIR" that prevents the "Adobe AIR Application Installer" from auto-running properly when you try to open the sub-program. However, initializing the "Adobe AIR Application Installer" FIRST allows it to get up and running before the sub-program communicates with it. This fixed it for me right away, please let me know whether it works for your specific "Adobe AIR"/"AIR Program" set, if not I will download your "AIR Program" and see if I can't find another way. Also, has anyone contacted either Adobe Support or Apple Support directly with this yet??
    I hope this helps, personally, I don't know where I would be without my "Pandora One Desktop Application"!!!

  • I uninstalled ver 11, installed ver 10.7 because ver11 won't work on my XPsp3 machine with my vinyl conversion software to mp3, but upon launch i get :"itunes library.itl cannot be read because it was created with a newer version of itunes'.

    I uninstalled and deleted ver 11, installed ver 10.7 because ver11 won't work on my XPsp3 machine with my vinyl conversion software to mp3, but upon launch i get :"itunes library.itl cannot be read because it was created with a newer version of itunes'.

    Hello, Stephen.
    Thank you for the question.  You will need to rebuild your iTunes library file in order to open an older version of iTunes.  Below, I have included the article that walks you through this process.  Start with the section labeled Re-creating the iTunes Library file.
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Cheers,
    Jason H. 

  • When I try to install itunes 10.5.2, I get the following error message "The installer has insufficient privileges to modify this file c\progamfiles\itunes\itunes.exe and won't install. help

    When I try to install itunes 10.5.2, I get the following error message "The installer has insufficient privileges to modify this file c\progamfiles\itunes\itunes.exe and won't install. help

    Okay ... so it's not one of the cases of bodged up ACLs on the Apple folder in Common Files. (That's been underlying a few of the recalcitrant E7W5s.
    Just in case, let's try the fixit from the following document:
    Fix problems with programs that can't be installed or uninstalled

  • Mountain Lion won't install on mid-2010 iMac with Snow Leopard

    Using the same Apple ID I used to purchase Mountain Lion on my Mac Pro, I signed into the Mac App Store on my iMac and downloaded Mountain Lion with no issues.  The iMac is running 10.6.8.
    When I launch the ML installer and accept the terms, the install screen appears but the Install button is greyed out as is the icon for my hard disk, Macintosh HD.  Below the OS X Mountain Lion banner it says "OS X cannot be installed on "Macintosh HD".
    Snow Leopard was installed on this machine as part of a family pack and I still have the DVD.  Nothing shady going on license-wise, is I guess what I'm saying here.
    Anyway, no reason is given and no options are offered other than the Back button at that point.  And I can't seem to come up with anyone having a similar issue in all my "research".  So any help or insight would be appreciated.
    Thanks,
    Doug

    I recommend backing up your system, and before going into the install, checking disk utility > verify disk > macintosh hd partition > to make sure the partition is okay.
    If there is anything wrong with it, you will know here. Sounds like the disk may be locked or there is an issue w/the partition "macintosh hd"
    also, maybe the partition was created incorrectly... check to see if the partion is MAC OS EXTENDED JOURNALED and not case-sensetive

  • Adobe acrobat 8 won't install with Indesign and Dreamweaver CS4

    I have a client who I had to build a new computer for which is Windows XP Pro. On her original machine I had AA8, InDesign CS4, DreamWeaver CS4, Contribute CS5, Adobe Reader 9.3 and Adobe Photoshop 6. I have tried puting AA8 on the new machine that has all of the above on it and I get a response that I have a newer version of AA and it won't install. I don't have any AA on this machine so I'm not sure what to do. She says she can't edit PDFs or combine them and that she can't create a PDF ind Word and Xcel and edit them. Should I tell her to upgrade to AA9 so that it is compatible to the CS4/5 products?
    Thanks,
    Lgarn

    Thank you Bill for replying.
    I have been able to install the disc but it tells me that I have to activate it with a time limit of 30 days and counting.  Activation fails each time I've tried.  As I'm nearing the end of the time limit I decided to contact Adobe for advice.  They gave me a download package and new serial number but it's only suitable for OS XP and Windows 2000 so I'm unable to download it.  I was told by the advisor if I still had problems to use the forum as a means of support so that's why I'm talking to people here.
    I have uninstalled Adobe Acrobate Pro 7, so I might try reinstalling the disc to see if it gives me another 30 days grace, that, at least, would be a way around it.
    I'll now follow the link you've given me.   Though I do suspect I'm in a bit of a cul de sac.

  • Cannot install my product using a long installation path with windows installer when a short installation path works fine

    Hello,
    I'm using Visual Studio 2010 to build a msi installer (windows installer 3.5). This msi will install all necessary files, dlls, documentation in order to have my application correctly installed and ready to run. One of my custom action allow to browse the
    installation directory the default path is c:\program file\company name\product name). In that case the install works fine ie succesful installation.
    However when entering a huge filename (>215 characters and less than 255 chars) such as: C:\Program Files\SITA\SITATEX v8\abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\abcdefghijklmnopqrstuvwxyz0123456789\0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
    I get a dialog box:
    Error writing to file: C:\Program Files\SITA\SITATEX v8\abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\abcdefghijklmnopqrstuvwxyz0123456789\...\Single User Installation Quick Reference Guide.pdf. Verify that you have access
    to that directory
    "Try Again"           "Cancel"
    When I hit "Try again" button, I get another dialog box:
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2350.
    And the installation of my product fails.
    I can create the huge path (>215 chars) manually with windows explorer without problem. I'm using the same account(Admin) when running the installer and when I create manually the path
    Am I reaching the file path limit or? Any clue?
    Thanks for help
    Philippe

    Hi
    I have tried to install the product with the following path (198 chars): C:\Program Files\SITA\SITATEX v8\abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\abcdefghijklmnopqrstuvwxyz0123456789\0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQR the
    installation did not succeed but this time no dialog box, no error was displayed. The installation just failed
    I then tried with 180 chars: C:\Program Files\SITA\SITATEX v8\abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\abcdefghijklmnopqrstuvwxyz0123456789\0123456789abcdefghijklmnopqrstuvwxyz
    with same result. The installation did not succeed and no dialog box, no error was displayed.
    I tried with 175chars
    C:\Program Files\SITA\SITATEX v8\abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789\abcdefghijklmnopqrstuvwxyz0123456789\0123456789abcdefghijklmnopqrstu
    and this time the installation was successful.
    I have captured the events with
    processmonitor and I have uploaded 2 additional files (LogfilePath175charsSuccessfullInstall.zip and LogfilePath198charsInstallFailed.zip) to Windows Live SkyDrive (http://www.skydrive.live.com) at the same
    place http://cid-35bc4002ff715ab5.office.live.com/browse.aspx/.Public?uc=0 for your attention.
    Thank you
    Philippe

  • Air won't install, XP machine, "Installation may not be allowed by your administrator"

    Issue:
     An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator. 
    I encountered an error saving my password in the air program Twhirl so I uninstalled that. And then uninstalled Air. And then tried to re
     install, but I would get that error. 
    I tried the
    msicuu2.exe utility and it didn't work. I also deleted Air directories to no avail. Also I tried different downloads of the air installer and the msicuu2.exe installer utility. I tried to look through some threads for some hints but none helped. Please help, thank you.
    Edit okay I installed an older version 1.5 so it installed and let me upgrade, but the twhirl programs says its corrupt even on new installs.
    Following is the install log for air:
    [2010-06-16:03:23:12] Performing runtime update
    [2010-06-16:03:23:13] UI SWF load is complete
    [2010-06-16:03:23:13] UI initialized
    [2010-06-16:03:23:13] starting user confirmation
    [2010-06-16:03:23:13] Version of this installer: 2.0.2.12610
    [2010-06-16:03:23:13] Installed version: 1.5.3.9130
    [2010-06-16:03:23:13] Installation type: patchNewer
    [2010-06-16:03:23:21] starting install
    [2010-06-16:03:23:21] Scheduling runtime installation operations
    [2010-06-16:03:23:21] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-06-16:03:23:21] Scheduling an MSI install operation
    [2010-06-16:03:23:21] Beginning runtime installation
    [2010-06-16:03:23:22] Beginning install
    [2010-06-16:03:23:22] Installing c:\docume~1\owner\locals~1\temp\air6c7.tmp\setup.msi
    [2010-06-16:03:23:36] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\Owner\Local Settings\temp\fla6CE.tmp\temp
    [2010-06-16:03:23:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-16:03:23:36] Copying C:\DOCUME~1\Owner\LOCALS~1\Temp\AIR6C7.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-16:03:23:36] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\Owner\Local Settings\temp\fla6CF.tmp\temp
    [2010-06-16:03:23:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-16:03:23:36] Copying C:\DOCUME~1\Owner\LOCALS~1\Temp\AIR6C7.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-16:03:23:36] Execution complete; beginning commit phase
    [2010-06-16:03:23:36] Deleting C:\Documents and Settings\Owner\Local Settings\temp\fla6CE.tmp\temp
    [2010-06-16:03:23:36] Deleting C:\Documents and Settings\Owner\Local Settings\temp\fla6CF.tmp\temp
    [2010-06-16:03:23:36] Commit complete
    [2010-06-16:03:23:36] install complete
    [2010-06-16:03:23:40] begin quitting
    [2010-06-16:03:40:07] UI SWF load is complete
    [2010-06-16:03:40:08] UI initialized
    [2010-06-16:03:40:09] Pingback request completed with HTTP status 200
    [2010-06-16:03:40:09] Begin background update check
    [2010-06-16:03:40:10] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-16:03:40:10] Background update not available
    [2010-06-16:03:40:10] begin quitting
    [2010-06-23:03:48:06] UI SWF load is complete
    [2010-06-23:03:48:06] UI initialized
    [2010-06-23:03:48:06] Begin background update check
    [2010-06-23:03:48:06] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-23:03:48:08] Background update not available
    [2010-06-23:03:48:08] begin quitting
    [2010-07-02:01:27:31] UI SWF load is complete
    [2010-07-02:01:27:31] UI initialized
    [2010-07-02:01:27:31] Begin background update check
    [2010-07-02:01:27:31] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-02:01:27:33] Background update not available
    [2010-07-02:01:27:33] begin quitting
    [2010-07-13:02:50:41] UI SWF load is complete
    [2010-07-13:02:50:41] UI initialized
    [2010-07-13:02:50:41] Begin background update check
    [2010-07-13:02:50:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-13:02:50:43] Background update not available
    [2010-07-13:02:50:43] begin quitting
    [2010-07-20:20:59:09] UI SWF load is complete
    [2010-07-20:20:59:10] UI initialized
    [2010-07-20:20:59:10] Begin background update check
    [2010-07-20:20:59:10] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-20:20:59:12] Background update not available
    [2010-07-20:20:59:12] begin quitting
    [2010-07-28:07:22:18] UI SWF load is complete
    [2010-07-28:07:22:18] UI initialized
    [2010-07-28:07:22:19] Begin background update check
    [2010-07-28:07:22:19] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-28:07:22:21] Background update not available
    [2010-07-28:07:22:21] begin quitting
    [2010-08-05:02:37:41] UI SWF load is complete
    [2010-08-05:02:37:41] UI initialized
    [2010-08-05:02:37:42] Begin background update check
    [2010-08-05:02:37:42] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-05:02:37:43] Background update not available
    [2010-08-05:02:37:43] begin quitting
    [2010-08-12:22:33:39] UI SWF load is complete
    [2010-08-12:22:33:40] UI initialized
    [2010-08-12:22:33:40] Begin background update check
    [2010-08-12:22:33:40] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-12:22:34:06] Background update successfully downloaded
    [2010-08-12:22:34:06] User notified of available background update
    [2010-08-12:22:37:02] User selected immediate install of background update
    [2010-08-12:22:37:02] Running C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-08-12:22:37:02] begin quitting
    [2010-08-12:22:37:14] Performing runtime update
    [2010-08-12:22:37:15] UI SWF load is complete
    [2010-08-12:22:37:16] UI initialized
    [2010-08-12:22:37:16] starting user confirmation
    [2010-08-12:22:37:16] Version of this installer: 2.0.3.13070
    [2010-08-12:22:37:16] Installed version: 2.0.2.12610
    [2010-08-12:22:37:16] Installation type: patchNewer
    [2010-08-12:22:37:18] starting install
    [2010-08-12:22:37:18] Scheduling runtime installation operations
    [2010-08-12:22:37:18] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-08-12:22:37:18] Scheduling an MSI repair operation
    [2010-08-12:22:37:19] Beginning runtime installation
    [2010-08-12:22:37:19] Beginning install
    [2010-08-12:22:37:19] Reinstalling c:\docume~1\owner\locals~1\temp\air2b7.tmp\setup.msi
    [2010-08-12:22:37:53] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\Owner\Local Settings\temp\fla2BB.tmp\temp
    [2010-08-12:22:37:53] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-12:22:37:53] Copying C:\DOCUME~1\Owner\LOCALS~1\Temp\AIR2B7.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-12:22:37:53] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\Owner\Local Settings\temp\fla2BC.tmp\temp
    [2010-08-12:22:37:53] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-12:22:37:53] Copying C:\DOCUME~1\Owner\LOCALS~1\Temp\AIR2B7.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-12:22:37:53] Execution complete; beginning commit phase
    [2010-08-12:22:37:53] Deleting C:\Documents and Settings\Owner\Local Settings\temp\fla2BB.tmp\temp
    [2010-08-12:22:37:53] Deleting C:\Documents and Settings\Owner\Local Settings\temp\fla2BC.tmp\temp
    [2010-08-12:22:37:53] Commit complete
    [2010-08-12:22:37:53] install complete
    [2010-08-12:22:39:21] begin quitting
    [2010-08-12:22:39:57] UI SWF load is complete
    [2010-08-12:22:39:58] UI initialized
    [2010-08-12:22:39:59] Pingback request completed with HTTP status 200
    [2010-08-12:22:39:59] Begin background update check
    [2010-08-12:22:39:59] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-12:22:40:00] Background update not available
    [2010-08-12:22:40:00] begin quitting
    [2010-08-14:13:49:37] Starting update of c:\program files\twhirl\twhirl.exe
    [2010-08-14:13:49:37] Updating from file:///C:/Documents%20and%20Settings/Owner/Application%20Data/de.makesoft.twhirl.0EA062BC 275E7ED1E6EC3762EFFD73C7158ADF33.1/Local%20Store/update.air
    [2010-08-14:13:49:37] Updating to version 0.9.5
    [2010-08-14:13:49:37] UI SWF load is complete
    [2010-08-14:13:49:38] UI initialized
    [2010-08-14:13:49:38] beginning UI styling
    [2010-08-14:13:49:38] UI styling complete
    [2010-08-14:13:49:38] Unpackaging to C:\Documents and Settings\Owner\Local Settings\temp\fla12.tmp
    [2010-08-14:13:49:39] unpackaging/validation is complete
    [2010-08-14:13:49:39] application is bound to this version of the runtime
    [2010-08-14:13:49:39] app id de.makesoft.twhirl
    [2010-08-14:13:49:39] pub id 0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1
    [2010-08-14:13:49:39] Application located at c:\program files
    [2010-08-14:13:49:39] Waiting for user confirmation
    [2010-08-14:13:49:39] User confirmed action: install
    [2010-08-14:13:49:39] creating native installer in: C:\Documents and Settings\Owner\Local Settings\temp\fla13.tmp
    [2010-08-14:13:49:39] native installer creation complete
    [2010-08-14:13:49:39] Starting install
    [2010-08-14:13:49:39] using conversion output in C:\Documents and Settings\Owner\Local Settings\temp\fla13.tmp
    [2010-08-14:13:49:39] Beginning install
    [2010-08-14:13:49:39] Installing C:\Documents and Settings\Owner\Local Settings\temp\fla13.tmp\setup.msi
    [2010-08-14:13:49:46] Execution complete; beginning commit phase
    [2010-08-14:13:49:46] Commit complete
    [2010-08-14:13:49:46] Re-launching application from c:\program files\twhirl\twhirl.exe
    [2010-08-14:13:49:46] starting cleanup of temporary files
    [2010-08-14:13:49:46] application installer exiting
    [2010-08-19:23:18:10] UI SWF load is complete
    [2010-08-19:23:18:10] UI initialized
    [2010-08-19:23:18:10] Begin background update check
    [2010-08-19:23:18:10] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-19:23:18:12] Background update check failed: Error #2032
    [2010-08-19:23:18:12] begin quitting
    [2010-08-20:00:43:07] UI SWF load is complete
    [2010-08-20:00:43:08] UI initialized
    [2010-08-20:00:43:08] Begin background update check
    [2010-08-20:00:43:08] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-20:00:43:11] Background update not available
    [2010-08-20:00:43:11] begin quitting
    [2010-08-28:03:05:30] UI SWF load is complete
    [2010-08-28:03:05:31] UI initialized
    [2010-08-28:03:05:31] Begin background update check
    [2010-08-28:03:05:31] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-28:03:05:32] Background update not available
    [2010-08-28:03:05:32] begin quitting
    [2010-09-06:00:41:37] UI SWF load is complete
    [2010-09-06:00:41:38] UI initialized
    [2010-09-06:00:41:38] Begin background update check
    [2010-09-06:00:41:38] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-09-06:00:41:39] Background update not available
    [2010-09-06:00:41:39] begin quitting
    [2010-09-13:04:41:19] UI SWF load is complete
    [2010-09-13:04:41:20] UI initialized
    [2010-09-13:04:41:20] Begin background update check
    [2010-09-13:04:41:20] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-09-13:04:41:21] Background update not available
    [2010-09-13:04:41:21] begin quitting
    [2010-09-20:20:13:44] UI SWF load is complete
    [2010-09-20:20:13:45] UI initialized
    [2010-09-20:20:13:45] Begin background update check
    [2010-09-20:20:13:46] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-09-20:20:14:29] Background update not available
    [2010-09-20:20:14:29] begin quitting
    [2010-09-30:22:02:32] UI SWF load is complete
    [2010-09-30:22:02:33] UI initialized
    [2010-09-30:22:02:33] Begin background update check
    [2010-09-30:22:02:33] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-09-30:22:02:34] Background update not available
    [2010-09-30:22:02:34] begin quitting
    [2010-10-08:00:30:24] UI SWF load is complete
    [2010-10-08:00:30:24] UI initialized
    [2010-10-08:00:30:24] Begin background update check
    [2010-10-08:00:30:24] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-10-08:00:30:48] Background update successfully downloaded
    [2010-10-08:00:30:48] User notified of available background update
    [2010-10-08:00:31:00] User selected immediate install of background update
    [2010-10-08:00:31:00] Running C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-10-08:00:31:00] begin quitting
    [2010-10-08:00:31:10] Performing runtime update
    [2010-10-08:00:31:10] UI SWF load is complete
    [2010-10-08:00:31:11] UI initialized
    [2010-10-08:00:31:11] starting user confirmation
    [2010-10-08:00:31:11] Version of this installer: 2.0.4.13090
    [2010-10-08:00:31:11] Installed version: 2.0.3.13070
    [2010-10-08:00:31:11] Installation type: patchNewer
    [2010-10-08:00:31:19] starting install
    [2010-10-08:00:31:19] Scheduling runtime installation operations
    [2010-10-08:00:31:19] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-10-08:00:31:19] Scheduling an MSI repair operation
    [2010-10-08:00:31:19] Beginning runtime installation
    [2010-10-08:00:31:19] Beginning install
    [2010-10-08:00:31:19] Reinstalling c:\docume~1\owner\locals~1\temp\air6.tmp\setup.msi
    [2010-10-08:00:31:35] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\Owner\Local Settings\temp\flaA.tmp\temp
    [2010-10-08:00:31:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-08:00:31:36] Copying C:\DOCUME~1\Owner\LOCALS~1\Temp\AIR6.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-08:00:31:37] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\Owner\Local Settings\temp\flaB.tmp\temp
    [2010-10-08:00:31:38] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-08:00:31:38] Copying C:\DOCUME~1\Owner\LOCALS~1\Temp\AIR6.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-08:00:31:39] Execution complete; beginning commit phase
    [2010-10-08:00:31:39] Deleting C:\Documents and Settings\Owner\Local Settings\temp\flaA.tmp\temp
    [2010-10-08:00:31:40] Deleting C:\Documents and Settings\Owner\Local Settings\temp\flaB.tmp\temp
    [2010-10-08:00:31:41] Commit complete
    [2010-10-08:00:31:41] install complete
    [2010-10-08:00:31:52] begin quitting
    [2010-10-08:00:32:27] UI SWF load is complete
    [2010-10-08:00:32:28] UI initialized
    [2010-10-08:00:32:30] Pingback request completed with HTTP status 200
    [2010-10-08:00:32:30] Begin background update check
    [2010-10-08:00:32:30] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-08:00:32:30] Background update not available
    [2010-10-08:00:32:30] begin quitting
    [2010-10-17:00:26:20] UI SWF load is complete
    [2010-10-17:00:26:20] UI initialized
    [2010-10-17:00:26:20] Begin background update check
    [2010-10-17:00:26:20] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-17:00:26:22] Background update not available
    [2010-10-17:00:26:22] begin quitting
    [2010-10-25:00:45:03] UI SWF load is complete
    [2010-10-25:00:45:04] UI initialized
    [2010-10-25:00:45:04] Begin background update check
    [2010-10-25:00:45:04] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-25:00:45:05] Background update not available
    [2010-10-25:00:45:06] begin quitting
    [2010-11-01:06:12:19] UI SWF load is complete
    [2010-11-01:06:12:20] UI initialized
    [2010-11-01:06:12:20] Begin background update check
    [2010-11-01:06:12:20] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-11-01:06:13:06] Background update check failed: Error #2032
    [2010-11-01:06:13:06] begin quitting
    [2010-11-01:06:18:48] UI SWF load is complete
    [2010-11-01:06:18:49] UI initialized
    [2010-11-01:06:18:49] Begin background update check
    [2010-11-01:06:18:49] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-11-01:06:19:16] Background update successfully downloaded
    [2010-11-01:06:19:16] User notified of available background update
    [2010-11-01:06:31:31] User selected immediate install of background update
    [2010-11-01:06:31:31] Running C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-11-01:06:31:31] begin quitting
    [2010-11-01:06:31:39] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-01:06:31:39] Commandline is: -update
    [2010-11-01:06:31:39] Installed runtime (2.0.4.13090) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-01:06:32:03] Starting runtime update. Updating runtime from version 2.0.4.13090 to version 2.5.0.16600
    [2010-11-01:06:32:03] Installing msi at c:\docume~1\owner\locals~1\temp\air2d4.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2010-11-01:06:34:30] Runtime Installer end with exit code 0
    [2010-11-02:03:44:07] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-02:03:44:08] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-02:03:44:08] Commandline is: -updatecheck
    [2010-11-02:03:44:08] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-02:03:44:08] Performing pingback request
    [2010-11-02:03:44:11] Pingback request completed with HTTP status 200
    [2010-11-02:03:44:11] Starting runtime background update check
    [2010-11-02:03:44:11] Clearing unused background update directory
    [2010-11-02:03:44:11] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-02:03:44:11] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-11-02:03:44:11] Runtime update not available
    [2010-11-02:03:44:11] Unpackaging cancelled
    [2010-11-02:03:44:11] Runtime Installer end with exit code 0
    [2010-11-05:02:19:29] Application Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-05:02:19:29] Commandline is: -playerVersion=10,1,102,64 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled LandofMe 43FD61A5BF18912871F2BB66A1B2F6D6B5B7F59A.1 adobe.com:air0.7629990177229047 onApplicationVersion
    [2010-11-05:02:19:29] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-05:02:19:29] Application Installer end with exit code 0
    [2010-11-11:03:23:20] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:03:23:20] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:03:23:20] Commandline is: -updatecheck
    [2010-11-11:03:23:20] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:03:23:21] Performing pingback request
    [2010-11-11:03:23:21] Starting runtime background update check
    [2010-11-11:03:23:21] Clearing unused background update directory
    [2010-11-11:03:23:21] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:03:23:21] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:03:23:22] Runtime update not available
    [2010-11-11:03:23:22] Unpackaging cancelled
    [2010-11-11:03:23:22] Runtime Installer end with exit code 0
    [2010-11-18:20:58:42] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-18:20:58:42] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-18:20:58:42] Commandline is: -updatecheck
    [2010-11-18:20:58:42] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-18:20:58:43] Performing pingback request
    [2010-11-18:20:58:43] Starting runtime background update check
    [2010-11-18:20:58:43] Clearing unused background update directory
    [2010-11-18:20:58:43] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-18:20:58:43] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-11-18:20:59:09] Unpackaging complete
    [2010-11-18:20:59:10] Download success
    [2010-11-18:20:59:10] Runtime updated downloaded
    [2010-11-18:20:59:29] User has selected immediate install of the update
    [2010-11-18:20:59:29] Starting runtime background update installation
    [2010-11-18:20:59:29] Launching subprocess with commandline C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-11-18:20:59:29] Runtime updater successfully launched
    [2010-11-18:20:59:29] Runtime Installer end with exit code 0
    [2010-11-18:20:59:36] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-18:20:59:36] Commandline is: -update
    [2010-11-18:20:59:36] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-18:20:59:44] Starting runtime update. Updating runtime from version 2.5.0.16600 to version 2.5.1.17730
    [2010-11-18:20:59:44] Reinstalling c:\docume~1\owner\locals~1\temp\air12c.tmp\setup.msi
    [2010-11-18:21:00:16] Runtime Installer end with exit code 0
    [2010-11-18:23:47:54] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-18:23:47:54] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-18:23:47:54] Commandline is: -updatecheck
    [2010-11-18:23:47:54] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-18:23:47:55] Performing pingback request
    [2010-11-18:23:48:26] Failure during pingback request: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032]
    [2010-11-18:23:48:26] Runtime Installer end with exit code 0
    [2010-11-19:05:32:13] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-19:05:32:14] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-19:05:32:14] Commandline is: -updatecheck
    [2010-11-19:05:32:14] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-19:05:32:16] Performing pingback request
    [2010-11-19:05:32:18] Pingback request completed with HTTP status 200
    [2010-11-19:05:32:18] Starting runtime background update check
    [2010-11-19:05:32:18] Clearing unused background update directory
    [2010-11-19:05:32:18] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-19:05:32:18] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-11-19:05:32:18] Runtime update not available
    [2010-11-19:05:32:18] Unpackaging cancelled
    [2010-11-19:05:32:18] Runtime Installer end with exit code 0
    [2010-11-25:22:48:00] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-25:22:48:00] Commandline is: -update "c:\program files\twhirl\twhirl.exe" "C:\Documents and Settings\Owner\Application Data\de.makesoft.twhirl.0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1\Local Store\update.air" 0.9.7
    [2010-11-25:22:48:00] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-25:22:48:00] Installed app (de.makesoft.twhirl.0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1) located at c:\program files\twhirl\twhirl.exe
    [2010-11-25:22:48:01] Unpackaging file:///C:/Documents%20and%20Settings/Owner/Application%20Data/de.makesoft.twhirl.0EA062BC 275E7ED1E6EC3762EFFD73C7158ADF33.1/Local%20Store/update.air to C:\Documents and Settings\Owner\Local Settings\temp\fla397.tmp
    [2010-11-25:22:48:02] Application signature verified
    [2010-11-25:22:48:02] Unpackaging/validation complete
    [2010-11-25:22:48:02] Converting unpackaged application to a native installation package in C:\Documents and Settings\Owner\Local Settings\temp\fla398.tmp
    [2010-11-25:22:48:02] Native installation package creation succeeded
    [2010-11-25:22:48:02] Starting app update of c:\program files. Updating from de.makesoft.twhirl.0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1 version 0.9.5 to de.makesoft.twhirl.0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1 version 0.9.7 using the source file at file:///C:/Documents%20and%20Settings/Owner/Application%20Data/de.makesoft.twhirl.0EA062BC 275E7ED1E6EC3762EFFD73C7158ADF33.1/Local%20Store/update.air
    [2010-11-25:22:48:02] Installing msi at C:\Documents and Settings\Owner\Local Settings\temp\fla398.tmp\setup.msi with guid {150673BA-DB7B-8786-1D7E-0B2C24E3DA5D}
    [2010-11-25:22:48:13] Launching subprocess with commandline c:\program files\twhirl\twhirl.exe
    [2010-11-25:22:48:15] Application Installer end with exit code 0
    [2010-11-28:04:19:00] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-28:04:19:01] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-28:04:19:01] Commandline is: -updatecheck
    [2010-11-28:04:19:01] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-28:04:19:02] Performing pingback request
    [2010-11-28:04:19:02] Starting runtime background update check
    [2010-11-28:04:19:02] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-28:04:19:02] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-11-28:04:19:03] Runtime update not available
    [2010-11-28:04:19:03] Unpackaging cancelled
    [2010-11-28:04:19:03] Runtime Installer end with exit code 0
    [2010-12-05:14:55:37] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-05:14:55:37] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-05:14:55:37] Commandline is: -updatecheck
    [2010-12-05:14:55:37] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-05:14:55:39] Performing pingback request
    [2010-12-05:14:55:39] Starting runtime background update check
    [2010-12-05:14:55:39] Clearing unused background update directory
    [2010-12-05:14:55:39] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-05:14:55:39] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-12-05:14:55:40] Runtime update not available
    [2010-12-05:14:55:40] Unpackaging cancelled
    [2010-12-05:14:55:40] Runtime Installer end with exit code 0
    [2010-12-12:15:06:25] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-12:15:06:25] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-12:15:06:25] Commandline is: -updatecheck
    [2010-12-12:15:06:25] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-12:15:06:26] Performing pingback request
    [2010-12-12:15:06:26] Starting runtime background update check
    [2010-12-12:15:06:26] Clearing unused background update directory
    [2010-12-12:15:06:26] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-12:15:06:26] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-12-12:15:06:27] Runtime update not available
    [2010-12-12:15:06:27] Unpackaging cancelled
    [2010-12-12:15:06:27] Runtime Installer end with exit code 0
    [2010-12-19:19:35:18] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-19:19:35:19] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-19:19:35:19] Commandline is: -updatecheck
    [2010-12-19:19:35:19] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-19:19:35:20] Performing pingback request
    [2010-12-19:19:35:20] Starting runtime background update check
    [2010-12-19:19:35:20] Clearing unused background update directory
    [2010-12-19:19:35:20] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-19:19:35:20] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-12-19:19:35:21] Runtime update not available
    [2010-12-19:19:35:21] Unpackaging cancelled
    [2010-12-19:19:35:21] Runtime Installer end with exit code 0
    [2010-12-27:01:54:09] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-27:01:54:09] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-27:01:54:09] Commandline is: -updatecheck
    [2010-12-27:01:54:09] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-27:01:54:10] Performing pingback request
    [2010-12-27:01:54:10] Starting runtime background update check
    [2010-12-27:01:54:10] Clearing unused background update directory
    [2010-12-27:01:54:10] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-27:01:54:10] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2010-12-27:01:54:12] Runtime update not available
    [2010-12-27:01:54:12] Unpackaging cancelled
    [2010-12-27:01:54:12] Runtime Installer end with exit code 0
    [2011-01-03:13:24:48] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-03:13:24:49] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-03:13:24:49] Commandline is: -updatecheck
    [2011-01-03:13:24:49] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-03:13:24:49] Performing pingback request
    [2011-01-03:13:24:49] Starting runtime background update check
    [2011-01-03:13:24:49] Clearing unused background update directory
    [2011-01-03:13:24:49] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-03:13:24:49] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-01-03:13:24:51] Runtime update not available
    [2011-01-03:13:24:51] Unpackaging cancelled
    [2011-01-03:13:24:51] Runtime Installer end with exit code 0
    [2011-01-10:14:30:11] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-10:14:30:11] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-10:14:30:11] Commandline is: -updatecheck
    [2011-01-10:14:30:11] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-10:14:30:13] Performing pingback request
    [2011-01-10:14:30:13] Starting runtime background update check
    [2011-01-10:14:30:13] Clearing unused background update directory
    [2011-01-10:14:30:14] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-10:14:30:14] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-01-10:14:30:15] Runtime update not available
    [2011-01-10:14:30:15] Unpackaging cancelled
    [2011-01-10:14:30:15] Runtime Installer end with exit code 0
    [2011-01-17:23:46:17] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-17:23:46:17] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-17:23:46:17] Commandline is: -updatecheck
    [2011-01-17:23:46:17] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-17:23:46:18] Performing pingback request
    [2011-01-17:23:46:18] Starting runtime background update check
    [2011-01-17:23:46:18] Clearing unused background update directory
    [2011-01-17:23:46:18] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-17:23:46:18] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-01-17:23:46:20] Runtime update not available
    [2011-01-17:23:46:20] Unpackaging cancelled
    [2011-01-17:23:46:20] Runtime Installer end with exit code 0
    [2011-01-25:08:24:17] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-25:08:24:18] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-25:08:24:18] Commandline is: -updatecheck
    [2011-01-25:08:24:18] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-25:08:24:18] Performing pingback request
    [2011-01-25:08:24:19] Starting runtime background update check
    [2011-01-25:08:24:19] Clearing unused background update directory
    [2011-01-25:08:24:19] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-25:08:24:19] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-01-25:08:24:20] Runtime update not available
    [2011-01-25:08:24:20] Unpackaging cancelled
    [2011-01-25:08:24:20] Runtime Installer end with exit code 0
    [2011-02-08:00:04:20] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-08:00:04:21] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-08:00:04:21] Commandline is: -updatecheck
    [2011-02-08:00:04:21] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-08:00:04:21] Performing pingback request
    [2011-02-08:00:04:21] Starting runtime background update check
    [2011-02-08:00:04:21] Clearing unused background update directory
    [2011-02-08:00:04:21] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-08:00:04:21] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-02-08:00:04:23] Runtime update not available
    [2011-02-08:00:04:23] Unpackaging cancelled
    [2011-02-08:00:04:23] Runtime Installer end with exit code 0
    [2011-02-15:16:42:51] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-15:16:42:52] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-15:16:42:52] Commandline is: -updatecheck
    [2011-02-15:16:42:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-15:16:42:53] Performing pingback request
    [2011-02-15:16:42:53] Starting runtime background update check
    [2011-02-15:16:42:53] Clearing unused background update directory
    [2011-02-15:16:42:53] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-15:16:42:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-02-15:16:42:54] Runtime update not available
    [2011-02-15:16:42:54] Unpackaging cancelled
    [2011-02-15:16:42:54] Runtime Installer end with exit code 0
    [2011-02-21:05:07:46] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-21:05:07:46] Commandline is: -playerVersion=10,2,152,26 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled MaxDamage2 n/a adobe.com:air0.7884667366743088 onApplicationVersion
    [2011-02-21:05:07:46] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-21:05:07:47] Application Installer end with exit code 0
    [2011-02-22:21:13:59] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-22:21:14:00] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-22:21:14:00] Commandline is: -updatecheck
    [2011-02-22:21:14:00] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-22:21:14:02] Performing pingback request
    [2011-02-22:21:14:03] Starting runtime background update check
    [2011-02-22:21:14:03] Clearing unused background update directory
    [2011-02-22:21:14:04] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-22:21:14:04] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-02-22:21:14:08] Runtime update not available
    [2011-02-22:21:14:09] Unpackaging cancelled
    [2011-02-22:21:14:11] Runtime Installer end with exit code 0
    [2011-03-03:04:31:57] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-03:04:31:58] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-03:04:31:58] Commandline is: -updatecheck
    [2011-03-03:04:31:58] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-03:04:31:59] Performing pingback request
    [2011-03-03:04:31:59] Starting runtime background update check
    [2011-03-03:04:31:59] Clearing unused background update directory
    [2011-03-03:04:31:59] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-03:04:31:59] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-03-03:04:32:00] Runtime update not available
    [2011-03-03:04:32:00] Unpackaging cancelled
    [2011-03-03:04:32:00] Runtime Installer end with exit code 0
    [2011-03-10:19:54:11] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-10:19:54:11] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-10:19:54:11] Commandline is: -updatecheck
    [2011-03-10:19:54:11] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-10:19:54:12] Performing pingback request
    [2011-03-10:19:54:13] Starting runtime background update check
    [2011-03-10:19:54:13] Clearing unused background update directory
    [2011-03-10:19:54:13] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-10:19:54:13] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-03-10:19:54:14] Runtime update not available
    [2011-03-10:19:54:14] Unpackaging cancelled
    [2011-03-10:19:54:14] Runtime Installer end with exit code 0
    [2011-03-18:00:49:37] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-18:00:49:38] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-18:00:49:38] Commandline is: -updatecheck
    [2011-03-18:00:49:38] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-18:00:49:39] Performing pingback request
    [2011-03-18:00:49:39] Starting runtime background update check
    [2011-03-18:00:49:39] Clearing unused background update directory
    [2011-03-18:00:49:39] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-18:00:49:39] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-03-18:00:49:40] Runtime update not available
    [2011-03-18:00:49:40] Unpackaging cancelled
    [2011-03-18:00:49:40] Runtime Installer end with exit code 0
    [2011-03-18:00:53:50] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-18:00:53:50] Commandline is: -playerVersion=10,2,152,32 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled Pipeliner n/a adobe.com:air0.7711785868741572 onApplicationVersion
    [2011-03-18:00:53:50] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-18:00:53:50] Application Installer end with exit code 0
    [2011-03-18:00:54:13] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-18:00:54:13] Commandline is: -playerVersion=10,2,152,32 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled TaylorSwift n/a adobe.com:air0.1634288956411183 onApplicationVersion
    [2011-03-18:00:54:13] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-18:00:54:13] Application Installer end with exit code 0
    [2011-03-25:14:01:42] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-25:14:01:43] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-25:14:01:43] Commandline is: -updatecheck
    [2011-03-25:14:01:43] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-25:14:01:46] Performing pingback request
    [2011-03-25:14:01:46] Starting runtime background update check
    [2011-03-25:14:01:46] Clearing unused background update directory
    [2011-03-25:14:01:46] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-25:14:01:46] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-03-25:14:02:12] Unpackaging complete
    [2011-03-25:14:02:12] Download success
    [2011-03-25:14:02:12] Runtime updated downloaded
    [2011-03-25:14:09:53] User had deferred installing the update
    [2011-03-25:14:09:53] Runtime Installer end with exit code 0
    [2011-03-25:14:27:15] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files\twhirl\twhirl.exe"
    [2011-03-25:14:27:15] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-25:14:27:15] Commandline is: -applyupdates "c:\program files\twhirl\twhirl.exe"
    [2011-03-25:14:27:15] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-25:14:27:15] Installed app (de.makesoft.twhirl.0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1) located at c:\program files\twhirl\twhirl.exe
    [2011-03-25:14:27:16] Starting runtime background update installation
    [2011-03-25:14:27:16] Launching subprocess with commandline C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\twhirl\twhirl.exe"
    [2011-03-25:14:27:16] Runtime updater successfully launched
    [2011-03-25:14:27:16] Runtime Installer end with exit code 0
    [2011-03-25:14:27:46] Runtime Installer begin with version 2.6.0.19120 on Windows XP x86
    [2011-03-25:14:27:46] Commandline is: -update "c:\program files\twhirl\twhirl.exe"
    [2011-03-25:14:27:46] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-25:14:27:46] Installed app (de.makesoft.twhirl.0EA062BC275E7ED1E6EC3762EFFD73C7158ADF33.1) located at c:\program files\twhirl\twhirl.exe
    [2011-03-25:14:28:02] Starting runtime update. Updating runtime from version 2.5.1.17730 to version 2.6.0.19120
    [2011-03-25:14:28:02] Installing msi at c:\docume~1\owner\locals~1\temp\air5.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-03-25:14:28:22] Launching subprocess with commandline c:\program files\twhirl\twhirl.exe
    [2011-03-25:14:28:22] Runtime Installer end with exit code 0
    [2011-03-25:14:29:00] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-25:14:29:02] Runtime Installer begin with version 2.6.0.19120 on Windows XP x86
    [2011-03-25:14:29:02] Commandline is: -updatecheck
    [2011-03-25:14:29:02] Installed runtime (2.6.0.19120) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-25:14:29:03] Performing pingback request
    [2011-03-25:14:29:04] Pingback request completed with HTTP status 200
    [2011-03-25:14:29:04] Starting runtime background update check
    [2011-03-25:14:29:04] Clearing unused background update directory
    [2011-03-25:14:29:05] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19120/update
    [2011-03-25:14:29:05] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19120/update to C:\Documents and Settings\Owner\Application Data\Adobe\AIR\Updater\Background
    [2011-03-25:14:29:05] Runtime update not available
    [2011-03-25:14:29:05] Unpackaging cancelled
    [2011-03-25:14:29:05] Runtime Installer end with exit code 0
    [2011-04-01:22:31:08] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-04-01:22:49:25] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-04-01:22:49:25] Runtime Installer begin with version 2.6.0.19120 on Windows XP x86
    [2011-04-01:22:49:25] Commandline is: -updatecheck
    [2011-04-01:22:49:25] Installed runtime (2.6.0.19120) located at c:\Program Files\Common Files\Adobe AIR
    [2011-04-01:22:49:26] Performing pingback request
    [2011-04-01:22:49:26] Starting runtime background update check
    [2011-04-01:22:49:26] Clearing unused background update directory
    [2011-04-01:22:49:26] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19120/update
    [2011-04-01:22:49:26] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.6.0.19120/update to C:\Documents and Se

    Time please wrote:
    Subject line tells it all.
    Actually not; what is your operating system?  Are you installing as an Administrator user?
    You may also want to ask in http://forums.adobe.com/community/air/installation

Maybe you are looking for