How can i change my home itunes control from my pc to my ipad

I am in the process of moving all my files from my PC to storage devices and cloud in order to make my new iPad my primary device for everything. No more PC. one problem I'm trying to solve is that I can access my itunes setting acct. info on my laptop, but not my iPad. How do I make my iPad the primary iTunes device?

Never mind, I figured it out. Like most things to do with Apple I'm finding, there is an easy solution. I was able to go to Settings>iTunes & App Store>Sign In> and access the personal info.
So Long PC!

Similar Messages

  • How can i access my home itunes library from an ipad while i'm abroad?

    I've got my ipad 2 with me on holiday abroad and want to access a video that is stored on my laptop back home (it is in iTunes on the laptop but is not a purchased video). I have home sharing turned on on both the ipad and the home account - can i use this to see the video I want to watch? I can get someone at home to turn my laptop on all day if it needs to be on to use home sharing??
    I've got an iPad2 running iOs 8.xx   and the windows 7 laptop at home has itunes version 12.01.26

    Thanks, sounds like I may be stuck - unless you know how to upload a film from iTunes on my laptop onto the Cloud? Every time I've tried in the past it seems I can only upload music photos and documents but not videos?
    Or is there a way to set up a VPN so my iPad thinks it is connected to my home network and therefore enables me to use home sharing whilst abroad?

  • How can I change my Australian Itunes to New Zealand Itunes.

    How can I change my Australian Itunes to New Zealand Itunes because i now live in New Zealand and can't use Itunes gift cards?
    Please Help.
    Cheers Alexandrenz

    simply go to the iTunes homepage, scroll right down to the bottom and on the right side of the page you should see different columns of options. Click the 'Change Country' option and follow the instructions from there on.

  • HT1918 I want to change my credit card but I cant, how can I change it in Itunes?

    I want to change my credit card but I cant, how can I change it in Itunes?

    http://support.apple.com/kb/HT1918
    Regards.

  • How can I change the home computer to sync an iphone 3?

    How can I change the home home computer to sync an iphone 3?

    no idea what you are asking.

  • How can i access my home shared videos from my iPad2 if I now have iTunes match?

    how can i access my home shared videos from my iPad2 if I now have iTunes match?

    That's exactly what I meant, but for some reason Home Sharing stopped working on my iPad2 once I activated iTunes Match.
    Since then, I waited for iTunes Match to finish setting up and scanning my iTunes library on my MacBook Pro and I restarted my iPad2. Both Home Sharing and iTunes Match are now up and running smoothly!
    Thanks for the reply!

  • HT1311 How can i change my ID to US from UK !?

    How can i change my ID to US from UK !? When i have 0.15 Pounds left ? Can i clear it ?

    You will need to try contacting iTunes Support and ask if they can remove the balance for you so that you can change country : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Mail -- How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    How can I change the default email account from which my messages go, without having to change it each time I draft a message?  It currently assumes an email account that I rarely use. Thanks.

    sorry, but I can't find the mail preference in the latest Yosemite OS. Do you know where I can find it?
    Thank you
    Don

  • How can I change my auto-correction language from english to french?

    My system language is english, so all the default language is also in english
    but how can I change the auto-correction language from english to french and without changing the menu language?
    Message was edited by: Marixomia

    It's just, I want to change my spelling checker from english to french, that when I type some words in wrong order or miss some, I can know that.
    For now, when I type in french, almost every words are underlined by the red lines...

  • I'm retiring my old computer (windows xp) to a new computer (windows 7). How can i easily move my itunes music from the old computer to the new computer? i have my playlists organized in my old computer, i would like it to stay that way in my new computer

    i'm retiring my old computer (with windows xp) and bought a new computer (with windows 7). How can i easily move my itunes music from the old computer to the new computer? i have my playlists organized in my old computer, i would like it to stay that way in my new computer. I also have my ipods, iphone sync'd in the old computer so i want to make sure that things won't get messed up (my apps, playlists, etc) when i move over everything to the new computer and sync all my devices with the new computer.
    Thanks in advance for the tips.

    Make sure the XP box is upgraded to the latest version of itunes. Also make sure it's using the itunes media folder layout as explained here, because that's what the W7 is going to be using.
    http://support.apple.com/kb/HT3847
    Install itunes on the new W7 PC.
    Get these folders from the XP machine
    C:\Documents and Settings\username\My Documents\My Music\iTunes
    C:\Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    And put them here on the W7 machine
    C:\users\username\My Music\iTunes
    C:\Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI?

    How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI? I'm having some hiccups getting Adobe to register the software, but since I set it as the default .pdf reader during setup, things try (and fail) to open in the as yet unregistered software. How can I change it temporariiy to the Acrobat Reader XI that I have installed?

    Anubha,
    It worked! Thank you so much.
    I'd opened file with the 'Open with' feature then clicking Adobe Reader,
    but that didn't do it. When I used 'Open with', then 'Choose default
    program...', it worked like a charm.
    Again, thank you!
    Jonathan
    On Wed, Mar 18, 2015 at 10:16 PM, Anubha Goel <[email protected]>

  • How can I change the formate of @today from (MM/dd/yyy) to (dd-MM-yyyy)?

    I am in openscript, using a settext commend - .setText("{{@today(MM/dd/yyyy), 10-02-2011}}}}"); is anyone know how can I change the formate of @today from (MM/dd/yyy) to (dd-MM-yyyy)?
    I went to Java Code tab and tried to use - new SimpleDataFormat("dd-MM-yyyy").format(new Date()); but not successful. Any help will be appreciated.
    Katherine

    Hi,
    you can display the date format in dd-mm-yy by using the below Java code.
    First import the bellow java classes.
    import java.util.Date;
    import java.text.SimpleDateFormat;
    //and add bellow code in run() function
         //************ Display Date and Time *************
         Date date_format=new Date();
         SimpleDateFormat dateFormat = new SimpleDateFormat("dd-mm-yyyy");// HH:mm:ss");
         String Exec_Time = dateFormat.format(date_format);
    //output statement
    info("Today's Date: "+Exec_Time);
    I can able to add the screenshot of this output here, so if you need any other information please write to me.
    Regards,
    MRSN

  • Hello! How can I change language of IndesignCC menus from russian into english after installation?

    Hello! How can I change language of IndesignCC menus from russian into english after installation?

    i don't think you can.
    uninstall id, open your cc desktop app>click settings (the gear icon)>preferences>apps>app language>english>reinstall id

  • How can I change my computer's language from English to Spanish?

    How can I change my computer's language from English to Spanish? My computer is an iMac G3 (CRT) and it has Mac OS 9 installed.

    This isn't possible in Mac OS 9.2.2 and earlier without doing a full installation of the Spanish version of the OS, which requires an installation disk containing it.
    (65772)

  • How can I change the default templates to from A4 to Letter US?

    Hi,
    I live in Québec, the french part of Canada. Because I use French, iWork think I leave in France, so the default templates are in A4.
    How can I change the default templates to from A4 to Letter US? It seem's impossible. In Pages 06, each language folder had templates. But with Pages 08, it's different.
    Please help.

    Autre façon : Ouvre un nouveau document. Il va être en A4. Dans le menu Fichier--->Format d'impression. Une fenêtre apparaît. Dans la ligne... Taille du papier, tu choisis... Lettre US; tu fais OK. Ensuite tu sauves ce document comme modèle. Menu Fichier----> Enregistrer comme modèle et tu lui donnes le nom, par exemple... USLettre.
    Ensuite, va dans le menu Pages, va dans préférences et dans la fenêtre qui s'ouvre - Préférences générales - tu choisis : Utiliser le modèle... et tu cliques sur Choisir... à droite un peu en bas de Utiliser le.... et là, dans la fenêtre qui va apparaître, tu trouves le modèle que tu viens de faire...USLettre.
    Voilà. Chaque fois que tu vas ouvrir Pages, ce sera USLettre qui sera là par défaut.
    J'espère que ça va te satisfaire.
    Évidemment l'idéal serait de pouvoir changer la template Vierge par une template Vierge US... mais j'ai pas encore réussi.
    Message was edited by: BenwaR

Maybe you are looking for