Shuffle doesn't get along with other USB drives

Okay, so I purchased a new iPod Shuffle, and upon connecting it to my computer and installing all the software, I nearly had a heart attack. According to Windows Explorer, all my data on my 80 gig USB hard drive and my 1 gig flash drive had been erased. I unplugged the flash drive and plugged it back in, and Windows told me it had no idea what to do with that device.
Long story short, I've determined that it's the Shuffle that's causing it. If I plug in the Shuffle, Windows stops recognizing my other USB drives. If I disconnect the Shuffle and repower the other devices, they work normally again. The Shuffle has its own drive letter, so it's not a conflict there. Any ideas?

Same problems here. (-50 erros when trying to autofill and -1480 errors when attempting to Restore) I have two other iPods and they sync fine. I'm also having the same hang-up problems once I plug in the Shuffle and try to either Restore of Autofill. I successfully managed to load songs once after 40 minutes of work. Now, nothing. I've tried absolutely everything.
Please fix this!
Kent

Similar Messages

  • [SOLVED] Opera doesn't get along with gsfonts

    Minor but extremely annoying issue.
    When I have both opera (version 11.61) and gsfonts (1.0.7pre44-3) installed Opera uses different than default, ugly-looking set of serif fonts in almost all possible places. Removing the gsfonts solves the issue, but I want to keep both of these packages on my system.
    Apparently (but I'm not sure about that) Opera uses some fonts from the gsfonts package. I don't know how to prevent this behaviour.
    Any clues?
    Last edited by nazwa.ekranowa (2012-03-19 11:22:52)

    nazwa.ekranowa wrote:
    Minor but extremely annoying issue.
    When I have both opera (version 11.61) and gsfonts (1.0.7pre44-3) installed Opera uses different than default, ugly-looking set of serif fonts in almost all possible places. Removing the gsfonts solves the issue, but I want to keep both of these packages on my system.
    Apparently (but I'm not sure about that) Opera uses some fonts from the gsfonts package. I don't know how to prevent this behaviour.
    Any clues?
    I installed this extension and had really nice-looking fonts without having to do anything else:
    https://addons.opera.com/en/addons/exte … display=en

  • Is there a way to get the calculator from the dashboard to appear along with other programs?  Can anyone recommend a calculator which will work as a stand alone app?

    AS it stands now, in order to use the calculator that comes with the Dashboard, you cannot read from a list of numbers in, lets say, word or excel. The dashboard is full screen and nothing can stand along side it. Is there a way to get the calculator from the dashboard to appear along with other programs?  Can anyone recommend a calculator which will work as a stand alone app?

    there is one, just search with spotlight "Calculator".
    It works great!
    Hope this helps.

  • HT5225 how do I get my icloud a/c onto my mailbox along with other email a/c's ?

    How do i get move my icloud a/c onto my mailbox along with other email accounts ?

    What Mac OS are you using? It should be setup automatically if using 10.7.2 or later after moving to iCloud.

  • I had a drive failure and lost the iWeb file along with other things.   I did manage to save a lot of user file documents but I don't see or   recognize the my iWeb site file. It was on a 15" G4 Titanium pb. I'm trying to find a way, using version 2.0.4

    I had a drive failure and lost the iWeb file along with other things. 
    I did manage to save a lot of user file documents but I don't see or 
    recognize the iWeb site file. It was on a 15" G4 Titanium pb.
    I'm trying to find a way, using version 2.0.4 of iWeb on a different 
    pb to recover the file into the iWeb app or a way to download the site into iWeb.
    There are 6 pages of images and text, and it 
    would be a task for me to recreate the whole thing again. I did 
    download the site but I don't know how or if I can get iWeb to see it and open it.
    Does anyone have any knowledge about this? The link to my site:
    <http://web.mac.com/danauerbach>
    Any suggestions will be most appreciated.
    dan auerbach
    [email protected]

    Unfortunately iWeb cannot read or import previously published files, only generate them.  You'll have to recreate your site from scratch.
    However, Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    OT

  • When I print a document with Arabic script in In Design the characters appear in an inverted form, in the opposite direction, while the printer doesn't do this with other software such as Word

    When I print a document with Arabic script in In Design the characters appear in an inverted form, in the opposite direction, while the printer doesn't do this with other software such as Word

    (The small field at the top of questions is to type just a title; the large field is to type your full question in, along with anything else that may help us help you.)
    When you say "print", do you mean the text is correct in your InDesign file? If you export the document to a PDF, is it still correct? Final test: if you print the PDF to your printer (making sure you use the same driver and setting), is it wrong? Then it's your printer driver, trying to be smart when it should not. Locate a Settings dialog where you can switch off options such as this one. Were I a betting person, I'd tell you to look for something called "Auto-correct mirrored documents".

  • WH  tax line items cleared along with Other line items Message no:8I701

    hI guru,
    When i run J1INCHLN  System givem the error is : Withholding tax line items cleared along with other line items, message no:8I701
    Pleas any one give solution ..
    I also cheked as respective g/l for tds IN FBL3N . All line items are opend.
    Also cheked all selection parameter in J1INCHLN  and FBL3N .is same .
    Why the sys behaviour like this .
    Thanks is andvance
    Milind

    HI,
    he error is occuring in this part of the
    unction Module J_1IEWT_CHALLAN_UPDATE
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    LOOP AT p_t_ausz1.
    Select the cleared line item from bseg table.
       SELECT SINGLE * FROM bseg INTO  p_bseg_tab
                WHERE bukrs = p_t_ausz1-bukrs
                AND   belnr = p_t_ausz1-belnr
                AND   gjahr = p_t_ausz1-gjahr
                AND   buzei = p_t_ausz1-buzei
                AND   ktosl = 'WIT'
                AND   qsskz NE space .
       IF sy-subrc <> 0.
    This is not an ewt clearing transaction relevant for challan update.
         p_no_with_clear = 'X'.
         EXIT.
       ELSE.
         APPEND p_bseg_tab.
       ENDIF.
    ENDLOOP.
    Even if one line item chosen is not of withholding tax entry, system
    should exit by error message.
    DESCRIBE TABLE p_bseg_tab LINES  p_bseg_lines.
    DESCRIBE TABLE p_t_ausz1  LINES  p_with_lines.
       IF p_bseg_lines > 0.
    At least one entry is found in bseg table for challan update.    IF p_with_lines NE p_bseg_lines.
    At least one line chosen by the user is not for challan updation.
          MESSAGE e701(8i).
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.
    This is a clear case,that you are trying to post some documents
    which does not match with the selection parameters.
    I feel the above problem could be due to some document/s (open items of
    the earlier years)are incorrect which is causing the reported problem.
    Kindly run the challan update program for smaller date range so that you
    can find the faulty document.
    Hope this solves your query.
    Reg
    Madhu M

  • Withholding tax lines are being cleared along with other line items

    Hi All,
    While doing J1INCHLN(payment making of TDS), system giving error i.e.
    "Withholding tax lines are being aleared along with other line items"
    Please suggest me in this issue...it would be great help for me.
    Thanks,
    Saisri

    Hi,
    As per my analysis we found some documents, here We have made advance payment to vendors with TDS and again rised invoce to vendors with TDS and these documents have been nockedoff in F-54.
    We have many documents of such nature and as per me it is because of these documents  the system is throwing error. Pls. advice as to how to proceed on this.
    Thanks,
    Saisri

  • Image on jsp from database along with other elements on image.

    Hi All,
    I wish to display an image which is stored in my database along with other contents on the page.
    I am able to display the image on an entirely new page but I do not wish to display it on a new page. Neither frames etc fit on my current page design.
    Kindly help

    I have a jsp page ..
    I have a byte stream in which i have stored the image from the database (the image is stored in databse as blob) in that jsp.When i use output stream object to display the image from the database (as suggested by many in this forum), the image is displayed in a new page. I wish to display the image along with my other elements like text etc in the same page.

  • HT204389 I just got an iPhone 4S model number MD439LL/A still have the box that it came in along with other info. I can not find Siri. I have looked in settings general and  settings general restrictions. Can anyone help me out?

    I just got an iPhone 4S model number MD439LL/A still have the box that it came in along with other info. I can not find Siri. I have looked in settings>general and  settings>general>restrictions. Can anyone help me out?

    That model is an iPhone 4, not a 4S.
    http://support.apple.com/kb/HT3939

  • Why is iPhone non-compatible with other USB peripherals?

    So last night what I presumed was a simple update to 6.1.3 turned into 1.5 torturous hours. The reason being that I left my webcam plugging into my PC while doing the update on iTunes. Later on, the phone wouldn't even restore, but once I unplugged the webcam, it went fine.
    Can anyone tell me why iPhone/iTunes has such a problem with copying with other USB peripherals being plugged in? No other USB item I have shows this level of imcompatibility.
    P.

    Because it pulls maximum power from the USB port while most other USB devices do not.

  • I seem to have lost my home and bookmarks button along with others from my web browser

    I seem to have lost my home and bookmarks buttons, along with others, from my web browser

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History...Help)? Hold down the key ( key in OSX) and press the following letters in this exact order: V T M
    The Menu Bar should now be displayed permanently, unless you turn it off again (View > Toolbars). Turning the Menu Bar on and off is a new feature in version 3.6.
    <u>'''See other bars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''
    <u>'''''Other Issues''''': to correct security/stability issues</u>
    <u>'''Update Java'''</u>: your version 1.6.0_19; current version 1.6.0.20 (<u>important security update 04-15-2010</u>)
    ''(Windows users: Do the manual update; very easy.)''
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.

  • Computer can't get the apple mobile usb driver to install?

    I get the error that the computer can't get the apple mobile usb driver to install so it won't show up on my computer or in itunes.It actually says Device Driver Software Not Sucessfully installed. Apple Mobile Device USB Driver failed. I'm using windows 7 which is fully updated, I have downloaded the newest itunes and also uninstalled and reinstalled it ans all of its components. I have followed every guide to sync your device to the computer and itunes, none of it has worked. I have unplugged my computer and tried it, I have taken the battery out of the computer and waited a few minutes and tried it. I have even gone into Device Manager looked under universal USB controllers and see an exclamation point next to the apple driver where its not working. I can click on it and tell it to look for the newest software and it says it's up to date and still not working. I have tried ever single usb advice or apple advice I can find over the last 3 hours and nothing is working. Please someone help me. I need to restore my ipad and I can't get it to show in itunes! please someone help!

    Make sure Apple Mobile Device USB driver is properly installed.

  • Getting a column in numbers '09 to not sort along with other columns

    How do I have a header column not sort along with the other columns. for example, if I have a spread sheet with all my contacts and there is a numbers header column on the left, how do I get the last name column to sort but not have the header column sort along with it?
    Patrick
    Ohio

    pmalone wrote:
    How do I have a header column not sort along with the other columns. for example, if I have a spread sheet with all my contacts and there is a numbers header column on the left, how do I get the last name column to sort but not have the header column sort along with it?
    Feature unavailable.
    We sort every columns or none of them.
    Yvan KOENIG (VALLAURIS, France) vendredi 18 septembre 2009 19:23:57

  • Have a new ipod shuffle trying to get started with it.but my laptop dosn,t recognise it and no "assistant "shows up to help me locate the shuffle

    can,t get my shuffle to be recognised by my laptop so i can,t sync it
    i,ve downloaded itunes but nothing happens when i connect shuffle
    no assistant appears

    I have a Dell U3014 as well as a couple of older Dells turned up sideways as "ears".
    Other than supplying the desktop "theme" (if you can call a complete lack of style along with a fair bit of inconsistency a "theme"), the OS really shouldn't be causing you to have a washed-out desktop experience.  That's more a
    matter of your display driver not really doing its job.  What video card do you have?
    FYI, one of the reasons I like Aero Glass for Win 8.1 (a 3rd party package) is that it allows me to make the desktop more pleasant to use and helps set the client areas (i.e., where work gets done) apart from the window chrome.
    From what I can see, the color-management logic in Windows 8.1 is essentially unchanged from what it was in Windows 7.  That there has been NO progress in this area is really a disappointment.  It's an area where Microsoft has again just stopped
    trying to make improvements.
    If it's at all interesting to you, here's a screen grab of a REALLY cluttered up desktop.  I don't normally work this way; this was an exercise to see how much I could get running.  I finally gave up starting more stuff as I grew tired
    and it just kept working fine...
    http://Noel.ProDigitalSoftware.com/ForumPosts/Win81/BusyDesktop.png
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

Maybe you are looking for

  • Error log table how to track the run details

    Hi , I am using the log errors concept in oracle and recording the errors. My table is employees and I used the be low script to create the error log tables. BEGIN   DBMS_ERRLOG.create_error_log (dml_table_name => 'employees'); END; It has created a

  • Work flow for invoice verification

    I would like to know how to find out/display the workflow related to MIRO transaction code, miro is invoice verification, how to find the z table created for this workflow. given a work flow template number, how to view this template thanks

  • VI server registration error

    I have a VI-based server in DSC 7.1, and I try to upgrade to DSC 8.0. I followed the instructions from NI, but I cannot register the VI server with the registration VI. I get : Error -1967362038 occurred at an unidentified location Possible reason(s)

  • Not receiving mac mail again. frustrated!

    This is the second time this month that I stop receiving any mail. At least 6th time this year. Each time there has been a service advisory on the .mac page indicating that a small % of subscribers are having intermittent mail service butthat the pro

  • Inconsistent password file in solaris

    hi, Iam using solaris 5.10 and installing oracle 10g database. I have created groups. and when i am adding oracle user with following command: useradd -g oinstall -G dba -d /export/home/oracle oracle -it returns man pages section 1M: System Administr