(error = 9006) really annoying

I am attempting to download the show Heroes, episode Hiros. It gets to 460.0 MB of 466.2 MB and then something mysterious happens with the connection and I get the lovely error 9006. When I press the resume download button the download does not resume, but instead starts all over. Then it gets to the same 460.0 MB and gives me the same error. Being behind a slow link makes this an EXTRAORDINARILY frustrating experience. I am guessing this is a problem with the data on the iTunes store since it stops in the same place each time. Anyone else with this experience?

I had this problem over and over (as well as error 8003. I Finally worked out that my ISP was using a transparent proxy which was causing all the problems with downloading from the itunes site and downloads restarting from 0. I set up a specific http proxy utilising another port (not port 80) which bypassed the isp proxy and have had blissfuol downloads ever since. To find out if your ISP is using a transparent proxy visit www.proxyjudge.net

Similar Messages

  • Seriously, this issue is really annoying. why wont my songs download? it wont stop saying there is an error. this needs to be fixed. refund or apple needs to put these songs in my itunes manually if that can be done.

    seriously, this issue is really annoying. why wont my songs download? it wont stop saying there is an error. this needs to be fixed. refund or apple needs to put these songs in my itunes manually if that can be done.

    seriously, this issue is really annoying. why wont my songs download? it wont stop saying there is an error. this needs to be fixed. refund or apple needs to put these songs in my itunes manually if that can be done.

  • Safari and QTCF.dll - Not fatal but really annoying

    Hello everyone. I have Safari + QuickTime + iTunes installed on my Windows 7 x64 box since a long time, but only recently I've found some problems...
    Every time I open Safari (5.0.2) its only matter of seconds after an alert pops up saying that QTCF.dll isn't found and that it won't allow the execution of Safari. However, after I dismiss that popup, Safari continues working... Until about an hour or two later shows the same popup. It also happens if I close and reopen Safari.
    As I've said, isn't fatal, but its really annoying having to close that popup every time.
    I've found that file, and is on QuickTime folder. Moved it to both system32 and sysWOW64 and still shows that popup. Also I've read something about that dll where the answers were "reinstall QuickTime". Well... I've tried to uninstall it to install it again, but it throws me an error about some file that couldn't be removed (I think is that QTCF.dll file).
    What do you think? DLL ****? Registry corruption? Thanks in advance
    I also have a problem with Top Sites after doing a clean install of Safari 5. It always shows me the same sites, it doesn't change constantly (and those sites aren't pinned). Also, if I delete those sites from it, it won't add any new one. Any ideas?

    Moved it to both system32 and sysWOW64 and still shows that popup.
    Best to move it out of there. Having an old version in there tends to cause a different kind of startup error for iTunes and QuickTime (if the version of QuickTime proper on the PC is updated).
    By any chance, have you ever had a version of QuickTime Lite or QuickTime Alternative installed on the PC? Last time I checked, they used to install a copy of QTCF.dll to the system32 directory (on 32-bit systems). Since they use the QuickTime registry entries, your Registry may currently be looking in the wrong place for the QTCF.dll.
    Well... I've tried to uninstall it to install it again, but it throws me an error about some file that couldn't be removed (I think is that QTCF.dll file).
    Could you try another uninstall and post back with the full filename and filepath of that file, please? (I'd like to see where your system thinks your QTCF.dll is installed just at the moment.)

  • BIGGEST iTunes bug!! Really annoying!!

    Okay, so I got this really annoying problem. Actually two. First is that I am using iTunes 9.2. So the first problem is this. I would import a song, with these ID3 tags for example:
    Title: Till I Collapse
    Artist: Eminem
    Album Artist: Eminem
    Album: The Eminem Show
    Genre: Hip-Hop
    Track: 18
    So then I modify a few things like these:
    Title: 'Till I Collapse
    Genre: Rap
    Add an album cover.
    I click on OK and just how it is supposed to work, the track info changes, and the album cover appears. I close iTunes, open that file. Right Click, choose properties, and look at the tags. THE TAGS DID NOT CHANGE. The genre is still Hip-Hop, the Title does not have an apostrophe before the Till I Collapse. Worst of all, the album cover does not show when I do tile view. I delete the file from iTunes library and import it again. It shows the old unchanged tags. Biggest problem.
    Then a second problem hits. It somehow started showing that I got files missing. I click on locate other files from the library and it said that I am missing 119 files. The folder are still there, the files still there. To make it worse, the new songs that I have added using iTunes 9.2 that were missing have been reset back to the original tags. Now I gotta change them and gotta online and find the album covers again. Pathetic.
    Edit: What is interesting is that all the missing songs that are shown now are the ones that I added using iTunes 9.2.
    Message was edited by: xrusx

    iTunes not actioning your changes is usually a sign that you don't have write permissions for the files in question. iTunes appears to accept your changes and may even update the display to show them, but is unable to write the changes out to the tag. It will not report this as an error. When you go back to the file the original tag will have remained unchanged and iTunes will reveal the old data.
    Not sure about the second one, but let's guess that it's an extension of the first one. If your change would have resulted in a new filename, e.g. you change the artist, album, track name or number, then iTunes may have updated the database to point to the new location, but then failed to actually rename the file, again without generating an error.
    tt2

  • Does overuse of Checked exceptions really annoy you?

    Im a big advocate for using Runtime exceptions for programming errors (e.g, violations of pre-conditions etc).
    I find it really annoying when checked exceptions are overused to 'enforce you to do something about your programming error'.
    Ive been on projects where an underyling 'untrust' of some developers ability to read an API to obtain pre conditions has led to a prolification of checked exceptions in central APIs.
    e.g, Im a strong beliver (as I expect most are), that this is correct:
    if(myContainer.contains(someKey)) {
      // Throws 'NoSuchObject' which is a RuntimeException if not contained
      myObject = myContainer.getSomeObject();
    }and that this is not:
      if(myContainer.contains(someKey)) {
        try {
          myObject = myContainer.getSomeObject();
        catch(NoSuchObjectException) {
          // Typical 'This Cant Happen' comment (uurrgghhh...)
      }This basically comes from tech-leads having a lack of trust in the ability of some developers to unit test their classes properly.
    However, it leads to absolutely horrendous code!
    Has any one encountered this anti-pattern on their projects?
    And what Im alluding to.... Has anyone managed to come up with a completely convincing argument to remove it?

    There's a place for checked exceptions, but not usually for programming errors. That's why NullPointerException is unchecked. But checked exceptions for catching things beyond the programmer's control can also run amuck. Here's an example of code I have in production:try {
      dq.write(translator.toBytes(s));
    } catch(IllegalObjectTypeException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(InterruptedException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(IOException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(AS400SecurityException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(ErrorCompletingRequestException _ex) {
      throw new ScannerException(_ex.getMessage());
    } catch(ObjectDoesNotExistException _ex) {
      throw new ScannerException(_ex.getMessage());
    }The "dq" variable refers to a DataQueue object from IBM's JTOpen product for AS/400 connectivity. Okay, there's a lot of things that could go wrong in this case, but in practice everybody is just going to log the fact that something went wrong and shut down. Six different exceptions is just overkill -- I suppose I could just catch Exception but that isn't a good practice either.

  • HT1632 I can view a workout on my ipod touch history, but not in itunes or on nike+ website.  I can't seem to upload this run and it's really annoying as I'm loosing about 12k of runs.  It seems to happen when I program in a custom run.  Can you help?

    Hi there,
    I have just done a custom run on my Ipod touch 2nd Gen of 12k.  When I finished the run is appearing in my run history on my iPod touch, however it is not appearing in my itunes 'Nike+' tab, or on the Nike + website.  I can't seem to get this run to sync and it is really annoying because I'll be loosing 12k.  Can anyone help or has experienced this before?  I know there are solutions to add runs to iPod nano's and older iPods using the 'Enable disk' and iPod_control function however from what I'm aware you cannot do this on an iPod touch.  Can anyone please help?
    Many thanks
    Phil

    You should really read the manual.
    "How do you restore from backup? "
    Restore.  When given the choice, choose to use backup.
    "And how can I check to see if the pics and videos are on my computer somewhere first??"
    They would only be where you put them.  What program did you use to import them?  Pics/vids taken with ipod are not part of the sync process at all.  You should be importing them just as you would with any digital camera.
    If you did not import them, then they are not on your computer.

  • I'm getting really annoyed with the Mac.

    Don't mean to offend geniune Mac fans here, but I'm just getting really annoyed with the Mac.
    I purchased my Mac mini (late 2012) in May of 2013 - so it's about 4 months old. I don't have a lot of software on it, mainly the Adobe Creative Suite, and development tools (Xcode, and web development software).
    The mini has this annoyance where, every so often it just freezes. It usually happens during when the screensaver is running, or when the monitor goes into standby and I try to wake it up. First the screensaver runs for 15 minutes. Sometimes it happens (it's random) that the screensaver "stalls" and the mac freezes. If it "survives" the screensaver, then after 15 minutes my monitor goes into standby mode. Sometimes when I wake up the monitor, I get the login window, I log in, and then I find that the Mac just froze.
    A few days ago I've updated to 10.8.5. Now these freezes are happening more often. The mac freezes just whenever, regardless of screensaver or not. There was a time when I had ReadKit running, displaying an article. I went to the kitchen, when I came back the mini was frozen as ice. No other program was running (I mean program that I started).
    Other times I had Chrome open at youtube. It was not playing a video. The browser was just "parking" at youtube's home page. Same thing. I go away, come back, the mini was frozen.
    Yet just a few days ago, I had no user started application running. None. I leave the mini alone for a short while, come back, and I find the fan was running like crazy. The mac was not hot at all, but the fan went bonkers. It was loud and pumping air out for no reason.
    At these times I can't do anything. Sometimes I can move the window, or move icons on the desktop, but I cannot force quit an app, neither I can start one. So things like going to the apps folder and starting terminal or activity monitor is not possible. I cannot select menu items from the Finder (or any other application) menus, so I can't restart or shut down the mac. The only thing I can do at these times is hold the power button for a few seconds to force the mac to shut down.
    I'm coming from Windows. I built and upgraded my PC a few times in the past 7-8 years with newer and faster MOBOs, processors, memory, etc. I never had a bad component; I never had a blue screen; I never had my PC hang; I have never encountered any issues that would make my PC hang or froze or otherwise. I never had to troubleshoot software or hardware problems because they were/are just non existent. I'm not trying to start a war here about PCs and Macs. I'm completely natural.
    But here I am with this "thing" that supposed to be so great and trouble free. I have already reinstalled the OS once during this 4 month old mac, but now it seems I have to do it again because ever since 10.8.5 things has gotten worse. This is really N-O-T what I expected from a Mac. I am just really annoyed, frustrated and everything else.
    I was browsing these support forums and tried/looked at a couple of diagnostic steps, but none helped so far. I will attempt to reinstall the OS A-G-A-I-N over the weekend. If that doesn't help, then I will have to put this junk into the garbage can. (Well, figuratively speaking of course.)
    Mac mini late 2012
    OS X 10.8.5
    i7 2.6 GHz 8G
    Samsung S27B970 display via DisplayPort
    Apple extended wired keyboard
    Logitech LS1 laser mouse
    No other peripherials

    Hey thanks for the feedback woodmeister! No, I was not aware of the hardware diagnostics!
    So I have eagerly followed the isntructions, but I quickly found out what I have already experienced looking at other Apple "unhelpful" documentation. When I was referring in my OP that I've looked at other resources, the problem was that those "un-support" documents were out of date and the article indicated that Apple has retired them.
    Now as far as the link that you sent (and the same can be found in the Help section of OS X as well, wasn't helpful either. Why?
    In the document the bullets are as follows:
    If you have a new Mac (mid-2013 or later), use Apple Diagnostics, which is built into your Mac.
    If your Mac has OS X v10.8.3 or earlier, use Apple Hardware Test, which is built into your Mac.
    If you updated your Mac to OS X v10.8.4 or later, use the system software disc or USB flash drive that came with your Mac.
    Let's start with bullet #1. As far as I know (and correct me if I'm wrong) but I'm not aware of mid-2013 Mac minis. Mine is late 2012, so I guess I don't fit into bullet #1.
    Bullet #2. I have OS X 10.8.5 so it means I don't fit into that bullet either.
    Bullet #3. Yes, I did update to 10.8.4 or later (using 10.8.5) but neither a software disc nor a USB flash drive came with the Mac mini late 2012 model.
    So what now? Another great "support" document that is confusing and/or not helpful. Nevertheless, I did give it a try. Disconnected my ethernet cable, hold down D, and rebooted. I get a "Choose Network Connection" drop down on the gray screen where I'm supposed to choose a Wi-Fi network. Why? This has not been mentioned in the docs. My Wi-Fi is disabled because I'm connecting through cable.
    So I reconnected the cable. As soon as I did that, I got the message that ... let's see... my memory is failing me... the recovery mode or reinstalling the OS will begin... or something along that line. There was NO ANY INDICATION about any hardware test or diagnostics!
    See, what I mean about frustration...?

  • Problems with Media and my Blackberry Bold, is it time for me to give up on RIM this is really annoying

    Hello RIM,
    Over the past year since owning a Blackberry, I have had on-going issues with syncing my music between my (2) bolds, so I know this is not specific to the hardware, I have also managed 400 BB's on a BES before so I have a fair idea of how to do things and troubleshoot issues.
    1. My music many times has sounded severely distorted through my car speakers, with lots of bad crackle that hurts my ears
    2. Transferring media between my device and my computer is actually really annoying and now I can't even find my playlists on Windows 7
    3. This should be seemless, it should not be buggy and I can't believe, having done so much support with your hardware and software that this continues to be a real problem for me
    I have a playbook, 2 blackberry bolds (I had to buy another 1 because Mobilicity does AWS only and Bell was just plain mean to me so I gave up on them).
    I am ready to go on ebay and get rid of this stuff because whilst I mostly use it as a phone (the reason I went with BB), it is important that I am able to do other things with it, without having to go through a dozen articles and issues just to get things to work, these should have been ironed out in the bug reporting process.
    So I have reinstalled both Itunes and BB Desktop Manager, both manually and via repair and tried even recopying over my playlists, this doesn't work.
    I can't believe the lousy support and buggy software, come on RIM, there is no excuses in this market, PICK UP YOUR GAME and update the BDS or I am done and so will the many other people who won't even take their time to write anything about it on here but vote with their wallet.

    Well you know the playbook is actually pretty cool but didn't seem to be ready to go out on time and being a late entrant to the market I would have expected them to showcase the playbook better, especially like how Nintendo gets out there and gets everyone playing with it hands on, there are some things about the Playbook that actually make it unique but it has been poorly marketed.
    Unfortunately getting BDS and everything to work properly should not be an issue, I have already spent thousands of dollars on hardware and my phone provider, what am I actually paying for here? So I will spell out some things that make the Blackberry Playbook special and what I would have been pushing had I been in charge of marketing. Firstly I would have had a few different campaigns going, one that targeted business corporate customers, regular business customers and the public that use them as their choice of smartphone and open to potentially buying one.
     1. Flash works really great, come on blackberry, why couldn't you team up with Facebook on this one? Facebook looks better on a Playbook than any other tablet I have seen, in fact the web looks better in general.
    2. Stereo speakers(dual), movies sound great, music sounds great and so do games, in this area, Playbook has the upper hand.
    3. USB & HDMI out - Allows much easier portability of presentations and transferring of files and now I believe there is the Wifi Sync as well.
    4. Blackberry Bridge - You know it's like RIM got backed into a corner on this one, but you know, I think this is the most secure way to operate a tablet, I love how when I turn off bluetooth on my bold, my personal and private information is removed and I can pass it to friends and family without my personal communications being looked into, with the other tablets, it's pretty hard to have different people on them, without probably creating different profiles, with the Playbook, you could share it between a team and it would seamlessly operate between them.
     5. True Multitasking - You know, you can play music, whilst playing a game and you can switch between applications, this funtions pretty awesome. I put on some cool music and loaded up a game on the device and someone whom had an Apple device was sincerely impressed he could listen to music whilst reading or playing games etc. This could also enhance Business Presentations that require audio in the background whilst displaying and going through different information / files or charts.
    6. QNX OS - I mean wow Blackberry, this Operating System is fantastic, I love it, this was an EXCELLENT choice and this I will give you 5 stars on, I can't wait to see what QNX can do on the Blackberry and I would not be surprised if the QNX OS became a major OS against the others, it definitely is polished and apps just install and are ready to go in no time.
     RIM has been ahead of the game and because of it's great name with-in business circles they have almost sold themselves and whilst it's nice to see that RIM has sold over 250,000 units with-in the first week this could have been drastically improved by realizing when getting into a NEW market, they need to do the proper marketing and get the devices out there with subject matter experts to educate people whom are checking them out so they can share that information with their friends.
     Google paid a very large price with their Nexus One because they where over-confident and thought they would sell based on their name alone, this could have been a learning curve RIM did not have to deal with. There are actually other nice things about the Playbook, the apps that are in their app store are pretty cool and when Android apps are available it will be cooler.
    I like the size of the tablet I can comfortably reach accross the screen to hit all the keys on the digital keyboard making it any larger and I couldn't hold it in my hands with the same comfort; copping out to apple fan boys thinking they must have a 10.1" tablet is not necessary, this is the perfect size to sit in your hands, some people think they are small but if they actually watch a movie or play a game on it or look at websites by "Playing with it themselves" they will react differently and actually suggest if your going to do a 10.1" tablet, also keep the smaller sized one as well.
    Suggestions :
    - Working on building in more extensions for gaming such as Unity so that games like battlestar galactica online etc could be played online and directions could be replaced by using the gyroscope.
     - Hire more people if you are having problems meeting deadlines, these companies, including Apple are taking risks to win the market, if your going to take a swing at your competitors, please make it a punch and not a jab, the biggest thing you still have on your side is the market you already had and the market share you have been losing and since we all upgrade our devices so often at this time, come out with something special and we will continue to support you. Okay now that I have that off my chest I feel better. DAMMIT !

  • I keep getting the error message 'error 9006' when i try to update my iphone and ipad with iOS 6.1.2 - HELP

    Can any one help me.
    I'm having an continued issue with my phone/ipad 2 and updating it.
    I've tried (unsuccessfully) 7 or 8 times to update my iphone 4s with the latest update (iOS 6.1.2) but it gets 30 minutes in to the update and then an error message comes up (error 9006) and it gives me no option but to click ok and it.
    I've tried using different USB cables, different ports in my laptop, even uninstalling I Tunes and reinstalling and starting again - nothing seems to work.
    I've contacted my network provider who's referred me to Apple but they are closed (I'll try again during business hours).
    I'm updating it on my laptop using an internet dongle (as i dont have WIFI - All updates have been done like this and i've never had a problem before) and I have windows 7 software..
    Is there anyone who's encountered the same issue?
    Any suggestions would be greatly appriciated?

    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • ERROR 9006 can not update iPhone 4

    I have a iPhone 4 on iOS 5.1 and when i try updating or even restoring to iOS 5.1.1
    i get an ERROR 9006 about 40 - 60mb into the download i have tried maybe 4-6 times
    and cannot get it to work any one else have this problem and able to over-come it.

    To  TJohnson93
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    Why Jailbreak is Not Supported
    http://support.apple.com/kb/HT3743

  • I rented a movie on iTunes and, really annoyingly, it has stopped 30 minutes before the end. Any suggestions? And how do I go about getting a refund?

    I rented a movie on iTunes and, really annoyingly, it has stopped 30 minutes before the end. Any suggestions? And how do I go about getting a refund? Thanks so much for any suggestions.

    Hi alefiya,
    Welcome to the Support Communities!  It sounds like the movie didn't completely download. This link will get you in contact with the iTunes Support Team.  They will be able to review your account with you:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    Cheers,
    - Judy

  • Ipod nano 6G error 9006

    After several months I found my Ipod Nano again. In the meanwhile, I switched from Android to Iphone 5s and got quite common with ITunes.
    ITunes does find the Ipod, but states, that he is in "maintenance mode" and needs to be restored by ITunes - done so, updated ITunes to newest version, IPhone works well, but when downloading newest IPod Nano software, at the end of the 4-5 minutes download I receive error message "unkown error 9006".
    I've presed power button together with vol - also for x-times, but unsucessful.
    Is there any hint I haven't been able to find via google??
    Please advise

    That one can indicate a security software issue. In the course of your troubleshooting to date, have you worked through the following document?
    Resolve issues between iTunes and security software

  • When updating my ipod Nano, I get the error message Unknown Error 9006. Any help is appreciated.

    When updating my iPod Nano, I get the error message: Unknown Error 9006.  Any help is appreciated. 

    See this
    http://support.apple.com/kb/TS3694#9006

  • I am getting Error = 9006 when downloading some Podcasts

    I am getting Error = 9006 when downloading a podcast, Derb Radio on TakiMag, but not other podcasts.  It started occurring recently, about 3 of the last 4. This occurs on both a Windows and Apple machine.  iTunes is updated.  It does not occur with other podcasts.  Then end result is that the podcast does not download.
    I also get a "rebuffering stream" interruption during playback on the computer.

    Hello there, johnsilker.
    The following Knowledge Base article references some great information in regard to the very error you're seeing:
    Resolve iOS update and restore errors
    http://support.apple.com/kb/ts3694#9006
    Particularly:
    Check your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Iphone 4 new update can I update this new update thru ITunes the headlines say wifi and do not have wifi. I would like to do it from ITunes? When I tried last night I tried to do it it was almost done and then got an error 9006.Any one know what this is

    I tried to update my IPhone 4 last night thru ITunes and got and error when almose done 9006. It says in the nes that you have to do it thru wifi but do not have wifi and so I synced it with my computer and said I have the new update down now and selected yes and it startedto do it then stopped 3 times with error 9006? Do I have to restore the phone to do this new up date? Here is the link I saw on yahoo. Upgrade to IOS 7.1
    http://news.yahoo.com/ios-7-1-upgrade-iphone-210049155.html

    Configure your security software
    Check your security software and settings, which can block ports and prevent connection to Apple servers during update and restore.
    Common errors: 2, 4, 6, 9, 1000, 1611, 9006, 9807, 9844. Sometimes as a result of this issue, a device might stop responding during the restore process.
    Resolve specific iTunes update and restore errors - Support - Apple

Maybe you are looking for

  • Using 11.2 clusterware to protect third party apps

    Has anyone successfully used CRS to protect third party applications? Has anyone successfully used the scripts from the 11.2 Clusterware Reference manual, B-15, to test CRS with xclock or Apache? After registering the resource and verifying status wi

  • Dedicated vs shared vs processes vs cpu - how much to set

    hi guys, straight to the question ;) I am running on dedicated mode. I am on ORACLE 10G redhat linux. q1) is there a limit on the parameter file processes parameter ? q2) how do i calculate how much processes can be created on my machine ? q2.1) is t

  • Hooking up HP laser jet4

    I've got an oldie, but goody printer:  HP laserjet4.  I've bought a parallel port to usb connecter, but still cannot get my new Imac to print to this beast.  Any ideas?

  • "ghost records" in partitioned tables

    Hi, We observe a very strange behavior of some partitioned table (range method) for a small subset of records. For example: select b.obj_id0 from event_session_batch_ctlr_t partition(partition_migrate) b, event_session_batch_ctlr_t c where b.obj_id0=

  • IPhone 4 won't sync calendar with Outlook 2010 and Windows 7

    I have iPhone 4 and have noticed my Outlook 2010 (32 bit) calendar won't sync in either direction with my iPhone. I run Windows 7 (64 bit version 6.1 Home Premium). ITunes (10.4.1.10 version) sees my device and I even checked the serial number match.