AppleMobileBackup.exe error message - help!!

I synced my 3G as I normally do but got this message when the computer tried to do a back up: AppleMobileBackup.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
I'm using Windows XP and I haven't installed any crazy programs onto my phone or computer. The back up process runs for about 10+ minutes and just when it is about to reach the end, this message pops up.
How do I fix this??

I just got off the phone with Apple support and did the user account thing and the problem went away. The only problem now is everything including my entire library is on the other account. I use Iolo System Mechanic pro for my security software. I never had this problem till the 2.0.2 (5C1) download.
I believe the the new user fixes the issue due to the fact that none of the preexisting files are being used . So there must be a conflict or corrupt file some where in the original iTunes directory that is not removed and or replaced during a reinstall. I will try this http://support.apple.com/kb/HT1275 and see if that works.
I think it might be a corrupted back up and uninstalling apple mobile device support and removing any remaining files could solve the problem.

Similar Messages

  • Problems since 2.2.1  (applemobilebackup.exe error, long sync time)

    After installing 2.2.1, I am experiencing the following and wondering if anyone on this forum has a solution to the following two issues. Thanks in advance.
    While syncing to my pc (it's a toshiba laptop running xp sp3), right before completing, there has been an applemobilebackup.exe error appearing that I click ok to and then it finishes sync'ing. I'v searched the net and it seems like I'm the only one experiencing this??
    It seems to keep taking longer and longer to sync. I remember the status bar running faster than I can keep an eye on it. After installing a few games, it's at a crawl these days. I uninstalled the Facebook app and still runs at a crawl. Anybody have any ideas how to enable faster sync times?

    Here is an article from the apple support website that might help out.
    http://support.apple.com/kb/TS1401
    http://support.apple.com/kb/TS1878

  • Java.exe error message

    I am getting a java.exe error message after installing Oracle 8i Enterprise Edition on a Windows XP home edition. Can anyone help?

    Hi,
    Oracle usually installs it's own JDK for it's usage. Probably the paths are updated so that iAS is not able to use java that is bundled along with it. Please check the version of java at the command prompt by issuing..."java -fullversion". Please let me know the outcome for me to help you further on this.
    Regards
    Ganesh .R
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/devlopers/support

  • SDTray.exe error message

    When starting computer, I get an SDTray.exe error message.  I have Windows 7 64-bit on model e9280t.  The messages says system can't start because snlBase150.bpl is missing from computer.  When I close this  message, the computer runs normally, as far as I can tell.  Is there something I can do to correct this error message?

    Are you using a trial version of Spybot - Search & Destroy 2?  
    If so, that is what is causing the message. Use the  Spybot Search & Destroy uninstaller to remove the program and the message shuold go away.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • When i try to download apps from the app store it gives me an error message help!!

    when i try to download apps from the app store it gives me an error message help!!

    Well this is my first time using the support community so I didn't know how it worked. It was giving me the error message 1004. I figured it out though thanks.

  • Applemobilebackup.exe error during backup

    I have been having some problems for over a month now backup up my iphone. Flat out can not backup. Gets to say 90-95% and then fails giving me the applemobilebackup.exe error to report to windows. I have tried reinstalling itunes, deleting mobile files off pc, removing anything I can find that has to do with the iphone or apple, all the way to a complete reformat of the pc. New itunes install and still getting the error. Running itunes 8.0.2.20 and iphone 2.2.1 on windows xp pro. Any reason why after a complete format I still get this error. No virus scan has been installed. Could it be the phone is done?

    Hi, I had a similar problem which I traced to a particular file on the Iphone which I had put there using AirShare. When I deleted the file and started a resync it worked fine.
    N

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • HT1926 Version 11.1.4.62 on WinXP issue: AppleMobileDeviceHelper.exe error message every 30 seconds. iTunes hangs when iPhone4 is syncronized

    Version 11.1.4.62 on WinXP issue: I have re-installed iTunes according to instructions. iTunes give me the error message "AppleMobileDeviceHelper.exe has found an error and terminates. Restarting service does not help. Re-installing does not help. iTunes cannot update iPhone4S, iTunes hangs when trying after iPhone syncronization.

    See the user tip: https://discussions.apple.com/docs/DOC-6562 for resolution

  • Devcon.exe error message

    Hi, My wan miniport adapters stopped functioning recently (exclamation signs on each of them). I tried uninstalling the broken miniports by right clicking and hitting uninstall but that wouldn't work, but was able to uninstall them through
    a method found on spiceworks "55611- fix-broken wan-miniports" (Microsoft won't let me post links).  The problem I'm having (since I don't have internet access due to these broken miniports) is reinstalling the wan miniports.  It appears
    (although please let me know if there is an easier way) that the only solution has been to reinstall them by using devcon.exe.  I've tried downloading WDK onto another computer (downloaded from Microsoft website) and then putting all
    files downloaded onto a thumbdrive to get devcon.exe onto my broken computer.  My computer installs WDK, but when I click on devcon.exe (for amd64), nothing happens.  When I click on the x64 version, I receive an error message indicating
    that this version is not compatible with my computer.  If I try to access devcon.exe from WinDbg "Open Executable" and the click on "devcon" that way, I receive the following error message below. Would be ever so grateful if anyone
    has ideas on how to solve this problem (missing the internet). Sony Vaio, Windows 7, 64-bit operating system. 
    Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    CommandLine: C:\WinDDK\7600.16385.1\tools\devcon\amd64\devcon.exe
    Symbol search path is: *** Invalid ***
    * Symbol loading may be unreliable without a symbol search path.           *
    * Use .symfix to have the debugger choose a symbol path.                   *
    * After setting your symbol path, use .reload to refresh symbol locations. *
    Executable search path is:
    ModLoad: 00000000`ff290000 00000000`ff2a7000   devcon.exe
    ModLoad: 00000000`77090000 00000000`77239000   ntdll.dll
    ModLoad: 00000000`76f70000 00000000`7708f000   C:\Windows\system32\kernel32.dll
    ModLoad: 000007fe`fcef0000 000007fe`fcf5c000   C:\Windows\system32\KERNELBASE.dll
    ModLoad: 000007fe`fe200000 000007fe`fe2db000   C:\Windows\system32\ADVAPI32.dll
    ModLoad: 000007fe`fda20000 000007fe`fdabf000   C:\Windows\system32\msvcrt.dll
    ModLoad: 000007fe`fd8d0000 000007fe`fd8ef000   C:\Windows\SYSTEM32\sechost.dll
    ModLoad: 000007fe`fdef0000 000007fe`fe01d000   C:\Windows\system32\RPCRT4.dll
    ModLoad: 000007fe`fdad0000 000007fe`fdcd3000   C:\Windows\system32\ole32.dll
    ModLoad: 000007fe`fe020000 000007fe`fe087000   C:\Windows\system32\GDI32.dll
    ModLoad: 00000000`76e70000 00000000`76f6a000   C:\Windows\system32\USER32.dll
    ModLoad: 000007fe`fe1f0000 000007fe`fe1fe000   C:\Windows\system32\LPK.dll
    ModLoad: 000007fe`fd300000 000007fe`fd3c9000   C:\Windows\system32\USP10.dll
    ModLoad: 000007fe`fdce0000 000007fe`fdeb7000   C:\Windows\system32\SETUPAPI.dll
    ModLoad: 000007fe`fd130000 000007fe`fd166000   C:\Windows\system32\CFGMGR32.dll
    ModLoad: 000007fe`fd680000 000007fe`fd757000   C:\Windows\system32\OLEAUT32.dll
    ModLoad: 000007fe`fd110000 000007fe`fd12a000   C:\Windows\system32\DEVOBJ.dll
    (204.1628): Break instruction exception - code 80000003 (first chance)
    *** ERROR: Symbol file could not be found.  Defaulted to export symbols for ntdll.dll -
    ntdll!CsrSetPriorityClass+0x40:
    00000000`7713cb70 cc              int     3

    Thanks.  Yesterday, I was able to get devcon.exe to run but was only able to reinstall some of the broken wan miniports.  Commands are below for the ones that did not install.  Still do not have internet access.  By any chance,
    do you know why this could be?  Also, I would think Microsoft would have an easier solution to the broken miniports problem than this, but have not been able to come across one.  Thanks again for your help.
    IP:
    devcon.exe install c:\Windows\inf\netrasa.inf MS_NdisWanIp
    ◦IPv6:
    devcon.exe install c:\Windows\inf\netrasa.inf MS_NdisWanIpv6
    ◦Network Monitor:
    devcon.exe install c:\Windows\inf\netrasa.inf MS_NdisWanBh
    ◦L2TP:
    devcon.exe install c:\Windows\inf\netrasa.inf MS_L2tpMiniport
    ◦PPPoE:
    devcon.exe install c:\Windows\inf\netrasa.inf MS_PppoeMiniport
    ◦PPTP:
    devcon.exe install c:\Windows\inf\netrasa.inf MS_PptpMiniport
    ◦SSTP:
    devcon.exe install c:\Windows\inf\netsstpa.inf MS_SstpMiniport

  • AcroRd.32Info.exe error message

    After opening a webpage saved as a pdf file (via print) on the computer, the following error message appears:
    "Acro.Rd32Info.exe -The instruction at "Ox.0700609c referenced memory at 0x00000014. The memory could not be "read"Click OK to terminate the program".
    OS is windows xp sp3
    I use IE V8 and firefox v.3.6
    Other application software are: Adobe Acrobat Pro v7, Adobe reader v9, and Abbey Fine Reader Pro v10.
    Any advice to fix it would be appreciated.
    Regs,
    je432

    I can never understand why people post product support questions in the forums' forum...?
    It seems that, depending on how and from where, one accesses the Adobe fora, they end up here, and never realize that they missed the chosen product forum. I used to think that it was a series of "rabbit holes" and these opened up, to swallow unsuspecting newbies, but many Adobe folk have pointed out that with the wrong clicks, the posters get dumped here, and do not notice the title of the forum. If you notice, the majority of such posters have few posts under their belts.
    For old timers, it does seem odd, but we are usually accessing from other directions, than the first-time user with an issue stressing them out.
    Going back about a year, it seemed that half of the posts, that were intended for the Dreamweaver forum, ended up here. There were even some Threads to the effect of - This is not the Dreamweaver Forum, please do not post here. They got bumped daily, so they would appear at the top of the main forum page, and many never bothered to read the big, bold headline of the first Thread on the main page. They just posted their Dreamweaver question here, never realizing that they were "not in Kansas anymore... " The number has decreased lately, so maybe Adobe has been able to plug a few of those rabbit holes?
    Usually, after a helpful user, such as yourself, notifies them, there is an "Oops moment," apologies and a thank you for the correct forum link - but not always. A few have gotten huffy about their own mistake, and their bodies have yet to be found.
    Hunt

  • Apdpproxy.exe error message

    Am trying to back up computer content to Norton online storage using backup function of Norton360 (have already purchased sufficient storage volume). Get error message "apdpproxy.exe - Unable to locate component ConnAPI.DLL was not found". Web research informs me this is an error resulting from Adobe Photoshop Elements, installed on my computer. How do I fix so I can backup my stuff online? Running Windows XP service pack 3.
    Thanks for all suggestions.

    Hi,
    You don't say which version of PSE you are running.
    You might like to see if the following helps.
    http://kb2.adobe.com/cps/403/kb403011.html
    Brian

  • Trying to Open PSE 9 and get Microsoft Visual C++ Runtime Library Error Message HELP please! :)

    Everything worked fine until I paid and downloaded a program called Rad Lab that works in Photoshop Elements.  I got that downloaded and then tried to open PSE and it won't open and I keep getting this error message.
    I've attached a screen shot of what the message is.  Also Adobe ran an update on my computer and it came up with an error message as well. Adobe Photoshope Elements 9.0.3. Update- "Patch cannot be applied. Please contact customer support"
    So I called customer support and the wait time is over 1 hour so here I am on this forum trying to get some answers! If anyone can help I would appreciate it so much!!!
    Thanks!

    Well, uninstall that RadLab thing, reboot and see if PSE then works.
    Ken

  • Won't sync and no error message. help

    i plug my ipod in to the usb port, it lights up but the screen doesnt change to the normal connecting or syncing screen and it doesn't show up on itunes. there is no dinging sound for connection. no error messages. all my usb ports work, tried them out with other equipment but ipod wont' sync. please help.

    I have the same problem.  I have 64-bit Windows 7, all updates installed, anti-virus uninstalled, and have a specific firewall exception made just for iTunes, however the iTunes Store still refuses to load.  After waiting a (very long) period of time I get the following screen:
    Sometimes I won't get this screen at all, and iTunes will finish loading with a blank screen.  All of my other computers can load iTunes perfectly fine.  This error occurred directly following the iOS 5 update for my iPhone.  Seeing as that the only computer affected was the one updating my iPhone, I figure there's some connection between the two.  I have
    cleared catche, cookies, everything
    uninstalled and reinstalled all Apple software and components (and end processes)
    completely deleted my iTunes library
    tried creating a new account, but can't even do that becuase I can't connect to the store
    tired de-authorizing and re-authroized the account
    signing-out and signing back in
    disabled parental controls
    made sure I WASN'T behind a proxy server
    I
    Apple Support tried to help with my request but for some reason refused to listen to the notion that this problem occured because of an iOS5 update (and iTunes 10.5).  The only thing I haven't done is wipe my harddrive, which seems to be the only option now. 
    Somebody please help.

  • OutlookSyncClient.exe error message and iTunes 7.3.2

    Hi All,
    I have Windows XP and MS Outlook 2003. My MS Outlook 2003 calendar has never sync to the iPhone or ITunes. I was able to synch form my iPod. Does anyone have some helpful hints? I was able to sync my contacts from Yahoo.
    I tried almost all of the items in the Apple KB article 305845.
    -- Martin

    I was able to sync successfully with 7.3.2, and then I started getting the OutlookSyncClient error message. Here's how I worked around it:
    I went to Edit->Preferences->iPhone and clicked Reset Sync History. Then I want to the Info tab of the iphone in iTunes and I scrolled to the bottom and checked "Calendar" and "Contacts" under the Replace information on this iPhone section. Then I did a sync. It worked fine, and everything syncs now.
    Some people have reported that 7.3.2 is corrupting their Outlook data. As a precatuion I disconnected my network cable -- all of my data is stored on a server and I can just blow away my OST file should iTunes destroy it. If you're using PST files so all your data is local, you'd be wise to back it up first. I didn't have a problem, but a helping of paranoia here is probably a good thing.

  • System Exec error message help

    I have a piece of code as shown in the attached jpg.  And I have it deployed just as shown, without the error cluster being wired.  I use this piece of code to ping a server to see if it's there, meaning to see if it responds with a correct ping response.  If so, I then move forward with writing a data file to that server that I write every half hour for days or weeks at a time.  If the ping response is not correct, I simply go on and return one half hour later with even a larger (appended) data file to write.  My main intent is to not have my code sit and wait, trying to write a file to a server that might not be there...  
    I've used this same code and technique for years without fail.  Until recently.  When it did finally fail, I got the worst of all possible outcomes where the ping command itself caused my code to hang with error messages I will provide shortly.  And I'm hoping someone can tell me what would even cause a message like those below in the first place...  The entire goal of using this ping of the server was to avoid having the "write file" command get held hostage by the server not being there...  But if the ping command itself causes the code to put up error messages (and no one is there to monitor this typically) then that constitutes a situation where my cure became my problem.  
    See in the jpg where I use
    ping -w 200 -n 1
    followed by the name or IP address of the server.  (that's what comes out of the "ping" control you see in the jpg).
    The -w 200 modifier is a 200 ms timeout to wait.
    The -n 1 is the number (1) of echo requests to send.
    When this code fails, it puts up, in sequence, four messages like the one below.  Note that this code is running from an executable that would be found on this Windows XP machine at
    C:\Documents and Settings\xxxxuser\My Documents\my_executables\
    The first of the four messages, each of which you have to click OK to to see the next one, is as follows.
    The file C:\Documents and Settings\xxxxuser\My Documents\my_executables\-w could not be opened.  No application was found to open that type of file
    The second message is identical to the above except the "-w" is replaced by "200" (without the quotes).
    Same with the third message except the "200" is now replaced by "1" (without the quotes).
    Same again with the fourth message except the "1" is now replaced by the full name of the server, eg., "myserver.abc.com" (without the quotes).
    Clearly the System Exec.vi (see that in jpg) is parsing up the ping command, but skipping over the "-n" component(???), and it thinks it's supposed to try to open some non-existent file at the same file location as the executable that is executing my code.  
    I get this result rarely so it's hard to figure out what's going on.  Anyone have any ideas what might cause such an error and any hints on how to prevent this show stopping error from occurring???  Do I perhaps just need to practice better programming and wire the error cluster on System Exec.vi???  
    Any thoughts or help would be much appreciated...  thanks.. bob.. 
    Attachments:
    ping pic.jpg ‏19 KB

    It appears to me that your ping command is getting mangled on its way to the command shell, like something is interrupting it or trying to run at the same time.
    When it says the executable cannot be opened, I believe that is because it's trying to process that character or string as its own separate command, instead of as a flag of your ping command.
    I don't know why that would happen or what outside program could be interfering with your call to the command shell.
    I do think that Wart's suggestion is a good one: the cmd /c part should send the command through a slightly different channel that may preven this interference.
    Chris
    Certified LabVIEW Architect
    Certified TestStand Architect

Maybe you are looking for

  • My iMac G5 won't start - please help?

    I don't get a chance to get near it very often, but my wife & kids say it has been really slow recently and particularly getting stuck in Microsoft Word. Then it froze. Now it won't start-up - get to the grey screen & the apple logo and the pin-wheel

  • How do i remove a stadard word from a spell check dictionary?

    even thought its a real word and spelled correctly i want to be highlighted if i type it. I'm using the standard English(united states) dictionary. i also have low technical skill. i meant to type "dog" but i actually typed "dong" and it lead to some

  • Cannot connect to Oracle cache administrator.Please help.

    Hi , I was not able to connect to the Oracle TimesTen database the usual way. I get the following errors: Backend failed with exit status 1: C:\TimesTen\tt70_32\srv\info\ws\cgi-bin\cache/ttBackEnd.exe -connStr "DSN=TTSS" -user "APPS" -oraclepwd [Omit

  • Problem installing WL 6.1 SP3 on Solaris 7 Intel

    Dear all, When I try to run the installation toolkit weblogic610sp3_sol.bin on Solaris 7 Intel, the following error occurs: "Error: can't find libjava.so." Then, I try to run the toolkit with the following command: sh weblogic610sp3_sol.bin LAX_VM $J

  • PO Workflow release

    Hi guys, i created release strategy. I have problem with PO WF configuration. In SPRO I assigned my SAP login to the release strategy. The problem is that when I create PO I do not receive new message in SBWP. As far as I know WF has been activated.