Error when updating. what do i do now?

i rec'd an itunes update which failed & now the program won't start. i'm missing a file. what do i do now?

Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
Remove all of these items in the following order:
iTunes
Apple Software Update
Apple Mobile Device Support (if this won't uninstall move on to the next item)
Bonjour
Apple Application Support
Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
Please note:
Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
HT1925: Removing and Reinstalling iTunes for Windows XP
HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
tt2

Similar Messages

  • Got error when updating to ios 5.1

    got an error when updating to 5.1 and now phone will not reset. stuck on black screenwith apple on it. i have tried replugging phone into comp but it will not come up in Itunes. I am using a PC by the way.

    Possible, but not 100% sealproof. -1 can happen in a variety of situations, not always jailbroken. It's a baseband error and while the risk of getting that error is higher on a non-factory unlocked device, it can still happen.
    Even if OP was jailbroken and removed the jailbreak, it's quite difficult, if not impossible to tell the device has been jailbroken before if restored as brand new.
    Take the device to an Apple Store for evaluation.

  • When i update my iphone 4s in itunes, it shows error 1. What can i do now?

    When i update my iphone 4s in itunes, it shows "error 1". What can i do now?

    That ususally indicates a hardware failure.  Bring your phone into Apple.

  • This is my iphone 4  ECID: ********, now restore or update showing error code 1 what can i do now?

    this is my iphone 4  ECID: ******, now restore or update showing error code 1 what can i do now?

    From the article:
    Error 1 means that your device or computer may have a hardware issue that's preventing the update or restore from completing.
    1.Check that your security software and settings aren't preventing your device from communicating with the Apple update server.
    2.Then try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    3.Confirm that your security software and settings are allowing communication between your device and update servers.
    4.If you still see the error message when you update or restore, contact Apple support.

  • TS3694 When I want to restore my IPhone 3G, it can not restore & show an Unkown error (1015). What can I do now?

    When I want to restore my IPhone 3G, it can not restore & show an Unkown error (1015). What can I do now?

    Please see the quoted text below, taken from the Apple article you linked.
    "Error 1015: This error is typically caused by attempts to downgrade the iPhone, iPad, or iPod touch's software. This can occur when you attempt to restore using an older .ipsw file. Downgrading to a previous version is not supported. To resolve this issue, attempt to restore with the latest iPhone, iPad, or iPod touch software available from Apple. This error can also occur when an unauthorized modification of the iOS has occurred and you are now trying to restore to an authorized, default state."

  • After updating my ipad to ios7 it is on recovery mode. Then I tried to reboot it and it shows an image to connect to iTunes. I tried to connect to iTunes and restore it but it says ipad could not be restored and an error occurred. What can I do now???

    After updating my ipad to ios7 it is on recovery mode. Then I tried to reboot it and it shows an image to connect to iTunes. I tried to connect to iTunes and restore it but it says ipad could not be restored and an error occurred. What can I do now???

    http://support.apple.com/kb/TS3694#error3194
    This might help. Good luck, I really hope this all works out. :-)

  • Error when updating Idocs in Source System

    Hi All,
    We did a recent copy from QAS to DEV,after which am unable to run my process chains ,the load status still showin yellow signal,whereas job is getting finished but am unable to load datas to the targets. Am getting the following error message when i see the display message in process chain.
    System Response
    Some IDocs have error status.
    Procedure
    Check the IDocs in Source System . You do this using the extraction monitor.
    Error handling:
    How you resolve the errors depends on the error message you get.
    Error when updating Idocs in Source System     
    Could anyone please let me know what can be done ?
    Thanks
    con

    Hello All,
    I have same problem but its RESOLVED by the following process.
    Step - 1
    execute  the Function module "SCP_LANGUAGES_IN_INSTANCE".  It may or maynot give some output. Just note if it give the output
    Step - 2
    in Transaction SE38 execute the program "RSCPINST".
    Just Click on the Activate button (dont select anything).
    Step - 3
    Again do the same thing specified in Step - 1.  Now it will give the output saying that Language is DE.
    So by the above procedure my issue is been resolved.
    Regards
    Sankar

  • Avoiding concurrency errors when updating a database through AJAX

    What are some strategies for avoiding concurrency errors when updating a database through AJAX. That is, in cases where a given user could attempt to modify the same row in the database with simultaneous requests (say, that he updates one column with information with an AJAX call, then immediately submits a form that updates the same row), what are some good ways yo prevent the two updates from colliding? On the JavaScript side one might make the AJAX call synchronous, but I question whether that is the best way to do it. Has anyone else confronted this?

    Well, since no one seems to have any ideas so far, I'll throw in my two cents worth.
    I'm not too familiar with AJAX so my advice may be limited.
    I suggest you do a google search on Optimistic concurrency database to get some ideas on how to handle it.
    If your update/insert/delete query is thread safe, then even if the same user double clicks the button fast enough to immediately have another update to the same record, then the first update will complete before the second one is carried out. Therefore no harm is done since he is just updating the same record. Since a typical update/insert/delete takes only a few milliseconds (querying may take a lot more time), its not likely he can click the button that fast. (I assume your using connection pooling for speed).
    The trouble comes up when two people call up data from the same record in different browsers. The first one updates/inserts/deletes the record. Now the other user is looking at old data. When he updates/inserts/deletes, there is a problem. One way to handle this is to keep a copy of all the fields from that record in each user's session scope when they first fetch it from the database (example: oldName). Then when you go to update some time later, to this:
    sql= update person set name=newValue where personID=3344 and name=oldName
    Note oldName is from session scope.
    If name in the database has changed, the update will not occur and will return 0 records updated. If it didn't change, it will update.
    Note your update function should not throw an exception if it cant update, it should return false. Return true if it worked.
    Example: public boolean updateName(String name)
    Similiarly, your insert should not throw an exception if the record already exists, it should return false meaning it cant insert.
    Exaple: public bolean insertName(String name). Same thing with delete function.
    If a record cant be updated due to someone else updating the record while the user was looking at data, return a message that it wasn't updated due to that problem. Then show the user the new value in the database ask him if he wants to overwrite the new change.
    Note even if you show 100 records on the JSP, only update the ones that have changed and not all 100. This way, its not likely he has updated the same records someone else has altered. Less likely a colision compared to updating all 100.
    If your updating/inserting/deleting more than 1 record (say, 3), then you should look into setting up a transaction in addition to all the above and rolling back all of them if one fails.
    Reading the section on databases from http://www.javapractices.com/home/HomeAction.do may also help.

  • Error when updating Playbook OS version via Blackberry Desktop Manager

    Greeting,
    I have a batch of old playbooks which having the stack charging issue, but I found that I can update the OS to the newest version (2.1.0.1917) via Blackberry Desktop Manager, then the charging algorithm will be changed to the updated one and go over this dead battery issue. I was able to do so successfully in the past week smoothly on several devices.
    But since this Monday, the Desktop Manager is saying "An updated Blackberry Desktop Software component must be installed before you can continue" when downloading the Desktop software and will appear "There was an error updating your software, an error has occurred while downloading the Blackberry Desktop Software.Please try again." and preventing the process. Seems there are some change on the server side starting this week which has caused this problem, but there's no error code to locate the exact issue.
    I tried on 2 different computers as well as completed uninstalling and re-installing the Desktop manager, also tried to disable the automatic update as been advised in some threads. So no clue how to deal with it for now. It will be highly appreciate if some one can share some idea.
    I've attached the step by step screenshots for reference, where you can find here:
    http://forums.crackberry.com/blackberry-playbook-f222/error-when-updating-playbook-os-version-via-bl...
    Thanks,

    BLock wrote:
    Sorry I can not help you with your problem but perhaps you can help me.  
    Can you advise where I can find info on "disable the automatic update"?
    just ignore the update if you dont want it on the playbook
    for reloading the OS
    First I would like you to do a Back Up of your PlayBook using your computer and BlackBerry Desktop Software.
    This can be downloaded for free from http://us.blackberry.com/apps-software/desktop/
    After the Back Up is complete I need you to unplug your PlayBook and then push and hold down the Power Button until the unit Force Powers Off.
    Now, while Desktop Software is still open on your computer and the PlayBook Powered Off, Connect the PlayBook to your computer.
    You should see and error screen from Desktop Software pop up that has the options to Retry, Update, or Cancel.
    QUICKLY choose the Update option.
    This will erase all the information off of your PlayBook and Re-Write the Software back onto it. Once it's complete your PlayBook will need to go back through the setup wizard, and you can then perform a restore using Desktop Software to return your information. The only thing that won't come back after the restore are the apps that you downloaded from App World but they can be easily Re-Installed using the My World feature in App World.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Error when updating

    I get an error when updating. The message states,
    Adobe Photoshop Elements 12.1 update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Photoshop Camera Raw 8.5
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1U49
    Do you know what causes this issue?

    Please see- https://helpx.adobe.com/photoshop-elements/kb/elements-12-1-update-error.html
    This error code occurs when multiple instances of Updater are open. Please refer to following forum link for more details: http://forums.adobe.com/message/4913117#4913117#4913117
    Thanks
    Andaleeb

  • Error when updating! Help please!!

    I've been having a problem with the artwork updating on my 5th iPod. I kept getting an error when updating in iTunes whenever I added artwork to songs. So I was told to go into iTunes and go under iPod options and UNCHECK the box to display the artwork on my iPod. Then click okay. Then, go back into it and CHECK the box TO display the artwork and I get an error; "..Unknown Error occurred (-50)". Same error. And yes I have pressed the center button on my iPod to scroll through the different things. And I have restarted the program and computer. Tried disconnecting hte iPod, closing the program, restarting computer, restarting iTunes and reconnecting iPod and every combination of the steps (I've done many searches on this subject here) and same result. I've tried other different things but it all ends up to this error. Can some one please help me
      Windows XP Pro  

    Hi Melophage,
    I managed to do a OS X Recovery Reboot by restarting my computer and holding down Command and 'R'. I reinstalled OS X, and now my computer is working again.
    However I'm going to take my computer into the Genius bar for review.
    I have a Macbook Pro from 2012 (with a 2.6 GHz Intel Core i7 Processor) and was attempting to update OS X (I think Version 10.8.5).
    Many thanks for your message.

  • Help! Tried to upgrade to latest iOS firmware (4.3.5) and I get an error "Unknown error occured (1394)" What do I do now?

    Everything was fine, I try to update to latest iOS firmware (4.3.5) and I get an error "Unknown error occured (1394)" What do I do now?
    Can anyone help me?
    Bobby

    Error 3194, AKA "This device is not eligible.. occurs for several reasons:
    1.  Update to the latest iTunes - currently 10.4.1.
    2.  Disable ALL security apps (firewall, antivirus/spyware) running on your computer.  Additional measures may be needed.
    3.  You may need to edit the Hosts file on your computer to remove references to gs.apple.com if you EVER used hacking techniqus or apps such as tinyumbrella.
    4. Don't try to downgrade the iOS.
    5.  If the phone was EVER successfully hacked in the past (jailbreak, downgrade, unauthourized unlock) there may be nothing you can do now to fix this.
    "This device is not eligible for the requested build: Also sometimes displayed as an error 3194. If you receive this error, update to the latest version of iTunes. 3rd party security software or router security settings can also cause this issue, to resolve please follow Troubleshooting security software issues. Downgrading to a previous version of iOS is not supported. If you have installed software to perform unauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. For steps to edit the Hosts file and allow iTunes to communicate with the update server, see  iTunes: Troubleshooting iTunes Store on your computer, iPhone, iPad, or iPod; follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > The hosts file may also be blocking the iTunes Store.  Also, using an older or modified .ipsw file can cause this error. Try restoring moving the current .ipsw file aside, or try restoring in a new user to ensure that iTunes downloads a new .ipsw."
    http://support.apple.com/kb/TS3694

  • HT4972 my phone has locked  after updating , what should i do now to unlock ? now i don't live in  usa ,i live in Bangladesh and i don't have that sim that i used to . i want to use Bangladeshi sim .

    my phone has locked  after updating , what should i do now to unlock ? now i don't live in  usa ,i live in Bangladesh and i don't have that sim that i used to . i want to use Bangladeshi sim .

    The phone was hacked to unlock it. It relocked when you updated. ONLY the carrier it is locked to can authorize unlocking it. If you are not/never were an AT&T customer and you do not have an original store receipt from either an AT&T or Apple store in the U.S. for a no commitment AT&T iPhone, they will NOT unlock it.
    Buy a new phone.

  • HT2693 I am trying to download and install the iOS 7.1 software that was sent thought general on my iPad 4 th generation it keeps saying there was an error downloading it, what do I do now?

    I am trying to download and install the iOS 7.1 software that was sent thought general on my iPad 4 th generation it keeps saying there was an error downloading it, what do I do now?

    First try resetting your iPad and then try updating again.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If it still will not work, try updating using iTunes. But before you do that, disable your firewall and your antivirus software, then try the update again.

  • Error when updating and restoring iPhone6

    An error #53 occurred when updating my new iphone6.  now it won't update/restore.  It is locked at the iTunes plug in screen.

    Connect it to your computer with the USB cable and it should appear in iTunes as a phone in Recovery Mode. If it doesn't see this Apple Knowledge Base article: Recovery Mode

Maybe you are looking for

  • Scrolling, typing and clicker "stick" all of the sudden - help?

    I bought my MBP exactly one month ago, and things have been fine for the most part. But suddenly the response rate for my clicker, two-finger touch pad scrolling and typing ave been abysmally slow. It takes the computer a few seconds to catch up with

  • Setting Duration of Photos (still clips) in iMovie '11 Does Not Work

    Howdy - I realize there are already similar posts to this one, but so far as I could tell, most of them involve (& focus on) transitions, whereas my issue is strictly with setting the duration for which a photo is held in iMovie. Effectively, I am tr

  • Narrowing problem !!!

    Hello. This is my code. I'm working with RAD6: private HMFacade getHMFacade(){           ServiceLocator locator = ServiceLocator.getInstance();           HMFacade remote = null;           try {                Object o = locator.getService("ejb/ejbs/H

  • How to use the PCI-DIO-32HS counter

    I have to create a SPI, I'd like to use counter, but the card doesn't answer, so Labview bug. Do you if there is programmable/configurable counter on this Card?

  • Chinese for Nokia 5800

    I just got the Nokia 5800 but I bought the American one instead of the Asian one. So I was wondering what software I can download so I can read and write Chinese.