Can I create a new account and keep all of my purchases and downloads?

Can I create a new account and keep all of my old content? Recently got divorced and share the itunes account with my ex. I want a new account but do not want to lose all of my old content. Is this possible?

Kmiller, 
Get a copy of the entire iTunes library and copy it to the computer that you will be using from now on.
iTunes Plus songs will still be playable, as will any "normal" MP3s that were purchased from Amazon or ripped from CD. 
Any "protected" content from the iTunes Store, such as movies, shows, or pre-2009 songs, will not be playable.  If you need to replace any such items with playable copies, a cost will be incurred.  Make sure to account for this in the property settlement.

Similar Messages

  • Can I create a new account and transfer purchases?

    I originally set up a family account, but since my sister got an iPod she has been spamming the account with pop songs and apps. Is there any way that I can transfer the £30 odd purchases made with gift cards that were given to me to a new account exclusively for me, and re register my iPad iPod and iPhone to this account without disrupting any of the data on them, and then change the registered account on my computer to the new one? Thanks for your help

    Can I create a new account
    Yes.
    and transfer purchases?
    No.  Items purchased from the iTunes Store are permanently associated with the account from which they were originally purchased.

  • I've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    i've tried to set up a new user on a mac book pro and i restarted it to create the new account but now all i can get is a white screen with the apple logo and the loading symbol what can i do ?

    Look at this support article:
    http://support.apple.com/kb/ts2570
    Ciao.

  • I created a new account and entered a redeem code but i can't sign in

    Hello. I just created a new account and i set the location in United States. I entered a redeem code. when i sumbit, they said that i've redeemed 10$ successfully. then i tried to purchase an app, then it suddenly requeired my to sign in then i couldn't sign in. it keeps on telling me that they couldn't find my account. help please

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • HT1918 If you are locked out of your account and you dont use that email address anymore, can you create a new account without losing your music library

    If you are locked out of your Itunes account and you no longer use the same email address, can you create a new account without losing your music library

    Just to let you know that I DIDNT swear in the last post. It was bleeped for using non offensive language. Just letting you know. (And @moderator this subnote isnt "off topic", its just letting colleagues know I'm not in the habit of swearing - something that the search and replace word-bot actaully makes it look worse than it is!!)
    Many thanks - please dont delet this footnote (again)
    Dom

  • I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work. Help?

    I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work.
    ^^ that's the main problem. Here's the full history.
    I bought a new 13" i5 MBP, early 2011 edition. I had an old white Macbook 2.14 ghz core2duo on Snow Leopard. I attempted to port over my time machine backup, but encountered problems in that my User was inaccessible from the new computer after the import finished, and I had to go in and change the root password, etc, and for some reason or another, I couldn't install any programs at all from that administrator's account. By "couldn't" I mean I could install them, but upon installation they would never boot. So, I took it to the apple store and did a clean install from the most up to date Lion OSX. Then, I created a brand new admin account, instead of trying to import the old one, and things seemed great. Then, I just imported my old files from the TM backup, but not any system settings, permissions, or user data. Just my Docs, pics, vids, apps, and itunes stuff.
    Here's where things get weird again. I imported this stuff under the name "old", but all of these folders have a red negative sign on them, marking them as restricted. So, from my main admin account, I cannot even peruse these folders. Since I didn't import user data, I can't sign in to the "old" account to change permissions. I already tried to change the permissions from system preferences, but that didn't change anything. And now, for whatever reason, of all the apps that were imported then, MS Office is the only set of apps that does not work. When I click on it, it just says there was a problem and asks if I'd like to send a report to apple. I tried reinstalling it to no avail. I'm an English student, so i really need access to Word. Can anyone help? The Apple store is a major detour for me and would like to fix this issue myself.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • How to create a new account and copy all settings?

    I think my main user account is corrupted. So I want to create a new account and copy all of my settings, files etc..and more than likely piecemeal just incase my settings are what is corrupted. That way I can isolate the problem.
    I don't plan to delete the main account until satisfied and I also have my Time Machine backup plus my SuperDuper backup.
    I can/should be able to figure out how to create the new account, but I am very unclear on the best/easiest approach to copy in my iTunes files and settings, applications(is this even an issue), address book, email, etc? I should be able to find most everything underneath my home account folders but what else am I missing here? I don't want to find out the hard way.
    Please share some advice or perhaps a link/FAQ on how to approach.
    Thanks in advance.
    --Mickey

    use this [link|http://discussions.apple.com/message.jspa?messageID=6185507].

  • I have created a new account and have been waiting for my verification email

    I have created a new account and have been waiting for my verification email

    If you are in South Africa then you can only use the South African store - to use the US store you will need to be in the US with a US billing address on your account.
    If you are not getting the email then check your spam folder and/or request that it be resent.

  • How do I create a new account and get stuff from the old account to the new account

    How do I create a new account and get stuff from the old account to the new account

    There are instructions on this page for creating a new account : Set up an Apple ID in iTunes
    Or if you don't want to give credit card details : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method
    But you won't be able to transfer purchases from your old account to it, all content that you download from the store will remain tied to the account that downloaded it.

  • Can you create a new folder and put several documents in it in Adobe?

    Can you create a new folder and put several documents in it in Adobe?

    Thank you for your help. Now I just want to expand on this a bit. To use the Applescript you have supplied me, how do I tell it to name the folder other than by date, and where to put it?
    Let me say, preferably, is it possible to make an action like this right-clickable? Instead of having to pick a script. Anything that slows this process down means I might as well do it all by hand. What I'd really love to do is this:
    Select a number of items. Right click to an action saying "create a new folder and put this items in it. Name the folder with the first item's name". Very simple and quick.
    Could this be accomplished? Through Automator? or something that can appear in the contextual menu? Folder actions?
    I'm just getting started with using these tools.

  • I have been trying to get my daughter's iPod Facetime to work. But when we log on it won't let us. When we put in our ID and password it attempts to verify but fails and when we have create a new account and had confirmation email it still wont verify???

    I have been trying to get my daughter's iPod Facetime to work. But when we log on it won't let us. When we put in our ID and password it attempts to verify but fails and when we have create a new account and had confirmation email back it still wont verify???

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
    http://tinyurl.com/32drz3d
     Cheers, Tom

  • I'm trying to set up a sync account but when I get to the window with the "Create a new account" and "Connect" nothing happens when I push either of the buttons.

    I'm trying to set up a sync account but when I get to the window with the "Create a new account" and "Connect" nothing happens when I push either of the buttons.

    By the way, this is in the brand new Firefox 4, not an extension.

  • I have bought the new Iphone5. The old phone "Iphone4" has the same account as my daughters iphone 4. Now I would like to have separat accounts, is that possible? Can I make a new account and still make a copy of my iphone 4 to my new iphone 5?

    I have bought the new Iphone5. The old phone "Iphone4" has the same account as my daughters iphone 4. Now I would like to have separat accounts, is that possible? Can I make a new account and still make a copy of my iphone 4 to my new iphone 5?

    You need to plan. Check this tip:
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family

  • I have been trying to create a new account and it keeps saying it is unable to process.  What is going on?

    I am trying to create a new account for my girls and it keeps saying it is unable to process. What is going on?

    trying to download an update
    v10.6.8 is as far as Snow Leopard can be updated.
    Which update are you trying to install ??

Maybe you are looking for

  • 10g installation key problem

    I am trying to install the 10g developer edition. During the installation process, I am required to register. I go to the registration page, log in, verify the information and click continue. I then get a page with the following information: Informat

  • Issues with Hyperlink

    Hi All, I am using the following syntax to open a crystal report from another report. Crystal reports are exported to BOXI 3.0 repository. http://servername/OpenDocument/opendoc/openDocument.jsp?iDocID=2026822&sRefresh=Y&lsR[dt]=[01/2009..10/2009]&ls

  • Booting failure

    I have just built a new PC using an MSI X79A-GD45-8D mainboard, an INTEL i7 3930 quad core CPU, LGA2011, a Powercolor HD7850 graphics card, a Kingston 120Gb SSD (for the operating system and programs) and a Seagate HDD for data. When I turn it on to

  • Macbook A1181

    First of all just want to say thanks for these forums and look forward to many posts. I recent purchased a Macbook A1181 white, I think its a 2006 version. Cor 2 duo 2 GB of ram. I bought this knowing there was issues with the top case and some keys

  • Communication channels of business systems

    Hi, When I create a new channel which belongs to a business system, I can create this channel with party = blank or party = * Why? Is there any difference? Thanks, Christoph