Problem: ipod not responding [for eight hours]

well i just got my ipod traded in yesterday afternoon. so i am working with a brand new ipod mini. it took me a while to have everything set up for iTunes to actually recongize the ipod. finally it did. finally i got to listen to music. well so i updated my music files again, delete some songs. got the ipod to update. but then when i tried to eject it: i tried to eject it from my computer first [with this ipod, i want to do everything exactly the right way] so i went to safely remove hardware, and safely removed my ipod from my computer. so then i unhooked it from the computer. and it froze. i have dealt with a frozen ipod before, but this is ridiculious. i tried to reset it [a no go] + i hooked it up to my computer [still a no go] i then looked on apple. nothing but: reset it, ok it isn't reseting? service it. why should it did to be serviced if it hasn't even been working for 24hrs yet? my ipod is next to me laying while being hooked to the computer, i left it attached to my computer all night long with iTunes open. still frozen + won't restart. i am really mad, because i finally got a new ipod and it won't work. any tips? can i just go back to the apple store and have them check it out? or is there a fool proof way to reset it that apple isn't telling me/us?

Hi Coolsmartygirl,
Welcome to Apple Discussions
You might want to try the The Five Rs first before going to back to the Apple Store.
Jon

Similar Messages

  • I cann't turn the zoom of in my iphone. It does not respond for three fingers tapping. and it hard to chose the icons and options because of this problem

    i cann't turn the zoom off in my iphone. It does not respond for three fingers tapping.
    and it is hard to chose the icons and options because of this problem
    what can i do.

    Hi osh17,
    Thanks for using Apple Support Communities.  You can turn off Accessibility features using a computer as well.  That may be easier to do if Zoom is causing difficulty in using your device:
    iTunes 11 for Windows: Accessibility features for iPod, iPhone, and iPad
    http://support.apple.com/kb/PH12326
    iTunes 11 for Mac: Accessibility features for iPod, iPhone, and iPad
    http://support.apple.com/kb/PH12126
    Cheers,
    - Ari

  • When trying to print, adobe reader 11.0.07 keeps "Not responding" for 2 - 5 minutes before finally working? I have tried uninstalling and re-installing but same problem. What is going on? I have windows 7

    When trying to print, adobe reader 11.0.07 keeps "Not responding" for 2 - 5 minutes before finally working? I have tried uninstalling and re-installing but same problem. What is going on? I have windows 7

    First of all, why did you say yes to Nero Back up before researching what it does with files already on the HDD? When I install Nero, the Back Up is the first thing I disable, it is a nagging pain, there are much better backup programs available. There are several file recovery programs out there to recover deleted files, that is, if that is what happened. Also, if you haven't overwritten the files, so you should be able to find them.

  • HT201413 iphone 3gs is dead and not responding for DFU restore also. getting errors like 1600,1601 etc., any help?

    iphone 3gs is dead and not responding for DFU restore also. getting errors like 1600,1601 etc., any help?

    Mikey, I have the exact same problem. Dropped my 3gs on Thanksgiving, phone was not responsive, plugged into the wall charger, went to grey iPhone restore screen, then said to connect to itunes. So I plugged it into itunes but itunes wont recognize it nor will my computer. I searched the internet for hours with no success. I tried to change USB ports and cords, tired removing the SIM card, reinstalled itunes, everything. When I put it in DFU mode itunes recognizes an iphone in recovery mode, so I click restore and update, then I get error 1602 every time. My iPhone also loses power when I unplug it from the wall. I do not know what to try next. You are the only person I have found with the same exact problem I have. I will update you if I find a way to get my phone working again and I hope you will do the same. I'm very frustrated

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • When i want to go another from a tab,it shows firefox not responding, for a while then opens that tab!this is embarrassing me a lot by taking so much time!!why

    I have two inconviniences with fire fox..
    1)when i want to go another from a tab,it shows firefox not responding, for a while then opens that tab!this is embarrassing me a lot by taking so much time!!why it happens?
    2) every time when adobe flash player is updated, it shows flash player can't be installed and it crashes! it says 'disable real player' though i never installed real player!!
    plz Let me know why it happens to me????

    1. Update firefox to the latest version 2. and disable real player in menu->addons->plugins.
    Recent crashes of certain multimedia contents (this includes Youtube videos, certain flash games and other applications) in conjunction with Firefox 13 are most probably caused by a recent Flash 11.3 update and/or a malfunctioning Real Player browser plugin.
    In order to remedy the problem, please perform the steps mentioned in these Knowledge Base articles:
    [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    [[Flash 11.3 crashes]]
    [[Flash 11.3 doesn't load video in Firefox]]
    Other, more technical information about these issues can be found under these Links:
    http://forums.adobe.com/thread/1018071?tstart=0
    http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html
    Please tell us if this helped!
    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • IPod not recognized (for sync OR charging) after OS 4 upgrade

    I upgraded to OS4 on Saturday July 10th with no problems. On Sunday (July 11) I used my iPod quite a bit. I was at a friend's house and the battery was getting low so he charged it through his computer. It charged completely and we continued using it the rest of the day. I plugged it in to my PC to charge it Sunday night and it was not recognized at all (for charging OR for syncing) through any of the USB hubs. I asked my friend the method he used to charge it that day and he confirmed it was via computer. Monday night I tried charging it through a friend's iMac. It charged halfway, though it still wasn't recognized. Tuesday morning I tried to charge it on the same computer and I got the "too much power drawn from the USB hub - HUB deactivated" message on ANY of the HUBs. It still doesn't work on my own home computer (though it HAD been working Friday night and Saturday morning pre-OS4 installation).
    I'm personally running Ubuntu 10.04 but obviously only was able to charge the iPod on that system. Anytime I want to sync or download music I restart to Windows Vista (and iTunes).
    I do also have apps installed, but nothing new from the previous OS - (I know that blaming third party apps is a common cop-out answer for apple techs).
    I hope this wasn't too confusing. My real problem is simply described by my subject line: iPod not recognized (for sync OR charging) after OS 4 upgrade. What follows is simply everything I've done to troubleshoot. The only thing I haven't tried is restore...because my iPod isn't even recognized by iTunes.
    I would greatly appreciate any help or stories related stories/situations. Strength (and hopefully solutions) in numbers!
    Best,
    Dan

    Assuming you haven't got the cords mixed up with another, older iPod, it sounds like you have a couple of problems:
    1. Your computer's USB ports have quit working. Reboot your computer and see if they reactivate.
    2. Your friend's iMac generated that message because you tried to charge the device from the low power keyboard USB port. iPods need to be charged off one of the main USB ports or a powered hub.
    3. iPods not being recognized by iTunes can be caused by 1) wrong cable; 2) non-functioning USB ports; 3) iTunes not being the correct version for the iPod OS; and finally 4) Apple Mobile Device Services driver is either stopped, missing, or disabled.
    To troubleshoot a problem with Apple Mobile Device Services, see the Apple support article: http://support.apple.com/kb/TS1567

  • Illustrator 25% off the time "program not responding" for 35 seconds when network is active

    Hi
    My Client have 4 computers, all win7, running cs 5 or 6, the newest the cloudbased version.
    The problem has been sinc upgrading from cs3.
    "Program not responding" for 35 seconds, before loading the file on 1/4 of time.
    It is not on specific files, and no patton.
    it does'nt matter if the files are on network or saved local on Harddrive.
    the sice does'nt matter.
    Only switching of nic and wifi stops the problem.
    I did try downloading other files (not made by my client), from the net, they do not trigger the problem.
    What else then the Files can bee the problem? can anyone test my files to see what is wrong?
    BG Allan Tjepp

    I have a very similar problem with my CS6 Ai on our company network. I sometimes use Illustrator for image heavy documents less than 10 pages. These have a lot of placed images.
    It will freeze, say "not responding" and curser switches to blue spinner. Then about 15 sec later it unfreezes and I can work for another 60 sec or so, then repeat freeze, blue spinner, etc. Very annoying. When i unplug the network LAN cable the problem goes away and I sail along. I have tried relocating the Ai file to my desktop (not sure about the images).
    Waiting on any feedback or help, our IS guys are getting stumped. I could switch to InDesign for this work but not my preference.

  • I'm locked out of purchasing apps for eight hours because I can't remember the answers to my security questions

    I was asked to answer two security questions before I could purchase a new app, and I could not remember the answers I'd chosen. It locked me out for eight hours because I'd put in too many wrong answers! How do I change my security questions without being able to answer the old ones?

    If you can't remember them then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Security' and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox) - but some recent posts are saying that Apple have temporarily suspended the reseting of security question/answers whilst account security processes are improved, so it may take longer.

  • HT4060 My ipad2 is not responding for itunes

    hi there ... my ipad2 is not responding for itunes and it can  not switch off even with the sleep and on keys ... its been a year so no warranty on it. is there any way i can resolve the problem ?? pls.
    - Jagan Aiyappa.
    (Dublin)
    <Email Edited By Host>

    Hello jaganaiyappa,
    Thank you for providing the details of the issue you are experiencing with your iPad.
    I recommend following these steps for an issue like the one you described:
    If a single application is not responding or stops responding when it opens, you can force it to close.
    If the device is unresponsive or if certain controls aren't working as expected, restart your device.
    If the device remains unresponsive or does not turn on (or power on),reset your device.
    If there is no video or if the screen remains black, verify that the device has enough charge to turn on:
    If you are using an iPad, ensure that it's connected to the USB Power Adapter supplied with the device.
    Let charge for at least twenty minutes, then see if it starts normally.
    If there is no image on the screen, press the Sleep/Wake button to attempt to wake the device.
    If the screen displays a red battery icon, continue charging the device until the battery is fully charged.
    If the above steps do not resolve the issue, or the if the screen remains black or shows a persistent Apple logo, try restoring with iTunes:
    Connect the device to your computer and open iTunes.
    If the device appears in iTunes, select and click Restore on the Summary pane. Learn more about restoring iOS software.
    If the device doesn't appear in iTunes, try to force the device into recovery mode, and then restore it.
    If the above steps do not resolve the issue, contact Apple.
    You can find the full article here:
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    If you get to step 5, I recommend backing up your iPad before performing the restore:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Additionally, if your iPad is not being recognized in iTunes, I recommend the following article.  I wasn't sure whether you were using a Windows or Mac computer, so I included the respective articles for each:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/TS1591
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • HP B210a goes into a sleep mode if not used for several hours,

    Running my B210a eprinter in windows vista. The printer goes into a sleep mode if not used for several hours.  The power button is slowly flashing dim then bright, and I need to manually touch the printer's screen to enable it to print. If printer not used for several days, the only way I can make it work is to unplug and plug. Any suggestions or help appreciated.  J Rice

    What OS?  Wired or wireless connection?
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Battery not working for 7 hours

    battery not working for 7 hours.. it working only for 3 hours or 4 hours

    I'm sorry, got confused. You're not going to get 7 hours on your battery. Apple says "Up to 7 hours". That means they got 7 hours under optimum circumstances and with certain usage. You need to keep your screen brightness as low as you can live with. Minimum music and video. Check some email, a little office type stuff. Forget games. You might get close but you won't get 7 hours.
    In the small print of their adds Apple spells out exactly how much of what they did to get 7 hours.

  • HT201263 Hi. I forgot my passcode and now I am unable to unlock my ipod. I tried restoring it using itunes in recovery mode as well as dfu mode but it says unable to restore,unknown error occured (3004).  Please help me out. My ipod is locked for one hour

    Hi. I forgot my passcode and now I am unable to unlock my ipod. I tried restoring it using itunes in recovery mode as well as dfu mode but it says unable to restore,unknown error occured (3004).  Please help me out. My ipod is locked for one hour now.

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • Firefox keeps "not responding" for a few seconds - then connects

    I just upgraded to Firfox 4.0 because of my new computer's Windows 7.
    It started "not responding" for up to 20 - 30 seconds before it reconnects, and it is sometimes unresponsive to my mouse even when it is working. This did not happen before the upgrade and does not happen with Windows Internet Explorer

    check your system preferences to see if you have "ignore accidental trackpad touches" checked (or something like that). If you type on you keyboard then try to use the trackpad you have to touch it a couple of times so the computer does not think it was an accident while typing. Just uncheck the box if it is checked.

  • My battery is not staying for more hours it suddenly gets switch off without giving warning

    My battery is not staying for more hours . It suddenly getting switch off without giving any warning. My iPhone is iPhone 4s

    Wen I can receive reply from apple management .

Maybe you are looking for

  • I updated my Macbook pro to mountain lion and now it takes a while to turn on

    I don't like turning my laptop off cause I use it frequently, but after I updated to mountain lion, If I close my laptop and then open it, I movethe mouse and nothing happens, then I push the power button and it won't do anything and I push it again

  • HT203180 iPhone3 wont play  iTunes U video

    iPhone3 wont play  iTunes U video, content was downloaded from iTunes. Audio works. Tried to convert to iPhone format in "Advanced" menu, says format is correct. Any ideas?

  • Where is insert/overwrite key

    Where is the insert/overwrite key on a mac keyboard ? Or if there isn't one how can I toggle between the two functions ?

  • Routing question

    Hi, I've made a proxy Service in aqualogic, that contacts another webservice, with a different WSDL than the proxy. How do i define the messageflow for this? I need to map the proxy requestxml to the business service xmlschema, for which I have build

  • Abap Rport Help

    I want to display the picture or logo on the ABAP Report not On the Selection Screen or ALV. anyone who can help me and tell how can I do that.Unfortunatly I didn't find the solution on the sdn. Thanks & Regards