Has anyone really fixed the windows to ipod comunication problem?

I have tried all of the suggestions I see here and now I sit here in front of a 300.00 dollar calender. I tried the 5 R,s, none worked. I tried uninstalling and re installing and still nothing. I havent tried downloading any more Apple or Mac software because I dont trust it now. Is there some whre I havent looked yet, please help I.m losing interest in the big ipod phenomenon.

Unfortunately, there is no one ‘Silver Bullet’ answer for this issue. Many things can contribute to the problem. Here are various ‘generic’ solutions that you can try in an effort to correct your problem. One should work. These are listed in simplest to more involved order (usually).
First, make sure that the iPod is fully charged.
Try Resetting Your iPod while it's connected to the computer.
Hold down the Menu and Select buttons until you see the Apple logo (or Menu & Play/Pause in older models).
This will often get it recognized. It may take several attempts.
Try closing and re-starting iTunes. There have been cases where iTunes refuses to see an iPod, but after re-starting, it works again.
Also try re-booting the entire computer. Especially if the PC has been operating for a long time &/or many programs have been opened and closed, repeatedly.
Other USB connected peripherals may be the cause as well. Try removing all connected USB items and attaching the iPod. If you have a USB keyboard, it may be worth a try using the adapter to convert it to non-USB. If the iPod connects, continue plugging things back in until you have the problem return. You may have then isolated the issue. Sometimes it could be a printer, camera, Flash Card reader, or other attached device causing a conflict.
If your iPod shows up in Explorer under 'my computer' try changing the drive letter:
-- Click on Start=>Control Panel=>Admin Tools=>Computer Management=>Disk Management
-- Right-Click on the iPod and select “change drive letter”
-- Choose something further along in the alphabet that is unused (Usually, “M”, “N”, “O” or something similar)
-- Safely eject the iPod
-- Reboot the PC
If that doesn't work, Put Your iPod into Disk Mode then plug it in and you should be able to Restore the iPod
Your PC may have difficulty with the USB2 protocol and the iPod. See this Article for a possible solution: iPod not Recognized Correctly
Also try these hints (and the other suggestions above) from any other USB port you may have on the PC. Sometimes switching USB ports can make all the difference.
Also See:
Your Windows PC doesn't recognize iPod
iPod does not appear in iTunes or on the desktop
iPod appears in Windows Explorer but does not appear in iTunes“Strange iPod Behavior within Windows”
If you are getting a ‘Missing Drivers’ message, try this:
1. Go to http://www.driverguide.com and register (free)
2. Download ‘usbstor.sys’ & ‘usbstor.inf’ to your PC and place them in your i386 Folder
3. Update both drivers by selecting the two files you just downloaded
4. Reboot computer
5. Open iTunes and then connect you iPod
If all the above fails, you may have a Virus, Malware or SpyWare problem.
If you do find that your Device Manager is blank, you should probably check up on this issue first: No Items Appear in the Device Manager List When You Open It
There have been some successes using the information in this post below. WARNING: I have absolutely no clue to what this download file does, and introducing it into your PC environment is risky. Some Forum posters have experienced less than benign results. Read the thread through and see the tips below. Proceed at you own risk: http://discussions.apple.com/message.jspa?messageID=1222335#1222335
The above tool looks like it removes (or it's supposed to remove) Apropos adware. Apropos is a known cause of this problem: iPod not recognized and Windows Device Manager is empty
... but other adware using the ContextPlus engine has also been known to cause similar effects.

Similar Messages

  • Has anyone else used the WireTunes Axxess IPOD Car Kit?

    I have recently installed this hookup in my vehicle. it's pretty cool and works well. it displays the song title and info on my xm ready stereo. The only problem i have is when i skip to the next song it skips one too many and skips over the next to the next song. Does anyone have this product and have you had similar problems?

    that is true Angela...toyota uses the same unit for all the cars...the only issue they seem to have is when trying to integrate with the toyota's that have the factory NAV system, or the built in 5 disk changer in the dash.. I think the most flexible unit that I have found is this one....
    http://www.sounddomain.com/item/USSPA11TOY
    It allows you to use 2 different modes, one being direct control from the iPod, none of the others that I have found allow you complete control from the head unit, they all seem to want you to make up multiple playlists and treat those lists as a CD's in a trunk mounted cd changer...which to me seems a bit clunky.

  • Has anyone really understood the JSF LifeCycle

    I have created my own phase listener :
    public class MyPhaseListner implements PhaseListener {
    public void afterPhase(PhaseEvent evt) {
    System.out.println("EXITING : " + evt.getPhaseId());
    public void beforePhase(PhaseEvent evt) {      
    System.out.println("ENTERING : " + evt.getPhaseId());
    public PhaseId getPhaseId() {
    return PhaseId.ANY_PHASE;
    When i display my page first time I am getting the following output :
    ENTERING : RESTORE_VIEW 1
    EXITING : RESTORE_VIEW 1
    ENTERING : RENDER_RESPONSE 6
    Inside Constructor
    Managed Bean Created.......
    Thank you !!!!
    EXITING : RENDER_RESPONSE 6
    ENTERING : RESTORE_VIEW 1
    EXITING : RESTORE_VIEW 1
    ENTERING : RENDER_RESPONSE 6
    EXITING : RENDER_RESPONSE 6
    ENTERING : RESTORE_VIEW 1
    EXITING : RESTORE_VIEW 1
    ENTERING : RENDER_RESPONSE 6
    ENTERING : RESTORE_VIEW 1
    EXITING : RESTORE_VIEW 1
    ENTERING : RENDER_RESPONSE 6
    EXITING : RENDER_RESPONSE 6
    EXITING : RENDER_RESPONSE 6
    As per my knowledge I can understand first 4 statements(before "*****") outputted.
    An empty view is created and then render response phase is reached skipping all intermediate steps being the first request to JSF page.
    However I can not understand further calls made by JSF lifecycle.
    Can anyone elaborate me more on this?
    Also I am very much interested in some strange number displayed after every phaseId !!!!!

    Hi Sergy !
    Thanks for your reply.!!!!
    Well actually I have some style-sheets and images on my page.
    I think JSF even treats these elements to be a seapare entity.
    So all other statements were for these elements.
    Well I have modified my phase Listener to reflect the view Id as well.
    Below is the class...if anyone is interested !!!
    package util;
    import javax.faces.component.UIViewRoot;
    import javax.faces.event.PhaseEvent;
    import javax.faces.event.PhaseId;
    import javax.faces.event.PhaseListener;
    public class MyPhaseListner implements PhaseListener {
         public void afterPhase(PhaseEvent evt) {
         UIViewRoot root = evt.getFacesContext().getViewRoot();
         if(root == null){
              System.out.println("EXITING : " + evt.getPhaseId());
         }else{
              System.out.println("EXITING : " + evt.getPhaseId() + root.getViewId());
         public void beforePhase(PhaseEvent evt) {
              UIViewRoot root = evt.getFacesContext().getViewRoot();
              if(root != null){
                   System.out.println("ENTERING : " + evt.getPhaseId() + root.getViewId());
              }else{
                   System.out.println("ENTERING : " + evt.getPhaseId());
         public PhaseId getPhaseId() {
              return PhaseId.ANY_PHASE;
    }

  • Has anyone really solved the "Media server unexpectedly quit" error?

    I've seen many posts and suggested solutions, but no definitive solution. This is a severe problem for Final Cut Pro, and it's presently keeping me from doing any kind of work with this software.
    Thanks for any help on this!!
    Greg

    I've seen many posts and suggested solutions, but no
    definitive solution. This is a severe problem for
    Final Cut Pro, and it's presently keeping me from
    doing any kind of work with this software.
    Thanks for any help on this!!
    Greg
    Greg,
    This solved the problem for me.
    "In Compressor, if the "Video Format" is set to "Automatic", Batch Monitor fails (with the "Media Server unexpectedly quit" error).
    changing the Video Format to NTSC and the frame rate to 29.97 (but leaving the Field Dominance on Automatic), the job submits and processes fine."
    Make Video Format PAL and the frame rate 25, if working with PAL sources.
    Good luck,
    Luc
      Mac OS X (10.4.6)  

  • My ipod classic keeps showing error code 1439 and says its corrupted and nothing on the site that it says to do is working has anyone else had the problem

    my ipod classic 160 gb keeps showing error code 1439 and says it is corrupted and i have done everything the article on it says to do and still reads the same thing. has anyone else had the same problem if so what can i do to fix it. the ipod is only 2 months old

    If it is under warranty, bring it in to Apple Store, most of our suggestions, comes from the Apple support site..
    Besides Restoring the iPod, there are winsocks which have conflict with iTunes, perhaps, disable those plugins and disconnect the Internet and stop antivirus, while you are Restoring or Syncing the iPod.

  • Messages has replaced all my text with a load of letter A's in boxes. What is that all about. When I type a new one it is fine until I hit enter then the same thing applies. Has anyone a fix for this?

    Messages has replaced all my text with a load of letter A's in boxes. What is that all about. When I type a new one it is fine until I hit enter then the same thing applies. Has anyone a fix for this?
    Picture below, many thanks for your help.
    Jason

    Back up all data before proceeding.
    Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and this support article for instructions. If Font Book finds any issues, resolve them.
    Start up in safe mode to rebuild the font caches. Restart as usual and test.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t start in safe mode. In that case, ask for instructions.
    If you still have problems, then from the Font Book menu bar, select
              File ▹ Restore Standard Fonts...
    You'll be prompted to confirm, and then to enter your administrator login password.
    Also note that if you deactivate or remove any built-in fonts, for instance by using a third-party font manager, the system may become unstable.

  • Has anyone else experienced the stopping and starting again while  playing music in iTunes.  It was fixed but with the last update it has started skipping again.

    Has anyone else experienced the stopping and starting again whil playing music in itunes.  It was working fine wit the prior fix, but after the last update
    it started skipping again. 

    Try it in another vehicle see if it still happens, at least you can narrow it down to your  phone or the car. My 4s play totally fine, I have never had any of those issues. Maybe its time to restore your phone and start over. I would also have someone else play their Iphone in your car, see if it happens to them. Or try yours in someone elses car. Good Luck!

  • I am unable to manually add artwork via itunes 12 on windows 7. I've tried all the suggestions to no avail. Has anyone succeeeded on the same platform as me?

    i am unable to manually add artwork via itunes 12 on windows 7. I've tried all the suggestions to no avail. Has anyone succeeded on the same platform as me?

    The new iTunes 12 Get Info dialog lacks right-click context menus (at least for now) but it still accepts most standard keyboard shortcuts and drag & drop actions.
    Delete Artwork
    On the artwork tab of Get Into, tap the image in question, use Backspace or Ctrl+X. Delete doesn't work.
    Or, tap the image at the top left of Get Info, this time use Backspace or Delete, it is Ctrl+X that doesn't work.
    Add Artwork
    Select artwork, press Ctrl+C to copy, tap the centre of the Artwork tab, press Ctrl+V to paste.
    Or, select artwork, press Ctrl+C to copy, tap the small image area at the top left, press Ctrl+V to paste.
    Or, you can drag & drop to, or sometimes from, the same locations.
    You can also copy artwork from the Get Info dialog to Windows Explorer with the keyboard shortcuts.
    If the source image is on a web page right-click and use Copy Image rather than copy. (With Chrome I get a one pixel wraparound so tend to go for a temporary local copy anyway - not sure whose bug this is, but it isn't new.)
    If you have multiple images embedded drag the one you want to be the primary artwork to the leftmost position.
    Replace/Remove All Artwork
    The top left image box can be used to add or delete art from multiple tracks. In either case all existing artwork in all tracks is replaced/removed.
    Old Style Get Info Dialog
    Select some items, right-click, hold down shift, then click Get Info from the context menu. (Use alt/option on a Mac)
    If you still cannot add artwork via any of these methods then I would suspect a permissions problem. See Repair security permissions for iTunes for Windows.
    tt2

  • Has anyone ever had the icons on the menu magnify?  My phone slipped onto the floor in my car and icons are now hugh.  Don't know how to fix it.

    Has anyone ever had the icons on the menu magnify?  My phone slipped onto the floor in my car and icons are now hugh.  Don't know how to fix it.

    Double tap the screen with 3 fingers.
    Stedman

  • I recently updated my 4s to the newest IOS and I now cannot turn on Wi-fi. HAs anyone esle had the same problem?  Is there a fix?

    I recently updated my Iphone 4s to the newest IOS and I now cannot turn on Wi-fi. Has anyone esle had the same problem?  Is there a fix? I've tries restoring to a previous software update, but it appears the wi-fi was completely disabled and I do not have the ability to turn it on.

    Apple is aware of the issue and is expected to release 7.0.3 next week to address iMessage issues.
    In the meantime I have found that a good old fashion reset cures it for a while.

  • Has anyone got experience of Windows 10 please ?

    Hi,
    Aplogies if this is the wrong board, I could not find a better one.   I'm sure a CL will move it if it is.
    I tried a search for "Windows 10" and all it returned was a post about NetProtect.
    Has anyone got experience of Windows 10 please ?   Is it better or worse than Windows 7, 8 or 8.1 ?
    Best regards,
    dfenceman

    gg30340 wrote:
    As the "free" upgrade option is available for a year after the launch of Windows 10, I would advise against being an early adopter. There will be the inevitable initial problems that seem to happen to all new Windows operating systems so I would wait for a few months until any problems/glitches etc are ironed out before upgrading your system.
    @barnpiece
    and @gg30340
    Wise comments, I think.
    Upgrading to Vista from XP destroyed a very expensive, and powerful 3d graphics program of mine. It's going to cost another £400+ just to upgrade to the Windows 8 version.
    It can be run, with considerable difficulty on Windows 7, in Windows compatibility mode.
    For Windows 10, there are similar considerations.
    There are posts on the Windows, or perhaps Internet Security websites, assuring us that all will be fixed on the day
    Windows states that "most" programs compatible with Windows 7 or Windows 8.1, will be compatible with Windows 10.
    Just wait for a while.

  • Has latest update fixed the "blue rectangle" issue?

    If today's update did not fix it, is there any news as to when this bug will be fixed?  I'd really like to be able to turn the GPU back on. 
    Also--separate subject--the new version seems to have some catalog issues.  It didn't update the latest LR 5.7 catalog but some slightly older one.  All sorts of minor issues result.  Don't know if anyone else has had this kind of problem.
    Gail

    Ive had Samsung galaxy s2 and i miss it. Unfortunately ive sold it for an iphone 4s and id say im not so satisfied. Even though IOS is somewhat better than android, android team can really fix the issues pretty fast and clearly with an expected result, unlike apple.
    As for the battery. Battery on MY iphone 4s *****, its still same ****** 5.01 had, and its draining in 6 hours of normal usage. Couple phone calls, text messages, surfing in internet and boom, its depleted. Usually i have to charge my phone once a day, but sometimes even twice. As for SGS2, i even could go 3 days without a single charge, however im not sure anymore with ICS firmware.
    Im selling off my iphone 4s and excited about HTC One X, i have a strong feeling about that phone.

  • Has anyone actually got the Green Screen feature to work?

    Has anyone actually got the Green Screen feature to work? I've been trying for about 8 hours, absolutely no success. I have followed the iMovie Help instructions and the examples on the internet, over and over again. I've tried every imaginable variation on the instructions. Nothing from my green movie shows up. The green in my video is pure green - 100% green, 0% red and 0% blue. Yet the non-green images in the video aren't getting displayed at all. Several other people have mentioned a similar problem on these forums and they are all "unanswered". Is that because this is an unsolvable problem? Is it an iMovie bug? Sigh. I'm a big fan of Apple but stuff like this gives them a bad name.

    After several more hours of diagnosis I have identified some conditions which can make Green Screen slightly work (but not much). The condition is as follows. The green screen clip must be carefully dropped at the beginning of a video clip, such that at least the first two seconds of the green screen clip (no less, but no more or the clip will become attached to the previous clip and then it's broken again) are displayed over the PREVIOUS video clip. But the green screen will not work on the previous clip, only on the second clip. So you will always lose the first two seconds of the green screen video. It took me a lot of experimenting to discover this anomaly.
    Clearly this is a bug, but since not all users on the internet experience this bug, (some online videos shows that Green Screen actually works as advertised) it's most likely related to the video card driver. My video card is an ATI 4870. If you have such a card, there's probably no hope that you can get this feature to work unless Apple fixes the driver or possibly the iMovie application, or you use my tricky workaround.

  • Has Lr 5 fixed the Export memory leak?

    Has anyone confirmed that the memory leak in Lr 5 Beta when exporting images has been fixed in the Lr 5 release? In the Beta all 16Gb of my machine's RAM could be quickly consumed if I exported a large number of images. I could release the memory by simply clicking an image in Grid view but it would be nice to have the export behave properly.

    No, still nothing. This is about halway in, and for good measure I threw in a second export on top.
    You can see the CPU getting a lot busier (confirming that breaking an export into two speeds it up) - but memory usage is still rock solid. Incidentally, this last one is exporting to TIFF, which seems to use a little less memory than exporting to PSD. No idea why that should be.
    Do you have any plugins that could cause leaks?
    Edit: OK, so that's cleared up then. I never tried the beta.

  • Has anyone sucsesfully upgraded the memory??? In Touchsmart 1 i5 or i7 ???

    Has anyone sucsesfully upgraded the memory??? In Touchsmart 1 i5 or i7 ???
    Read asll the post about 200 or 204 pin yet seems no one has ever sucsesfully upgraded memory or what type they used 200 or 204 pin. Looking for a definite answer so I no what to buy and yes already called tech support have all the specs on memory but tech support says machine is not upgradeable after hounding for asn answer
    This question was solved.
    View Solution.

    I did find a vendor who sells guaranteed compatible memory for this PC.
     Their web page says it is 204 pin. Maximum RAM is 16GB with a 64-bit OS.
    ****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

Maybe you are looking for

  • Look-up Problem

    User look-up person's name once, however if he try to send mail to the same person after 2- 3 hours, person's name is seen in the list but says " This entry has no email address". What could be the solution for this as every time look-up is time cons

  • GR/IR entry problem

    Hi We have posted one invoice through MIRO in the year 2005. And in the same year payment also happened for that invoice. But customer has raised a ticket why this invoice is showing as not cleared in FBL1N. If i see that invoice in MIRO follow up do

  • Hardware Error when burning DVD's

    I keep getting an error message when burning DVD's using Toast Titanium on my iMac..it reads: "Drive Reported an error, Sense key = hardware error, sense code = 0 x 03." Twice after getting that message I couldn't continue to burn and it stopped, onc

  • Host on Demand (HOD) Frequent disconnects

    CSS is disconnecting HOD clients. When HOD is pointed to the reals, the connections work fine. The disconnects do not happen all the time. I am wondering if the sticky is causing a problem with HOD disconnects. There is a correlation between using th

  • Target Disk Mode = MAX FANS!

    I know I'm not the only one with this issues as almost every Mac I've ever used has done this. Why is it that when you run your Mac in target disk mode, the fans slowly rev up until they hit max speed, and then it just stays that way. EVEN IF THE COM