Trouble Upgrading to Adobe Air 3.3.0.3650 from 1.5.3.9130

Hi,
I have been unable to upgrade Adobe Air from 1.5.3.9130 to 3.3.0.3650 (the latest).  My OS is Windows XP.  I have pasted some errors from the msi installer log and the air log.  I am not sure what is happening.  Can anyone tell me what is going on?
From MSI Log:
MSI (s) (4C:F0) [21:42:02:656]: SOURCEMGMT: Now checking product {A2BCA9F1-566C-4805-97D1-7FDC93386723}
MSI (s) (4C:F0) [21:42:02:656]: SOURCEMGMT: Media is enabled for product.
MSI (s) (4C:F0) [21:42:02:656]: SOURCEMGMT: Attempting to use LastUsedSource from source list.
MSI (s) (4C:F0) [21:42:02:656]: SOURCEMGMT: Trying source c:\docume~1\lara\locals~1\temp\airbc5.tmp\.
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2203 2: c:\docume~1\lara\locals~1\temp\airbc5.tmp\setup.msi 3: -2147287037
MSI (s) (4C:F0) [21:42:02:656]: SOURCEMGMT: Source is invalid due to missing/inaccessible package.
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 1706 2: -2147483647 3: setup.msi
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 1706 2:  3: setup.msi
MSI (s) (4C:F0) [21:42:02:656]: SOURCEMGMT: Failed to resolve source
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 1714 2: Adobe AIR 3: 1612
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2205 2:  3: Error
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1714
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2205 2:  3: Error
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
MSI (s) (4C:F0) [21:42:02:656]: Product: Adobe AIR -- Error 1714. The older version of Adobe AIR cannot be removed.  Contact your technical support group.  System Error 1612.
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2205 2:  3: Error
MSI (s) (4C:F0) [21:42:02:656]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 16
Error 1714. The older version of Adobe AIR cannot be removed.  Contact your technical support group.  System Error 1612.
Air Log:
[2012-06-17:21:41:46] Runtime Installer begin with version 3.3.0.3650 on Windows XP x86
[2012-06-17:21:41:46] Commandline is:
[2012-06-17:21:41:46] Installed runtime (1.5.3.9130) located at c:\Program Files\Common Files\Adobe AIR
[2012-06-17:21:41:54] Starting runtime update. Updating runtime from version 1.5.3.9130 to version 3.3.0.3650
[2012-06-17:21:41:54] Installing msi at c:\docume~1\lara\locals~1\temp\airb41.tmp\setup.msi with guid {65CB4C08-C47B-4A7E-A6A4-50C06ADA5FC6}
[2012-06-17:21:42:07] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
[2012-06-17:21:42:07] Rolling back install of c:\docume~1\lara\locals~1\temp\airb41.tmp\setup.msi
[2012-06-17:21:42:07] Rollback complete
[2012-06-17:21:42:07] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1603" errorID=0]
[2012-06-17:21:42:09] Runtime Installer end with exit code 7
[2012-06-17:21:56:28] Runtime Installer begin with version 3.3.0.3650 on Windows XP x86
[2012-06-17:21:56:28] Commandline is:
[2012-06-17:21:56:28] Installed runtime (1.5.3.9130) located at c:\Program Files\Common Files\Adobe AIR

I was able to fix my problems by using the Microsoft Fixit utility at
http://support.microsoft.com/mats/Program_Install_and_Uninstall/en-us
After uninstalling Adibe Air with the utility I was able to install the latest version without any problems. 
I got the idea to do this from this post:
http://forums.adobe.com/message/4490093#4490093

Similar Messages

  • Adobe Air+ Flex applications to build from database

    Hi,
    I know how to create a Flex application from database.But
    when we are developing a flex application from database using Adobe
    AIR,i'm not able to run the application.It is throwing an error
    saying .xml file is missing.Can anyone help me out with
    this?

    In Flex, an application can be created from database by
    following the steps as follows:
    STEP 1. Create a new Flex Project and name it as for example,
    “FLEXDB”. Select the
    application type as “Web Application (runs in Flash
    Player)” and Application server type as
    “ASP.Net”.
    STEP 2. Go to Data->Create application from database.
    Select the project as
    FLEXDB”.Create a new Connection to SqlServer 2005 and
    specify the database and name that connection
    as”TestConn”. Then select any table (for example
    DashboardRegion) from the list of tables and click
    “Next” button.
    STEP 3. Select the Server language as “C# with Web
    Services”. Click “Finish”.
    STEP 4. Then the following files and folders will be created
    under the project “FLEXDB”
    automatically.
    • DashboardRegion.mxml -- is a design page.
    • DashboardRegionScript.as -- defines web service
    object and capture the results and assigns the results to the
    corresponding UI Component.
    • DashboardRegionConfig.as -- calls the Web Service
    file.
    • DashboardRegion.asmx -- calls the Class Files
    (DashboardRegion.cs file).
    • Web.config – defines the Connection string
    • App_Code is a folder which contains the following
    files
    o DashboardRegion.cs that interacts with SQL Server 2005 and
    return the results.
    o TestConn.cs that defines connection to SQL Server 2005.
    STEP 5. Run the application “DashboardRegion.mxml
    ”.We can see the Database results
    Fetched and displayed in the corresponding UI Component in
    the output.
    Now we are trying to create a Similar Flex Application using
    Adobe AIR.
    For this, we have to follow similar steps mentioned as above
    with a slight modification in STEP 1. It will be as follows:
    STEP 1. Create a new Flex Project and name it as for
    example, “FLEXDB”. Select the
    application type as”Desktop Application (runs in Adobe
    AIR)” and Application server type as “ASP.Net”.
    The remaining steps are same as above.
    When we try to run the application
    “DashboardRegion.mxml”, it is throwing an error saying
    “DashboardRegion-app.xml” file is missing. To solve
    this issue we tried creating “DashboardRegion-app.xml”
    file manually, the application is running but, again throwing an
    error saying “Unable to load WSDL. If currently online,
    please verify the URI and/or format of the WSDL
    (../DashBoardRegion.asmx?wsdl)”.
    Can any one please suggest a solution for this?
    Or Help me how to connect sql server 2005 in the Adobe AIR
    application that are buid using Flex builder.

  • Adobe Air and export to Excel from jasperserver

    Hello,
    I had issues to display PDF's from Adobe Air when using
    jasperserver. As soon as I intalled Reader 9.0 it worked fine..Now
    I am having an issue with excel and csv and rtf files... When I
    click from my air application's and generate a report and export it
    to Xls or rtf or csv, opens a new Adobe air instance with a white
    blank screen.. Can you please please help me in this..
    Thanks in advance

    I am using Adobe Air which displays jasper server reports and
    the report generated gives an option to the user to open that
    report in different format like excel, rtf, csv formats.. and
    jasperserver has it's function to convert it approptaitely in
    different formats. It's just in Adobe air it doesn't work.. I
    tested my application with google chrome which has a webkit just
    like adobe air . So When I want to open the report in excel then it
    gives me an option either to open it or save it. But in Adobe Air
    it comes as a blank page.. not sure what's happening also as I
    dont' get any exception.. so not sure whether Adobe Air recognizes
    the other formats besides pdf... as for PDF I had to have adobe
    reader 9 installed and then it opens up.. If still I am not able to
    explain the scenario please call me at 314-799-3138 (USA). I am
    just stuck in this project.. And we have to use Adobe air as our
    application has to be desktop oriented.

  • Flash Builder 4.7 mac , after upgrade to adobe air 13/14 wont create new projects

    im running flash builder 4.7 on mac, and recently upgrade to a newer air, this was sad in itself as flash builder dosnt have a mechanism for doing this you have to paste files all manually all over the place.
    Im now running into an issue where I cannot even create projects.
    Has anyone had this issue? does anyone know how to solve?
    Thanks

    Called support had the pleasure of a really long wait time.
    first level tech support stated this was a "known issue", got transferred to another sr technician who was going to fix this, didn't have a clue about the previous conversation and the call dropped. I don't have the patients to wait on hold nearly an hr again.
    Adobe, if this is a known issue please post a sticky somewhere or assign someone to reply to the community posts.
    If anyone else has the answer to this, that would be much appreciated, Im kind of loathing flash builder at the moment and resenting the fact i can't run flash develop natively on mac.

  • I would like to upgrade my Macbook Air with more Flash Memory from 128 gb to 512 gb. How can I do this?, I would like to upgrade my Macbook Air with more Flash Memory from 128 gb to 512 gb. How can I do this?

    Hello
    I recently purchased a Macbook Air with 1.7 Ghz Intel Core i5 4 gb Ram 11" with 128 Gb storage.
    All is well but I would like to increase the storage in my Mac, to the maximum possible 512, 1 tb what ever possible.
    I am in the Kingdom of Saudi Arabia right now. No Apple Stores exist here at the moment. But I have noticed several authorized resellers.
    Kindly guide me if, first of all this is possible or not, if yes then how can I go about doing this being in the country (Jeddah, Saudi Arabia) that I am.
    I also want to purchase an iMac, but the local shops don't seem to have stock and would like to inquire if I could order it online and have it delivered to my home/office here.
    Thank you for your time.
    Abdullah

    You should go back to your Apple Reatiler Store since it is likely under warranty.
    If'its not under warranty there e are a number of sites... here is one. 
    http://eshop.macsales.com/shop/SSD/OWC/Aura_Pro_Air_2011
    Personally I would sell the 128  and buy the one you need. 
    Cheers

  • Adobe AIR 1.5 - Package AIR installer as a native Windows Executable (.EXE)

    Hello Adobe AIR community,
    Is there any way to package the installer for an Adobe AIR application using Adobe AIR 1.5 as an executable (.EXE) file?
    I found that this is possible for Adobe AIR 2.0, but it requires an upgrade to Adobe AIR 2.0 runtime. Are there any other options using the Adobe AIR 1.5 runtime?
    Thanks,
    Mauricio

    Check out this one to solve out your query:   Code: Ext.onReady(function () {          var testWindow = new Ext.Window({         titel: 'Test',         layout: 'form',         width: 300,         height: 300,         items: [{             xtype: 'textfield',             fieldLabel: 'Test',             maskRe: /\d|\,/         }]     });          testWindow.show(); });  -----------------------------
    teradata 12 certification dumps ! sy0-201 braindump ! apple braindumps ! avaya training

  • Adobe AIR fails during install

    21.5" intel iMac, 10.6.1, 4GB RAM, CS4 Premium new install - upgrade from CS2.
    CS4 successfully installed to laptop.
    iMac <easy installation> timed out several times during install, the first time trying to install Adobe AIR. System setup transferred from previous machine, including CS2 apps, settings, etc.
    This is a replacement iMac for a defective unit returned 5 days ago. Was able to install CS4 on defective machine minus transfered user info, applications, data. (Prior to return to Apple CS4 was deactivated, SN removed. Subsequent launch of PS into trial mode confirmed.)
    After quitting the app installer several times discovered the dialogue box below was hidden by installer box. Clicking "OK" allowed process to continue.
    CS4 is now installed and updated, but I don't know which apps the dialogue box was referring to, or if this requires a solution.

    I did not find automatic graphics switching, but after several failed attempts of trying to install it, it eventually installed.

  • Adobe AIR update for Flash CS3

    Hi, i'm having some trouble installing the adobe air update
    for flash CS3.
    I've installed it like 5 times, it always says that the
    installation is complete.
    But when i go to flash and try to make an AIR file it's not
    in the list, the only things i see are those:
    image

    ow, totally my bad, i switched the splash screen and that
    screen.
    Problem solved

  • Does Adobe Air support Mac OS X?

    When I try to run Adobe.com on Adobe Air (or another Air
    application, for that matter), the application crashes. I am
    running Mac OS 10.5.6.
    I was initially able to run Air applications. But as of last
    week or so, I cannot.

    Hello All,
    I had Adobe Air installed with three applications: Zinio, Mindomo & Prezi. Everything was working fine. I upgraded my Mac OS X leopard to Snow Leopard. Zinio asked to be upgraded to 4.0 and upon upgrading the app I was asked to upgrade to Adobe Air 2.5.1. After upgrades I receive the following error when I try to run any of the applications : "This application requires a version of Adobe AIR which cannot be found. Please download the latest version of the runtime from http://www.adobe.com/go/getair, or contact the application author for an updated version." followed by a crash, here is the crash report: http://www.box.net/shared/b003opfbmo
    I have tried the above steps, including uninstalling the applications, adobe air, running the terminals commands and then installing all again. Can anyone help?
    P.S. the same reproduces on another administrative account on the same machine.

  • Adobe AIR won't install - Windows 7 Ultimate x64

    "Sorry, an error has occurred.
    An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator."
    Well, I asked myself and verified that I am allowed to install any programs I wish to at will.
    I even toyed with adding extra permissions for the .exe and shortcut [see below], to no avail.
    I also checked your Adobe AIR installation troubleshooter section before posting. Unfortunately, none of the solutions 100% applied to my circumstances or OS, yet I tried a few anyway and had it confirmed by a Windows dialogue that I need not have bothered as it assured me that they weren't applicable in my case.
    I found another thread like mine where somebody suggested creating a shortcut with an additional -uninstall parameter added to the .exe path. It didn't work.
    I used Microsoft's Installation Cleanup Utility and that didn't work to "un-confuse" the installer either.
    Do you have any more suggestions?
    Adobe AIR came with the HTC Sync program for my phone, which appears to have dependencies on it where it won't completely work without it.
    Thanks in advance for any input.
    ps. I created a new thread because I couldn't find the "reply" button on a similarly unresolved thread regarding Adobe AIR installation issues on Windows 7.

    I would like to say thanks to artrose54 and to playswithtech for their thoughtful responses to my problem. I finally figured out which number I was to delete, and then, having made a copy of the number in notepad, deleted it. Upon a restart to my computer I then was able to download adobe air 2.7. I found that I still could not download the shutterfly express uploader, however; so I applied the same approach. I went looking for the number in the registry that corresponded to the uploader. I deleted it; restarted the computer; returned to shutterfly; and then was able to download the express uploader. I am sure I will find other uses for Adobe Air in the future.
    From: artrose54 <[email protected]>
    To: Sandra Buchin <[email protected]>
    Sent: Sunday, June 26, 2011 12:37 PM
    Subject: Re: Adobe AIR won't install - Windows 7 Ultimate x64
    Hi everyone,
    Here is the fix that worked for me,
    You need to go to start run and type in regedit
    now press ctrl+f for find and type in "adobe air" without the quotes then click find next
    the first entry it finds is the one I deleted, it is a long number on left side of screen that is greyed just right click and delete it
    I then rebooted the computer and ran adobe air installation
    and it worked with out a problem
    The adobe air log file really doesn't tell u anything but where it tried to find the setup.msi file
    but it doesn't exist because of the registry entry that needs to be deleted which is what causes the error
    If u r not sure of editing the registry then maybe you know someone that can help you
    I hope this helps you out it worked for me

  • How to get Adobe Air-apps to run *properly*? (Voddler ecpecially)

    First: I am running AMD64, and have installed the bin32-adob-air from AUR.
    The problem is, this does not work as it should. Air apps are never "installed" like they would be in Windows, or Ubuntu with the adobe-air from adobe installed. This causes problems with remembering configs and storing data between instances. Wimp, t.ex. will never remember my password, now matter how many times I check the remember password-box. And When running VOddler it just won't find the config file.
    I am trying to run Voddler in linux now, following this. But it won't work.
    I just get an "error reading config file" message when starting it using the adobe-air command (ie. the script from the package. Thinking the problem might be caused by the script running air apps from a temp dir, i aslo tried to run
    [gert@blad opt]$ /opt/adobe-air-sdk/bin/adl -nodebug /opt/airapps/VoddlerPlayer/META-INF/AIR/application.xml /opt/airapps/VoddlerPlayer
    after unpacking the Voddler Files there, but no luck.
    I see that there are a newer version of Voddler out now, and I will try that, but I'd appreciate any help with this spesific issue.
    Also, I would like to know if there is any way to get the "full Air experience" where you jut click-and go, and can install Air-apps the simple, proper way "everybody else" does it. Cause Air right now is a major hassle. Is there any chance of getting the Adobe-Air installer from Adoe work on Arch, or at least get a similar result? Integrated in the system, detected in the browser on  webpages etc.
    Last edited by naguz (2010-05-15 17:01:25)

    Tried again with the command taken from firefox appended to the script (instead of §1 §2 etc.) and got:
    (adl:17512): Gtk-WARNING **: Kunne ikke finne temamotor i module_path: «murrine».
    (adl:17512): Gtk-WARNING **: Kunne ikke finne temamotor i module_path: «murrine».
    Gtk-Message: Failed to load module "gnomesegvhandler": libgnomesegvhandler.so: cannot open shared object file: Ingen slik fil eller filkatalog
    Error #2032
    http://api.voddler.com/vnet/index/login-token
    Parameter: version:2
    Parameter: token:3c034c484e3ed6217ec0b4b6a6cd01c9
    Response received
    http://api.voddler.com/vnet/index/pre-movie-request
    Parameter: movie:2721821284152452737
    Parameter: session:952b4840d0a91e896c210622ee83333a_0c965a262382ad33a9479ebfaddf9a3d
    Parameter: crid:2721821284152752803
    Parameter: version:2
    Response received
    PreMovieResult: [object Object]
    movieID: 2721821284152452737
    MOVIEREQUEST: false movieModel.resumeTime: 0
    http://api.voddler.com/vnet/index/movie-request
    Parameter: movie:2721821284152452737
    Parameter: session:952b4840d0a91e896c210622ee83333a_0c965a262382ad33a9479ebfaddf9a3d
    Parameter: version:2
    Parameter: crid:2721821284152752803
    Parameter: resume:0
    Response received
    Adding to playlist url: 0p000001000_e000335_n0017_s0318_he3052b084510fe31419083eb165aa4bc_00000000000000000000000000000000_d59845ff23b2b6f22d3f3ee9020ab34af_t02
    Logg error
    (Object)#0
    clientCode = 30
    clientVersion = "3.10.1680"
    ctxId = ""
    errorCode = 1000
    extra = "Token login result triggered"
    os = "Linux"
    userId = "'2721821230480292729'"
    vnetVersion = "5522"
    DRM check...
    ReferenceError: Error #1069
    movieMetaDataReceived: 2004
    NetStream.Play.Reset
    NetStream.Play.Start
    Voddler.Open.Done
    Main movie metaData received
    DRM Fatal Error!
    Logg error
    (Object)#0
    clientCode = 30
    clientVersion = "3.10.1680"
    ctxId = ""
    errorCode = 7744
    extra = "General Error: 7744"
    os = "Linux"
    userId = "'2721821230480292729'"
    vnetVersion = "5522"
    ReferenceError: Error #1069
    It errors out after the Voddler window has been "Rerwinding the tape"  for about 10 secs.
    EDIT: I moved my voddler folder to /opt/airapps so I could use your file without any edits to rule out typos.
    Now, the voddler player starts from firefox in wine. But I immediately also get the "Oops, we noticed you didn't watch the whole movie"-window pops out at the same time, and i get a similar error as above.
    DRM check...
    ReferenceError: Error #1069
    movieMetaDataReceived: 2008
    NetStream.Play.Reset
    NetStream.Play.Start
    Voddler.Open.Done
    Main movie metaData received
    DRM Fatal Error!
    Logg error
    (Object)#0
    clientCode = 30
    clientVersion = "3.10.1680"
    ctxId = ""
    errorCode = 7744
    extra = "General Error: 7744"
    os = "Linux"
    userId = "'2721821230480292729'"
    vnetVersion = "5522"
    ReferenceError: Error #1069
    I guess voddler cancels the DRM "lease" as soon as the error box pos up, giving me this question. Seems Firefox doesn't communicate properly with the air-app. Or something else I don't get. complete output from firefox run: pastebin
    Last edited by naguz (2011-01-11 22:32:16)

  • Create an Adobe AIR application that can sync with iOS application.

    Hi All,
         We have created a Flex Mobile application and we need to create a corresponding sync application using Adobe AIR for copy some contents from Desktop to Mobile Phone. Does anyone has any idea how to get started any pointers would be of great help. Also is Adobe would be the right technolgy to go with as we would be required to create similar application for Mac OS too.
    Thanks
    Vishal

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

  • Flash and Adobe Air weird display on Ubuntu

    I installed Flash on Ubuntu 12.04, and it has a very strange display. Here the way any flash application looks :
    You can see in this image the same page displayed on the left by flash on Ubuntu, and on the right by flash on Windows.
    I am experiencing the same problem with air installer and air applications. Here the way Adobe Air (2.6) installer looks :
    The version 1.5 of Adobe Air displays right, but it's the only one.
    Anyone experienced the same problem ?

    I finally find what the problem was. It has nothing to do with either the server, neither Flash Player or Adobe Air.
    The problem came from mstc window (remote desktop software). By default it was set to display 16bit colors. I might have changed it sometime to 15bit.
    By setting it to 16bit, it solved the problem.

  • HTC Sync Adobe Air Pending

    I was trying to install HTC Sync (v 3.???) for my new Adroid HTC EVO 4G phone on my Windows 7 64 Prof PC, but it isn't working seemingly because the Adobe Air Install (v2.5) is in a permanent state of "Pending".  I've tried uninstalling Air and all of it's componenets, but Every time I try to install the HTC sync software, it imdicates that Adobe Air installation is pending.  Is there a way to remove this and the "Pending" componenets?
    Here is the log file:
    [2011-02-09:11:43:21] Runtime Installer begin with version 2.5.0.16600 on Windows 7 x86
    [2011-02-09:11:43:21] Commandline is: -silent
    [2011-02-09:11:43:21] No installed runtime detected
    [2011-02-09:11:43:21] Starting silent runtime install. Installing runtime version 2.5.0.16600
    [2011-02-09:11:43:21] Installing msi at c:\users\Mxyzptlk\appdata\local\temp\air59d.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-02-09:11:43:22] Runtime Installer end with exit code 0
    [2011-02-09:11:52:33] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-02-09:11:52:33] Runtime Installer begin with version 2.5.0.16600 on Windows 7 x86
    [2011-02-09:11:52:33] Commandline is: -eula
    [2011-02-09:11:52:33] Installed runtime (2.5.0.16600) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-02-09:11:52:33] Starting eula display
    [2011-02-09:11:52:48] Finished eula display
    [2011-02-09:11:52:48] Runtime Installer end with exit code 0
    [2011-02-09:11:52:48] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-02-09:12:13:07] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-09:12:13:07] Commandline is: -silent
    [2011-02-09:12:13:07] Installed runtime (2.5.0.16600) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-02-09:12:13:07] Starting silent runtime update. Updating runtime from version 2.5.0.16600 to version 2.5.1.17730
    [2011-02-09:12:13:08] Reinstalling c:\users\Mxyzptlk\appdata\local\temp\aird71c.tmp\setup.msi
    [2011-02-09:12:13:10] Runtime Installer end with exit code 0
    [2011-02-09:12:16:45] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-09:12:16:45] Commandline is: -arp:uninstall
    [2011-02-09:12:16:45] Installed runtime (2.5.1.17730) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-02-09:12:16:52] Relaunching with elevation
    [2011-02-09:12:16:52] Launching subprocess with commandline c:\program files (x86)\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-02-09:12:16:52] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-09:12:16:52] Commandline is: -stdio \\.\pipe\AIR_4236_0 -eu
    [2011-02-09:12:16:52] Installed runtime (2.5.1.17730) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-02-09:12:16:52] Starting runtime uninstall. Uninstalling runtime version 2.5.1.17730
    [2011-02-09:12:16:53] Uninstalling product with GUID {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-02-09:12:16:53] Runtime Installer end with exit code 0
    [2011-02-09:12:16:54] Elevated install completed
    [2011-02-09:12:16:54] Runtime Installer end with exit code 0

    I did exactly as you wrote.  Uninstalled all files, and then installed the latest version of Adobe air and then HTC Sync from the link provided.  It's still not working.
    Here is the log file:
    [2011-02-14:13:50:11] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-14:13:50:11] Commandline is:
    [2011-02-14:13:50:11] No installed runtime detected
    [2011-02-14:13:50:14] Runtime Installer end with exit code 6
    [2011-02-14:13:50:22] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-14:13:50:22] Commandline is:
    [2011-02-14:13:50:22] No installed runtime detected
    [2011-02-14:13:50:25] Relaunching with elevation
    [2011-02-14:13:50:25] Launching subprocess with commandline c:\users\meltenphrat\appdata\local\temp\air671c.tmp\adobe air installer.exe -ei
    [2011-02-14:13:50:25] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-14:13:50:25] Commandline is: -stdio \\.\pipe\AIR_4440_0 -ei
    [2011-02-14:13:50:25] No installed runtime detected
    [2011-02-14:13:50:25] Starting silent runtime install. Installing runtime version 2.5.1.17730
    [2011-02-14:13:50:25] Installing msi at c:\users\metlenphrat\appdata\local\temp\air671c.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-02-14:13:50:31] Runtime Installer end with exit code 0
    [2011-02-14:13:50:31] Elevated install completed
    [2011-02-14:13:50:35] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-02-14:13:50:35] Runtime Installer end with exit code 0
    [2011-02-14:13:50:35] Runtime Installer begin with version 2.5.1.17730 on Windows 7 x86
    [2011-02-14:13:50:35] Commandline is: -installupdatecheck
    [2011-02-14:13:50:35] Installed runtime (2.5.1.17730) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-02-14:13:50:36] Performing pingback request
    [2011-02-14:13:50:36] Pingback request completed with HTTP status 200
    [2011-02-14:13:50:36] Starting runtime background update check
    [2011-02-14:13:50:36] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.5.1.17730/update
    [2011-02-14:13:50:36] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.5.1.17730/update to C:\Users\meltenphrat\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-02-14:13:50:37] Runtime update not available
    [2011-02-14:13:50:37] Unpackaging cancelled
    [2011-02-14:13:50:37] Runtime Installer end with exit code 0

  • IPhone App via Adobe AIR and Webservice

    Hi Forum,
    I am trying to deploy a iPhone App developed with ADOBE AIR. This gets data from SAP via a webservice. When I test it on the iphone simulator provided by Flash Builder it works fine. But when I try to run it on the iPhone, it just does not get any data. It does not ask for the user credentials also. I was wondering if any one has tried this route and succeeded ?
    Any pointers will be greatly appreciated.
    rgds,
    Rajvish

    Hello,
    Just try to open the any sample sap webpage sitting on SAP server ,where the webservice is residing on the iphone browser,if
    the webpage is opening,then there is problem in the application or else,your SAP server is not exposed on internet,so the webservice is not called.
    regards
    kaushik

Maybe you are looking for

  • Can't update or sign in to Revel account using Photoshop Elements 13

    I have Adobe Revel and can't sign in using my online account usning the selection in the file menu group in Photoshop Elements 13. I can sign in to the Revel account directly but I can't update it. What can I do to correct this problem? I am running

  • DBMS_ADVISOR.quick_tune

    Hi, Iam trying to execute the following in my database. BEGIN DBMS_ADVISOR.quick_tune( advisor_name => DBMS_ADVISOR.SQLACCESS_ADVISOR, task_name => 'emp_tune', attr1 => 'Delete from employee where emp_id= 400001 and dept = 5 and status = ''ABORTED''

  • Set Show tag for Movies gives sub-menus, new feature to update 2.3?

    I heard some people mention using playlist for reducing the size of the movies list, but I've noticed that if you set the Show tag for movies (which I have already done for some of mine where the movies are part of a series - for example Discworld mo

  • Good news about Carbon Copy Cloner

    After reading a post from Mike Bombich at his Carbon Copy Cloner web site that he knew of no reason CCC wouldn't work under Rosetta on the new InteliMacs I decided to try cloning to an external FW400/USB2 Maxtor drive, and indeed he is correct! Bombi

  • HT1222 Is give an error when I try to install 7.0

    I want to install operating system 7.0