IPhone administration with 2 different computers

I have 2 machines one laptop at home and an iMac at work. Both are my machines that I have paid for. My home computer has all my music on and I have paid for all of that myself (no illegal music). I could be wrong here but it appears that my iPhone is locked once synced with the home machine. So when I get to work if I decide I want purchase some music/video, play some music through iTunes to the Airport or do any administration to the iPhone in anyway the only way to do this is to sync it to my work machine. Thus losing all my files.
Can anyone tell me otherwise? If there isn't a way of doing this, then can anyone explain the logic as my old Touch was able to play any track from my library through the iTunes interface to my Aiport speaker set up.

If you want to connect and use an iPod on more than one computer you have to change the update preference to "manually manage songs and playlists:
Using iPod with Multiple computers
Managing Your Songs Manually
You can't sync or drag your music back directly from an iPod to iTunes, the transfer of music is designed by default to be one way from iTunes to iPod. However there is a manual method of accessing the iPod's hard drive and copying songs back to iTunes on Windows posted in this thread: MacMuse - iPod to iTunes
If you prefer something more automated then there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod, this is just a selection. Have a look at the web pages and documentation for these, they are generally quite straightforward.
YamiPod Mac and Windows Versions
iGadget Windows Only
iPodCopy Mac and Windows Versions
iPod Access Mac and Windows Versions
PodUtil Mac and Windows Versions
iPodCopy Mac and Windows Versions
PodPlayer Windows Only

Similar Messages

  • Using a ipod with two different computers...

    I just bought a new laptop and had to download itunes again but when i hook up my ipod it tells me that that ipod is already synced with another computer (my main desktop comp.). Is there a way to use my ipod with two different computers, or can you just use one computer at a time?
    thanks!
    Dell Inspiron 1505   Windows XP  

    You can use more than one computer, but you'll have to load your iPod MANUALLY if you do, otherwise it will keep erasing things to match the library it's hooked up to.
    http://docs.info.apple.com/article.html?artnum=304711

  • This appears on my screen when I try to download InDesign CC. "You are running an operating system that InDesign no longer supports. Refer to the system requirements for a full list of supported platforms." I've tried with 2 different computers (Wind&Mac)

    This appears on my screen when I try to download InDesign CC. "You are running an operating system that InDesign no longer supports. Refer to the system requirements for a full list of supported platforms." I've tried with 2 different computers (Wind&Mac)

    Bastaría con que indicases el sistema operativo en cda uno de esas computadoras para saber si son compatibles:
    Microsoft Windows 7 with Service Pack 1, Windows 8, or Windows 8.1 (ID CC 2014 y ID CC)
    Mac OS X v10.7, v10.8, or v10.9 (10.6.8 para la CC anterior)
    Si utilizan un sistema operativo anterior, you are "out of luck".
    http://helpx.adobe.com/indesign/system-requirements.html#InDesign CC system requirements
    Marca por favor tu pregunta como contestada para facilitar su consulta  a otoros usuarios. Gracias.

  • Is there any way I can sync with two different computers?

    yeah, I want to be able to sync my ipod with two different computers without having to erase my ipod.

    Hi humanoid_automaton,
    First of all, Welcome to the  Discussions Forums!
    This particular forum is specifically for Feedback About Discussions. So you may want to post your query in the iPod forum related to your model and OS.
    The iPod forums can be found on the iPod Category page.
    hope that gets you more appropriate help,
    littleshoulders

  • Can I use my Nano with 2 different computers

    Can I use my Nano on 2 different computers. One at my house and one in my office. Thank you for any insight.

    Sure can.
    Using iPod With Multiple Computers
    Cheers!
    -Bryan

  • Need help with connecting different computers with sockets

    I have made my own code for a chatting application. Basically, i created a Server that listens for connections from the client and then creates a thread to deal with it. When ever a client types in a String, it gets printed on all of the other computers. Right now i can get this code to work if the Server and CLients are on the same computer, when i try connecting on other computers it gives me a Server timed out out and it does not Connect. here is my code:
    Server:
    package talk;
    import java.net.*;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.io.*;
    public class Ap_server {
         public static void main(String[] args) throws IOException {
              ServerSocket serverSocket = null;
              ArrayList<Socket> sockets=new ArrayList<Socket>();
              ArrayList<PrintWriter> out=new ArrayList<PrintWriter>();
              ArrayList<BufferedReader> in=new ArrayList<BufferedReader>();
              ArrayList<String> name=new ArrayList<String>();
              ArrayList<AP_Thread> threads=new ArrayList<AP_Thread>();
              try {
                   serverSocket = new ServerSocket(4831);
              } catch (IOException e) {
                   System.err.println("Could not listen on port: 4831.");
                   System.exit(-1);
              int i=0;
              while(true)
                   sockets.add(serverSocket.accept());
                   in.add(new BufferedReader(
                             new InputStreamReader(
                                       sockets.get(i).getInputStream())));
                   PrintWriter pri=new PrintWriter(sockets.get(i).getOutputStream(), true);
                   AP_Thread temp =new AP_Thread(out,in.get(i),pri);
                   threads.add(temp);
                   pri.println("Please type in your name");
                   name.add(in.get(i).readLine());
                   pri.println("Welcome");
                   out.add(pri);
                   threads.get(i).setn(name.get(i));
                   for(int a=0;a<i;a++)
                        out.get(a).println(name.get(i)+" has joined");
                   threads.get(i).start();
                   i++;
    }Client:
    import java.io.*;
    import java.net.*;
    public class Client {
        public static void main(String[] args) throws IOException {
            Socket kkSocket = null;
            PrintWriter out = null;
            BufferedReader in = null;
            try {
                kkSocket = new Socket("SERVER'S IP ADDRESS", 4831);
                out = new PrintWriter(kkSocket.getOutputStream(), true);
                in = new BufferedReader(new InputStreamReader(kkSocket.getInputStream()));
            } catch (UnknownHostException e) {
                System.err.println("Don't know about host.");
                System.exit(1);
            } catch (IOException e) {
                 e.printStackTrace();
    System.exit(1);
            BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
            String fromServer;
            in_Thread temp= new in_Thread(out,stdIn);
            while ((fromServer = in.readLine()) != null) {
                System.out.println(fromServer);}
            out.close();
            in.close();
            stdIn.close();
            kkSocket.close();
    }If anyone has an ideas about how i can change the code to make it work on different computers, please post it. Thanks!

    Sure. here is the code for AP_Thread:
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.ArrayList;
    public class AP_Thread extends Thread {
         ArrayList<PrintWriter> out;
         PrintWriter ou;
         BufferedReader In;
         String name;
         public AP_Thread(
                   ArrayList<PrintWriter> out,BufferedReader In, PrintWriter ou)
              this.out=out;
              this.ou=ou;
              this.In=In;
         public void setn(String s)
              name=s;
         public void run()
                   try
                        while(true)
                        String s;
                        s = In.readLine();
                        if (s == null) {break;}
                        if(s.equals("quit"))
                             out.remove(ou);
                             for(int i=0;i<out.size();i++)
                                  out.get(i).println(name+" has left");
                        else if(out.size()>1&&!s.equals(""))
                             for(int i=0;i<out.size();i++)
                                  if(!ou.equals(out.get(i)))
                                       out.get(i).println(name+": "+s);
                   catch(IOException e){}
    }And here is the code for in_Thread
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.PrintWriter;
    public class in_Thread extends Thread
         PrintWriter out;
         BufferedReader stdIn;
         public in_Thread(
                   PrintWriter out,BufferedReader stdIn)
              this.out=out;
              this.stdIn=stdIn;
              this.start();
         public void run()
              while(true)
                   String fromUser;
                   try {
                        fromUser = stdIn.readLine();
                        if (fromUser != null&&!fromUser.equals("")) {
                             out.println(fromUser);
                        if(fromUser.equals("quit"))
                             out.close();
                             stdIn.close();
                             break;
                   catch (IOException e) {
                        System.err.println("The connection has been closed");
                        break;
    }My guess it that is is an firewall problem because i can get it to work when the client and server on are the same computer.

  • Can my iphone operate with two different phone numbers?

    can I insert an additional sim card in my iphone so that it operates like a phone with two different selectable lines?
    in other words I carry one phone with me but can receive or send phone calls, texts, emails etc from either of two different phone numbers?

    No

  • TS1363 I recently updated my iphone overnight and today I can't get it to come on, I've tried the restore and nothing works.  I've tried syncing with 3 different computers and nothing works. I'm getting the black screen, white apple and a line under that

    I updated my phone overnight and now I can't get it to come on.  I've tried everything, I have a black screen, white apple and a mine below that looks like it's trying to load but it has stopped.  HELP!

    You're not alone. I am having similar problems with my Ipod 5th gen 30gb.
    When I connect it to my laptop (Vista - basic) it is not recognised by itunes. Itunes simply locks up.
    So far I have tried the following to no avail:
    Checked my pc's device manager - it recognises the device and says it is functioning properly.
    Checked the drivers to make sure they are upt to date.
    Uninstalled & reinstalled a previous version of itunes (as it worked fine before the latest release).
    Reinstalled the latest itunes.
    Reset the ipod.
    Put the ipod into disk mode and reconnected to itunes.
    Have tried to use the windows tool to scan and fix any bad sectors but it fails to complete a scan without locking that up as well.
    Placed into disk mode when fully charged and then allowed the battery to drain completely. Then reconnected ipod (in disk mode)and it still is not recognised and locks up itunes.
    At this point I dont really want to part with another $300 odd dollars for a new one.

  • How to work on one project but with two different computers

    I'm editing a movie.
    My computer might be overwhelmed with all the information - speed is slowed and it gets hot quickly.
    I would like to use my second computer where I have cloud installed
    to edit on the same timeline or in a different sequence to give my
    main computer a rest.
    Is that possible?
    Thank you for your help!

    As well as the reply from Anish about using your program on 2 computers, you need to ask in the program forum for how to best use the programs to do what you want
    http://forums.adobe.com/community/premiere_elements/content
    http://forums.adobe.com/community/premiere/content

  • How do I sync my iPhone 4s with a different computer other than the original one that I used initally?

    How do I change computers for syncing my iPhone 4s?  The original laptop that I used to sync with died and I can not get my iPhone to sync with my desktop.

    can't if you do not have access to the old library (the usual workaround is to backup the old library and import it to the new itunes)
    for important data...
    sync your existing contacts with icloud, your text messages will not be disrupted, music will sync with whatever music you have on your new itunes, photos shoud still be in the camera roll (I would sync them to photostream before you sync, just in case).   Any photos on your phone that are not in camera roll or photostream... if you lost those pictures with the computer crash I would take screen shots (lock button + home button at the same time) of each photo so they show up in the camera roll.  App data may or may not be lost.  In my experience, it depends on the app.  Some of the apps recognize your apple ID and sync data over the internet with servers, some do not.  I would take note of important data (such as passwords in a password keeper if you have such an app) just in case if you lose that data.

  • Using iphone w/itunes on different computers

    I am going on vacation and want to take my new macbook. I hope to be able to transfer music from the new macbook to my iphone (which is already linked to my imac) but so far no luck. Does anyone know a way to do this? Thanks!

    In regards to iTunes content, an iPhone can be synced with an iTunes library on a single computer only, and photos can be transferred to an iPhone via the iTunes sync process from a single computer only.
    When syncing iTunes content and transferring photos from another computer, all iTunes content and photos transferred from a different computer will be erased first.
    If you want to sync iTunes content with your new MB without losing the iTunes content on your iPhone that was transferred from your iMac, you need to transfer your iTunes library from your iMac to your MB, and the same for photos if you want to transfer photos from your MB to your iPhone.

  • Cannot drag/drop music from iTunes onto iPhone (synced with a different computer)

    I have a library of music already on my iPhone that was synced with another computer. I am working on a different computer and bought some music that I thought I could just drag and drop into my iphone from iTunes. I have read that you need to check manually manage music but when I do that it says it will erase everything on my phone. I don't want to do that because I have music on my phone that isn't in the library I'm using. Is there anything else I can do?

    you iphone does not work like a regular ipod, where you can drag and drop music, you must sync it with itunes. plug it into your computer, click on the icon that is labeled iphone. when you do this there is a section on the top that says music. click on that, then you can select playlists and artists, etc. then click apply. it should work then

  • IPhone integration with two different PCs

    I would like to sync my photos and music from one PC (my own) and Outlook contacts and calendar from another (My office). Is this possible?

    Yes, it is. On both computers, uncheck the "Automatically sync iPhone when connected", and check "Only sync checked items".
    On the PC you want to sync media, go to the Info tab and uncheck everything there.
    On the PC you want to sync calendars and contacts, uncheck everything EXCEPT what is in the Info tab.
    The first time you sync on the second computer (I would suggest syncing your calendar stuff first), you may get a message saying the iPhone has been synced with another computer, and that if you proceed, the Library on your iPhone will be deleted and replaced. Since you have no media library (you only have Calendars and Contacts), this is not a problem. Proceed with the second sync, and enjoy!

  • Can I use Find IPhone app with two different itunes accounts?

    I have a "main" itunes account.  Daughter just got a new iphone but she has a new itunes account (different from mine).  Can I use the app "Find iphone" with both phones?  I cannot seem to be able to "add" her to my app.
    Thanks
    Buckeyechic83

    BuckeyeChic83 wrote:
    I have a "main" itunes account.  Daughter just got a new iphone but she has a new itunes account (different from mine).  Can I use the app "Find iphone" with both phones?
    Yes.
    Simply load the app onto her iPhone.
    Note that the app allow you to find a different iPhone. You can use it to locate your own iPhone but if your own iPhone is in your hands and you are using the app...
    Anyone can us the app to log into their own iCloud account and find their own iPhone (ie.You use her iPhone to locate your iPhone and vice-versa).

  • Can i get my nano to synch with two different computers?

    Hi
    We are a multiple ipod family with itunes installed on four computers. Can we collect music from more than one computer? or do we need to fill up all the computers with the music files. Can I store music on a maxtor back up and get the ipod to go there to get music. Help. New to this.

    And possibly this: Multiple iPods/iTunes Installations...
    Regards
    Colin R.

Maybe you are looking for

  • X121e bios loop : "configuration changed - restart the system"

    After changing some settings in BIOS i got stuck in a reboot - loop. * Cannot access the BIOS any more - pressing F1 changes the message to "Entering BIOS Setup Utility" followed by the message "configuration changed - restart the system" * F12 chang

  • SH.RPD in OBIEE 11G

    Hi, I am following OBE to create and SH.RPD in obiee11g. I noticed in the bi administration the "import from table" is gone and is now "import metadata". I was unable to linked to a database although I am using a datasource that I tested (in windows)

  • Import R/3 SO10 Standard Text to BW Documents

    Hi Please let me know 1. How can Import the Standard Text (SO10) from R/3 to BW Documents? 2. Is there any Function Module to extract the text? Please let me know since it has become priortized task. Thanks!! ~ Vaishnav

  • List of patches to be applied on E-Business Suite 11.5.10.2 during db upgra

    Hi, We are upgrading out databases from 10.2.0.4 to 11.2.0.3. Can some please list the patches to be applied on E-business suite (11.5.10.2) during this upgrade. OS : RHEL 5.5 E-Business Suite : 11.5.10.2. Thanks,

  • Sending to Color

    So I'm trying to send a project to color, but every time I try I get an error saying "XML Export Was Aborted Due to A Critical Error" I've tried to just make an XML, not sending it to color, and still no dice. Anyone have a solution? I'm going insane