Move to a new account / reinstall OS...

Hi all,
I've been cloning and restoring data and my accounts for a few years now. I am on a 3rd machine and who knows how many OS updates, and it looks as if it's time for a clean up.
Bizarre little things are popping up left, right and centre. Boot time seems longish, some widgets (that work in new, test accounts) crash the dashboard, the keyboard backlit turns on and off as I start, quit apps (hitting STOP on iTunes ALWAYS turns the backlit off)... I guess some old prefs, bits and pieces of apps long gone make the whole machine just not 100% happy.
Thanks for listening so far, here's the question.
I am thinking of:
1. Make a new account and then manually migrate my data there and start afresh. With this option I see the following issues - I can't have two accounts with the same name on one machine, so how do I get back to the my current name on the new account? Also, that leaves the System as it is, and I suspect there are gremlins lurking there as well...
2. Simply reinstall SL, update to 10.6.2 and only then bring my stuff over from my clones and backups. I don't want to use the migration assistant as this would bring all my old prefs and junk over. Yes, I am happy to reinstall all the apps from scratch.
Obviously the most important stuff would be transferring my existing email setup.
What exactly must be brought over to keep my mail and setting intact?
Second is the iTunes + iPhone backups + apps... What's the trick here?
Apart from mail, the rest is well manage, backed up and organised, so I wouldn't even restore much data at all - all living happily on ext drives.
All your thoughts and advice is greatly appreciated.
TIA

if you really want to do a fresh reinstall with manual migration (it's far from clear from your post that this is actually necessary) then clone your system to an external, boot from the SL DVD, wipe the internal with disk utility and reinstall. after you boot into the new system migrate your stuff manually from the clone. see this link on what to migrate
http://discussions.apple.com/message.jspa?messageID=6185507

Similar Messages

  • Can I move my daughter off my account by creating a new one for her and have all her apps/data/music/etc. move to her new account?

    I want to split off my daughter from my apple account and set up her own.  Once she has her own account she would like to have her apps/data/music, etc. on her iPhone and iPad under the new account as it was under mine.  Can I set her up a separate account and then move her apps/data/music, etc., to her new account?  If so how do we do this and what are the dangers/pifalls of doing this (if any)?

    You can migrate her to a separate iCoud account if you want, but existing purchased media (apps, music, etc.) will still be tied to the existing ID.  Purchased media is permanently tied to the ID used to purchase them.
    If you want to move her to a separate iCloud account, you can do that and still continue to share the same ID for iTunes purchases.  The ID you use for iTunes does not have to be the same as the one you use for iCloud.  To do this, start by saving any photo stream photos she wants to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow, then tapping Save to Camera Roll.  If she is syncing notes with iCloud, you'll need to open each of your notes and email them to her so she can later copy and paste the text into new notes created in her new account.  Then go to Settings>iCloud, tap Delete Account (which only deletes it from this device, not from iCloud; your devices will not be effected by this), choose Keep on My iDevice and provide the password when prompted.  Then sign back in with a different Apple ID to create your her account and choose Merge to upload the data.
    Once you are both on separate accounts, you can each go to icloud.com and delete the other person's data from your account.

  • I deleted an account before making copies of emails stored on my machine, how doe I find them to move into a new account i set up?

    qUESTION LISTED ABOVE
    I ASSUME THE FILES REMAIN ON MY COMPUTER (EMAILS I HAD), WHAT IS THE FILENAME AND WHERE WOULD THEY BELOCATED?

    http://kb.mozillazine.org/Recovering_deleted_mail_accounts

  • I am currently using my brothers apple account for my iphone. now i have created a new account; if i sync my iphone with the new account will i lose all my apps? is there any way i can keep my apps even after syncing and manage from my new account?

    I am using my brothers itunes account and syncing my Iphone with it. Now i have created my own itunes account. If i sync my phone to the new account will i lose all my apps? Any way i can keep the existing apps and sync my phone as well?
    Best way to move to the new account
    Thanks in advanc

    No, all content that you download from the store is tied to the account that downloaded it, it can't be transferred to another account

  • My old email account was disabled and I can't remember my password - how can I reset my password or move $ to a new itunes/email account?  It seems I must have mis-typed my information because I can't answer the security questions correctly...

    My old email account is disabled and I can't remember my itunes password - how can I reset my password or move $ to a new itunes/email account?  It seems I must have mis-typed my account information because I can't answer the security questions correctly...

    ➡ https://iforgot.apple.com/

  • 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.

  • Husband and i used to share an iTunes account when we exceeded our device limit I started a new account he has 2 movies I purchased  I want them he does not can he transfer - give them to me somehow?

    Husband and I used to share an iTunes account when we exceeded our device limit I started a new account he has 2 movies I purchased  I want them he does not  - can he transfer - give them to me somehow?

    Items purchazed under one account cannot be transferred to another

  • I just purchased a ipad 2 and have not sync it yet.  I have an old pc and would like to move the itunes library account to a newer pc that I have.  Can I move the library to the ipad and sync ipods to the ipad and/or move the library to the new pc?

    I just purchased a ipad 2 and have not sync it yet.  I have an old pc and would like to move the itunes library account to a newer pc that I have.  Can I move the library to the ipad and sync ipods to the ipad and/or move the library to the new pc?

    Perhaps this web page will help: http://support.apple.com/kb/ht1229
    But I must point out that leaving the iPhoto Library on the external is worth considering. Your internal drive would be better off without having to carry the photos.
    When you booted with the external connected and you were asked for the library, did you try navigating to the Library in on the external drive?

  • My itunes account was disabled for some reason.  I changed password in iforgot and still didn't work.  I could log in but not make purchases from the store so I set up a new login/account .  Is there any way to move my music to the new account?

    My itunes account was disabled for some reason.  I changed password in iforgot and still didn't work.  I could log in and see my music but not make purchases from the store or even redeem an itunes gift card so I set up a new login/account with another email account of mine. On the new account I can redeem my gift card and download items onto my ipad2.  Is there any way to move my music to the new account?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • RE: Typekit...how do I move the code from an old account to my new account under the Creative Cloud?

    RE: Typekit...how do I move the code from an old account to my new account under the Creative Cloud? W/out (preferably) interuption to the website in question? Thanks!

    Hi Jesse,
    Please email us at [email protected] with:
    - your current Typekit account email address
    - the email address you use for Creative Cloud
    We will be able to help you make this change without disrupting your current font serving. 
    Thank you,
    -- liz

  • I in have a product registered an old account, how do i move it to a new account and close the old one?

    I in have a product registered an old account, how do i move it to a new account and close the old one?

    COntact support by web chat.
    Mylenium

  • HT4436 originally my kids used my apple account, now they want there own.  Can they keep there photos and music and move it to a new account?

    I want to create a new account and transfer my photos and music to the new account.  How can I do that?

    Your talking about the famous AppleID divorce
    There is no way to "move" music, apps, or photostreams between iCloud/AppleID accounts easily, but there are some ways to maybe salvage everything they want and get it to their individual devices.  I'm going to assume that each has an iPhone, iPad, or iPod touch, and that you all have one or more computers with iTunes (macs or PC's, shouldn't matter). 
    In any case, this isn't likely to be a quick fix for you, so clear a couple of hours in the evening and grab a beverage of your choice.  Here are a few ways to manage the divorce:
    Separate iCloud (ie, contacts, calendars, etc) accounts for each person, Shared iTunes Music/Apps:
    This approach allows each person to have their own device backups, plus their own address books, calendars, etc, and it allows everyone to share the apps and music that has been and will be purchased. This will also mean each has their own photostreams as well.  With calendars and photostreams, you can create "shared" versions of each so you and they can collectively contribute and modify the calendar, and can collectively contribute to a shared photostream.
    The great benefit to this approach is that all of the music and apps that have been purchased will continue to be available on all of the devices.
    The disadvantage is that with the shared iTunes account, everybody is sharing everybody else's gift cards and/or money that is in the account.  Monitoring it is a manual process.
    To setup this scenario:
    Create a new iCloud account (ie, new AppleID's) for everyone, including yourself. 
    In the iCloud settings on each mobile device use the new iCloud account (ie, AppleID) for that person. 
    Use those same iCloud credentials for the iCloud settings in each person's account on the computer.  (Note that if you do NOT use separate accounts for each person on the computer, this method will not work for synching the iCloud stuff, just the iTunes stuff.  I highly recommend you create user accounts on the computer for each person). 
    On your mobile devices, in the iTunes and App Store settings continue to use the "original" AppleID under which all of the music and apps were purchased. 
    In iTunes for each user account on the computer, continue to use the "original" Apple ID, just like on the mobile devices. 
    For each person's photos that they wish to keep, make sure that they are currently in the mobile device's camera roll (just as Winston suggested).
    Now the device's and computer user accounts are all setup.  When the mobile device's are synched to user's (or the common) iTunes app, all of the music and apps will stay, and all of the photos that were previously in each user's camera roll will still be there.
    Separate iTunes Accounts, Shared iCloud Account
    This approach allows each person to have their own iTunes account for music and apps, but will keep all of the iCloud stuff (like contacts and calendars and photostreams) identical accross everybody's devices.  This is particularly useful if the kids get their own gift cards and are not amenable to sharing with their family and you want to continue to have identical address books, calendars, and photostreams. 
    The main drawback to this approach is that it is possible that each individual will lose access to some music and all purchased apps.  That will depend highly upon when the music was purchased.  ie, was it purchased before or after Apple went to a digital rights management (DRM) free model for music.  All purchased apps will technically be lost, but sometimes its still possible to "keep" those apps via iTunes and your device will continually and annoyingly ask you for the credentials (ie, the original AppleID) under which the app was purchased. 
    Another drawback is that the free iCloud storage account is likely to be enough to backup all of your devices (if you have more than 1).  Therefore, you will likely have to purchase a larger iCloud storage plan.
    To setup this scenario:
    Create a new AppleID for each person for use in the iTunes Music/App store.  Remember to keep your original AppleID that was used for all of the purchases to date. 
    On each mobile device, in the iTunes and App Store settings input the new AppleID for each user.  On one of the devices (you'll have to figure out on which one it makes the most sense), continue to use the original AppleID. 
    In the iCloud settings for each device (and the computer accounts), continue to use the original AppleID. 
    Now you must setup new iTunes databases on the computer for each seperate user.  The only way to do this is to have each user have a seperate account on the computer (again, mac or PC, doesn't matter). 
    In each user's iTunes app on the computer, input the iTunes store credentials that match his/her mobile device that you setup in step 2 above.
    On the computer, move all of the music that each person cares about into his/her separate iTunes database (ie, import the music into iTunes by whatever method you choose).  The exact method for this is dependent upon whether its windows or mac, but basically, find the actual music files on the hard drive, and then import each of them into iTunes for each user.  You want each user to setup their "new" music database on the computer.  This is what the mobile device will synch against.
    Once complete, synch each mobile device with each user's respective iTunes app.  You MUST use separate iTunes databases at this point.
    If all of the music was purchased post-DRM (or is DRM-free for whatever reason), then this method will result in each user having all of the music that he/she wishes.  However, if some of the music has DRM, then your success here will be a crapshoot. 
    Photostreams should all continue to be shared and collective since they are attached to the common iCloud account, not iTunes.
    Separate iTunes Music/App Account, Separate iCloud
    This is the ultimate in "every man for himself".  The advantage is the each person has their own free iCloud features (including the all-important backup) and each has their own iTunes account. 
    The disadvantage is the same as "Common iCloud, Separate iTunes" approach:  individuals may lose access to already purchased music and apps.  The photostreams will also be broken apart, although you can setup shared photostreams for the future. 
    To setup this up:
    Create new iCloud/AppleID accounts for each person (except for the original user). 
    In each person's mobile device, use their new AppleID for both iCloud and iTunes Music and App stores.  One person keeps the original AppleID and continues to use it.
    Follow the steps above for creating new music databases in each user's account on the computer.
    Synch each user's mobile device with their respective iTunes database.
    OK, that's what i have for you at this point.  I'm happy to answer further questions on this and help you figure out how to do what you want to do.
    Thanks

  • How do I create a new account and move 2 phones to it ?

    I am getting divorced and my wife owns the account we share as a family. I want to move mine and my sons phone to a new account in my name and be removed from hers. How do I accomplish this?

    You need to do an Assumption of Liability(AOL). She needs to authorize it and the rest is up to you.

  • I have to create a new iTunes account as I cannot remember the security question answers to my current account, how do I move over my purchases from my current account to my new account?

    I have to create a new iTunes account as I cannot remember the security question answers to my current account, how do I move over my purchases from my current account to my new account?

    fayry wrote:
    ... how do I move over my purchases from my current account to my new account?
    This is not possible...
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID.
    Apple ID FAQs  >  http://support.apple.com/kb/HE37

  • If i create a new itunes account can i transfer my songs, games, movies, etc. to my new account

    If I create a new account can I transfer all of my songs, games, movies etc. to the new one?

    I know this is an old post, but I'm in a similar situation. I'm going to college this fall and I would like to have my own account going into my future.  I'm under my mom's account because that is how I first started out with my ipod a few years ago.  I don't want to be under my mom's account forever so this is a reason I want a new account while still keeping all the songs I've bought over the years.

Maybe you are looking for

  • 'Alt' with + or - doesn't work

    The adjustment increment of several of the sliders is supposed to be reduced by holding the Alt key down while the + or - key. This doesn't work on my system. I've tried tested both Alt keys with both + and - keys on my keyboard. No luck. All I get i

  • "The Server cannot find the document corresponding to the document id"

    Periodically when we schedule a Discoverer Report (Apps EUL) we get the following error: "The Server cannot find the document corresponding to the document id sent for open" Months back Oracle told us to do the following as a workaround: Log into Ora

  • Invalid G/L Account

    Dear All When we try to create Purchase Requisition (PR) the system giving us the below error message. Invalid G/L Account No. for Acct.Assign.Cat. 1 Message no. 38000 Even if we use few other Account Assign Category, the system giving the same error

  • Dynamic filter function

    I would like to be able to pass a dynamic item.property to the filter function. Hardcoding it like this works private function filterthis(item:Object):Boolean { if(item.companyname == _sortvalue)    // I don't want to hardcode the property of item   

  • WLST & suspending/resuming a MDB

    Hi all, I'm using WLS 10.3 and I need to write a WLST script for suspending/resuming a MDB packaged within an EAR file. The EAR file contains more MDBs and I need to suspend/resume selected MDBs. I tried to use the 'record' feature from WLS console b