I have itunes in windows xp, but my ipod touch has updated version of itunes. Windows xp cannot get updated itunes. I am having difficulties transferring my music into my computer. Does any one have an idea how to do it?

I have itunes in windows xp, but my ipod touch has updated version of itunes. Windows xp cannot get updated itunes. I am having difficulties transferring my music into my computer. Does any one have an idea how to do it?

iTunes 11 is compatible with
Windows System Requirements
PC with a 1GHz Intel or AMD processor and 512MB of RAM
Windows XP Service Pack 2 or later, 32-bit editions of Windows Vista, Windows 7, or Windows 8
Try:
Trouble installing iTunes or QuickTime for Windows

Similar Messages

  • I've just got a new computer does any one know how to transfer my song to my new computer. I've installed itunes but can't seem to transfer the songs

    I've just got a new computer does any one know how to transfer my song to my new computer. I've installed itunes but can't seem to transfer the songs.

    you can use home sharing.
    or, assuming you have all your media files in the default location, copy the entire iTunes folder (not just the iTunes music or media folder) from the old to the exact same location on the new machine.
    you can either use your network or an external HD for that.

  • The iBooks page on my iPad2 has locked. I cannot move on the page. I can close the page, and everything else is working fine. Does any one have any ideas for unlocking, resetting, or somehow getting the iBooks page to work? Thank you.

    The iBooks page on my iPad2 has locked. I cannot move on the page. I can close the page, and everything else is working fine. THis happened in the middle of a download. Does any one have any ideas for unlocking, resetting, or somehow getting the iBooks page to work? Thank you.

    Just re-set the App -
    Open the App
    Hold down the power button until the slider appears
    Hold down the home button (Don't use the slider) Until the App Closes
    You might lose your place, but shouldnt be too hard to find it again...

  • Does any one have same problem that can't text on iPhone 4 but can ring ?

    Hi there does any one have same problem just brought iPhone 4
    And I put SIM card in and finally get service but I can ring people
    But can't text as well been told to reboot phone through iTunes
    To make it back to a new iPhone settings been told by Vodafone
    To do it, but will it work?

    RCC0040 wrote:
    Hi,
    Today I tried to send a normal text message to 2 non iPhones today having sent messages successfully to these 2 phones on nye but neither would send.
    So far today I have tried:
    1. Calling, receiving calls and receiving texts from these phones works fine, even today
    2. Checking the send/ receive has my number in both sections. I have also tried a variety of setting combinations here of imessage on off etc
    3. The same with the phone section and my number
    4. Installed latest IOS update
    5. Restored network settings
    6. Turned off and on again
    7. Taken sim card out and cleaned it
    I would be very grateful of any further suggestions because I'm not sure at all why this isn't working today after not having knowingly changed anything since nye.
    Thank you!
    Ask your cell phone provider SMS is a carrier feature.

  • Does any one have good idea about the backup and recovery georaster table?

    Does any one have good idea about the backup and recovery georaster table?
    Best Regards,
    Lin
    Edited by: ylin on 2009-10-10 上午2:07

    for backup and recovery, please follow the standard procedure of general database backup and recovery. you need to backup both the georaster table and all related RDT tables.

  • Does any one have any luck getting screen sharing to work in Skype 2.x

    Does any one have any luck getting screen sharing to work in Skype 2.x?

    The current skype app works (makes calls) with iphone, ipod touch as well as the current ipad, per the description of the app. The ipad is obviously not going to be able to make video calls, but I know the iphone 4 can make video calls to a PC through skype. Works really well too. Im assuming that with the ipad 2 you should be able to make video calls as you can with iphone / ipod touch.

  • Does any one have a solution to a blank disk not being read and unresponive to the eject button?

    does any one have a solution to a blank disk not being read and unresponive to the eject button?

     
    Apple Portables: Troubleshooting the slot load optical disc drive  
    Cures for an uncooperative CD/DVD drive
    The Stuck CD/DVD Thread

  • I am running an Apple imac G-5 with OS 10.5.8. I am getting the message that my version of Safari is no longer working. I downloaded a newer version of Safari and I got the message that it would not work with my OS 10.5.8. Does any one have a suggest

    I am running an Apple imac G-5 with OS 10.5.8. Processor: 2 GHz. Memory: 2 GB DDR SDRAM.  I am getting the message that my version of Safari is no longer working. I downloaded a newer version of Safari and I got the message that it would not work with my OS 10.5.8. Does any one have a suggest

    Your post somehow found its way to a little-viewed forum for an obsolete Apple productivity program. I have asked the Hosts to move you to a more active and appropriate forum for your product.

  • HT5935 Does any one have problem in FaceTime after updating to iOS 7

    Does any one have problem in FaceTime after updating to iOS 7

    No, none whatsoever. If you would describe your issue, someone may be able to assist.

  • Does any one have experience working with Apache Open Office?  I have OS X 10.6

    does any one have experience working with Apache Open Office?  I have OS X 10.6

    So the answer to your extremely vague query is Yes, some users have experience with OpenOffice.
    Now Zoom in on EXACTLY the issues that are on your mind, and post them here.

  • Does any one have a sample code for sending email using IMAP ?

    Hi
    thank you for reading my post
    I have tried to use SMTP and because of some problems i could not use it and i must use Imap (authentication required)
    here is my SMTP code , does any one know how i can tune it to use Imap , or has a code snippet to send email using Imap ?
    thanks
    private static void postMail(String[] recipients, String subject, String message,
                             String from) throws MessagingException {
            boolean debug = false;
            class SMTPAuthenticator extends javax.mail.Authenticator
                    public PasswordAuthentication getPasswordAuthentication()
                        return new PasswordAuthentication(mail_usrname,mail_password);
            //Set the host smtp address
            Properties props = new Properties();
            FileInputStream fis;
            try {
                System.out.println("Loading property file");
                fis = new FileInputStream(new File("c:/email.properties"));
                props.load(fis);
                System.out.println("property file done");
            } catch (FileNotFoundException e) {
                System.out.println("file not found");
                e.printStackTrace();
            } catch (IOException e) {
                System.out.println("can not read properties file");
                e.printStackTrace();
            /*props.put("mail.smtp.user", mail_usrname);
    props.put("mail.smtp.host", smtpHost);
    props.put("mail.smtp.port", smtpPort);
    props.put("mail.smtp.starttls.enable","true");
    props.put("mail.smtp.socketFactory.port", smtpPort);
            // create some properties and get the default Session
            Authenticator auth = new SMTPAuthenticator();
            Session session = Session.getDefaultInstance(props, null);
            session.setDebug(debug);
            // create a message
            Message msg = new MimeMessage(session);
            // set the from and to address
            InternetAddress addressFrom = new InternetAddress(from);
            msg.setFrom(addressFrom);
            InternetAddress[] addressTo = new InternetAddress[recipients.length];
            for (int i = 0; i < recipients.length; i++) {
                addressTo[i] = new InternetAddress(recipients);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setContent(message, "text/HTML");
    System.out.println(msg.toString());
    Transport.send(msg);

    Please try this out!!!!!!!!!
    You can send emails using Outlook also. You can send email over Microsoft Exchange with this object (or another email server, using IMAP/POP).
    Sub SendMailOutlook(aTo, Subject, TextBody, aFrom)
    'Create an Outlook object
    Dim Outlook 'As New Outlook.Application
    Set Outlook = CreateObject("Outlook.Application")
    'Create e new message
    Dim Message 'As Outlook.MailItem
    Set Message = Outlook.CreateItem(olMailItem)
    With Message
    'You can display the message To debug And see state
    '.Display
    .Subject = Subject
    .Body = TextBody
    'Set destination email address
    .Recipients.Add (aTo)
    'Set sender address If specified.
    Const olOriginator = 0
    If Len(aFrom) > 0 Then .Recipients.Add(aFrom).Type = olOriginator
    'Send the message
    .Send
    End With
    End Sub

  • My laptop recently crashed and is unsalvagable with my itunes library on it.  My ipod touch has all of my music still on it.  Is there a way that I can put the songs on my ipod onto itunes on my new computer??

    My laptop recently crashed and is unsalvageable with my itunes library on it.  My ipod still has all of my music still on it. 
    Is there a way that I can put the songs on my ipod onto itunes on my new computer without loosing them or having to buy them all over again?

    Syncing to a new iTunes library or computer will erase your ipod. Only if you back up your iPod manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Disable autosync in iTunes, connect your iPod to your new computer and right click on it in the device list and choose backup. iTunes will backup your ipod without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your iPod for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the ipod for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in itunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread:http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved: http://support.apple.com/kb/HT4946
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device

  • My ipod touch has a usb cable picture with an arrow pointingto the itunes logo. the ipod will not connect to a computer and is unable to be turned off as there is no red power slider when the powerbutton is pressed. what can i do to fix this?

    my ipod touch has a usb cable picture with an arrow pointing to the itunes logo. the ipod will not connect to a computer and is unable to be turned off as there is no red power slider when the power button is pressed. what can i do to fix this?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I have a new Mac PC but my IPod touch ITunes account was on my old desk top, how do I get all my music on my new MAC? It appears I might have 2 ITunes accounts which is why my IPod is not synching all the songs, please help.

    I have a new MAC PC with an old IPod Touch that was synch to my old desktop, how do I get the new music on my new MAC if I might have had an old account?

    The article in my previous reply said:
    - Transfer iTunes purchases from iPod to computer by:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - For non-Tunes purchases you need to use a third-party program. Several are discussed in the link in my previous reply
    - Then to sync with the new computer after getting all synced media like apps and music on the new computer yo have to backup the iPod to iTunes and restore from that backup
    iOS: Back up and restore your iOS device with iCloud or iTunes

  • Hi   Does any one have idea abt retroactive accounting

    Hi can any one tell abt the table where retroactive stores

    Hi,
    Retro is triggered in a payroll if u hav done master data change of an employee. This means 1) Any change in an infotype triggers retro. 2) Retro is also field dependent in an infotype.
    This is configured using view <b>V_T582A</b> under frame "Retro Accounting Trigger".
    Also note,
    1) Control record - PA03 contains earliest retro date, meaning retro cannot be run previous to that date for all employees in that payroll area.
    2) Infotype 0003 contains a field "earliest master data change" meaning during  next payroll run retro will run from that particular period onwards for that employee.
    3) Infotype 0003 contains a field "Earl.pers. RA date" meaning retro cannot run beyond that date for that employee. <b>(this field values are stored in table PA0003)</b>
    We dont understand wat kind of table ur talking abt??....Revert back if this has answered ur ques.
    Regards,
    Abbasi

Maybe you are looking for