Changing 'main' user and computer name

Hi everybody!
I got an older iBook from my sis. I'm trying to remove her stuff and clean it up a bit for my use. Is there a way to change the main user account so the computer isn't in her name anymore? I tried creating a new admin account, but I can't delete the first account. Also I can't change the computer name on the main log in screen. Any suggestions?
I was thinking about bringing it in to a store. I'm sure they can do it quick fast in a hurry.
cheers.

Hi, and welcome to Apple Discussions.
Matt Clifton has given his suggestions here:
http://discussions.apple.com/thread.jspa?threadID=1076960
You need to log out and log back in with the new account in order to delete the old one.
(It really isn't necessary to delete the other account unless you need the hard drive space. You can simply choose to have it automatically log in to your account and not the old one.)
To change the computer's name go to System Preferences > Sharing and change the computer's name there.

Similar Messages

  • MDT 2012 Windows 7 Deployment Stops At User Account and Computer Name Setup Page

    I was given a sysprepped custom Windows 7 WIM image that was set up by a third party that didn't use MDT to create the WIM.
    I created a task sequence to deploy it, but it never finishes.  After the OS installs and it reboots, it comes up to the white setup page asking for a user name and computer name that looks like this image:
    Is there a setting in MDT that can change that behavior?

    Are you joining the computer to a domain?
    It sounds like MDT did not create the unattend.xml file itself (or is there an unattend file already in the image itself?)
    MDT needs to be able to autologin with the local admin account
    From MDT in your task sequence - OS info - Edit unattend.xml you can check if your unattended file is correct.
    Check what's in there for:
    - computer name in 4 Specialize area - Windows-Shell-Setup_neutral (it should be empty  if you want MDT to handle it).
    - Also i think you need to have in the Specialize section, under Microsoft-Windows-Deployment_neutral - Run Synchronous an EnableAdmin insert
    This will enable the local admin account
    - Also check in phase 7 oobe System in Shell-Setup_neutral
    There should be an autologon with a count of 999
    Check if you have any Local Accounts there.
    Finally read this:
    When I am joining clients to a domain, can I avoid creating a local user
    account on the computer?
    Yes. To do this, create an image unattend file that adds a domain account to the Administrators group. In addition, you must delete the <LocalAccounts> section if it is present in your
    unattend file (simply commenting it out will not work). An example file is below. Note that if domain join fails, Windows Deployment Services will not use the unattend file so you will be able to create a local account. For more information about creating
    unattend files, see Automating Setup.
    <?xml version='1.0' encoding='utf-8'?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:ms="urn:schemas-microsoft-com:asm.v3" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
    <UserAccounts>
    <AdministratorPassword>
    <Value>password</Value>
    <PlainText>true</PlainText>
    </AdministratorPassword>
    <DomainAccounts>
    <DomainAccountList wcm:action="add">
    <DomainAccount wcm:action="add">
    <Group>Administrators</Group>
    <Name>DomainAdmin</Name>
    </DomainAccount>
    <Domain>DomainName</Domain>
    </DomainAccountList>
    </DomainAccounts>
    </UserAccounts>
    </component>
    </settings>
    </unattend>
    I tried opening the unattend.xml from the MDT workbench, but it errors out saying it cannot be done because the captured image is x86.

  • Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up

    Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up elements receive message “Some ot the application components are missing from the Application directory. Please reinstall the application.” How do I correct this problem without disturbing application in main user account?

    Brooks lansing if you create a new Administrator account does the same issue occur?  If so then it is likely that there is a file permission failure and file permissions have been set for the existing Users instead of the groups they belong to.
    Have you removed and reinstalled Photoshop Elements 11?  This may reset the file permissions to the correct state to allow it to work under new accounts.

  • Getting the user name and computer name

    I've been trying to find out how to do this, but can't seem to get it.
    I have an AIR application that needs to get the user's login name, and computer name for verification.  I can't find anywhere to do this.  Is AIR able to get this information? Is there work arounds if there isn't?
    It won't ever be a web app, just an AIR app.

    What I did in Air 2 to accomplish that is the following:
                   public function getHostName():void {
                        if(NativeProcess.isSupported) {
                             var OS:String = Capabilities.os.toLocaleLowerCase();
                             var file:File;
                             if (OS.indexOf('win') > -1) {
                                  //Executable in windows
                                  file = new File('C:\\Windows\\System32\\hostname.exe');
                             } else if (OS.indexOf('mac') > -1 ) {
                                  //Executable in mac
                             } else if (OS.indexOf('linux')) {
                                  //Executable in linux
                             var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
                             nativeProcessStartupInfo.executable = file;
                             var process:NativeProcess = new NativeProcess();
                                  process.addEventListener(NativeProcessExitEvent.EXIT, onExitError);
                                  process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutput);
                                  process.start(nativeProcessStartupInfo);
                                  process.closeInput();
                   import utls.StringHelper;
                   public function onOutput(event:ProgressEvent):void {
                        var strHelper:StringHelper = new StringHelper();
                        var output:String = event.target.standardOutput.readUTFBytes(event.target.standardOutput.bytesAvailable);
                             output = strHelper.trimBack(output, "\n");
                             output = strHelper.trimBack(output, "\r");
                        trace('"'+output+'"');
    The package that I used is from the manual:
    package utls
         public class StringHelper
              public function StringHelper()
              public function replace(str:String, oldSubStr:String, newSubStr:String):String {
                   return str.split(oldSubStr).join(newSubStr);
              public function trim(str:String, char:String):String {
                   return trimBack(trimFront(str, char), char);
              public function trimFront(str:String, char:String):String {
                   char = stringToCharacter(char);
                   if (str.charAt(0) == char) {
                        str = trimFront(str.substring(1), char);
                   return str;
              public function trimBack(str:String, char:String):String {
                   char = stringToCharacter(char);
                   if (str.charAt(str.length - 1) == char) {
                        str = trimBack(str.substring(0, str.length - 1), char);
                   return str;
              public function stringToCharacter(str:String):String {
                   if (str.length == 1) {
                        return str;
                   return str.slice(0, 1);
    And sorry for the miss topic I just realized that it is on flex topic, but I post it either way it may be useful for anyone

  • Error connecting, tap to retry, it sees my WiFi and computer name but can't connect

    Hi all, I am trying to get Edge Inspect to work on my Windows 7 PC (it did work for me a few times when I had it installed as Shadow when it initally came out)
    I have read through various forum posts. I am also running Mcafee Virusscan/Firewall. 
    In Google Chrome I have the extension installed at the little "In" symbol top right, when I click it it says Adobe Edge Inspect "On", please start the Adobe Edge Inspect Application.
    I open up the lastest version of Edge Inspect (v1.0.393) on either my iPhone or iPad, it shows the name of my WiFi router and shows the name of the computer that is running Google Chrome, it looks like it is searching for a connection (shows spinner) and then it says "Error connecting, tap to retry".
    I have opened up port 7682 in my Mcafee Firewall
    I have shutdown all open programs
    I have tried manually entering in the computer IP address via manual connect
    I have updated chrome extension and ios apps to latest version
    I have tried reinstalling chrome extension
    I have tried at Windows Command prompt "netstat -ano" it doesnt show port 7682 being used, until I open up Google Chrome, then it shows MYCOMPUTER:7682 SYN_SENT, which I checked the PID against and yes it is Google Chrome using 7682
    Any help would be great

    Hi again Mark, still no luck here.
    I also have a Mac in my network so I thought I'd try installing to that to see what would happen, I just installed Adobe Edge Inspect extension onto Google Chrome on that machine and restarted the iOS apps on both iPad and iPhone and they actually didnt see the Mac machine at all, still just shows the PC computer.
    Also did I mention on my iPad I can still see the last time the connection actually worked (when it was called Adobe shadow, on my iPad underneath MYCOMPUTERNAME Error Connecting, tap to retry it has MYCOMPUTERNAME Last Used 24/07/12 8:59PM). Wouldnt have anything to do with a conflict with the old Adobe Shadow or anything would it, I'm pretty sure Adobe Shadow got uninstalled by default anyway, just a thought.
    So I'm not sure if it can be a problem with the Router because nothing has changed with the router since the last time it successfully worked when it was Shadow? I did add the Mac machine to the network since this time, but that machine hasnt been on when I have been doing any of this testing anyway.
    Also in the Edge Inspect in the Chrome browser I do not see any deviced listed, but back on the iOS App I do see the Wifi network and Computer name as discussed, so does this mean its an inbound connection issue or?
    Also sent you router settings via private message etc.

  • Console logs: Couldn't read user-specified computer name

    Last night I was experiencing frozen apps, was unable to open web pages and could not open the Apple menu to Restart computer. Somehow I eventually managed to Restart and everything seemed OK.
    When I checked in Console logs tonight, I saw this message:
    Couldn't read user-specified Computer name; using default using default "Macintosh 00145112d484. local instead"
    I found BDAqua"s reply to a similar problem dated 4/14/08 - "Try editing it in both places in Sharing Pref pane." However, I could not find what I exactly had to edit!
    I would greatly appreciate some help. Thanks.

    Hi there,
    However, I could not find what I exactly had to edit!
    In System Preferences>Sharing Pref pane...
    Then click on the edit button to verify, it'll have the .local after it here.

  • I recently moved to USA from Canada. I have not changed my apple id but I have changed my phone and computer. Is there a way to retrieve my purchased music via iTunes? I checked what was available to download and only got a few digital booklets.

    I recently moved to USA from Canada. I have not changed my apple id but I have changed my phone and computer. Is there a way to retrieve my purchased music via iTunes? I checked what was available to download and only got a few digital booklets.

    Most Windows users don't.
    Purchase an external hard drive and use the backup software that comes with it to backup files from your computer.
    Buy TouchCopy and install it on your new computer, connect your old iPod and transfer your songs to your computer.

  • Couldn't read user-specified Computer Name  serious?

    Hallo, and hope this email finds you in good health, please could someone clarify whether or not this is anything to worry about. It has been going on for 6 weeks now and I get about 50 to a 70 a day:
    Dec 12 01:21:15 localhost mDNSResponder: Couldn't read user-specified Computer Name; using default “Macintosh-000000000000” instead
    Dec 12 01:21:15 localhost mDNSResponder: Couldn't read user-specified local hostname; using default “Macintosh-000000000000.local” instead
    Dec 12 01:31:15 localhost mDNSResponder: Couldn't read user-specified Computer Name; using default “Macintosh-000000000000” instead
    Dec 12 01:31:15 localhost mDNSResponder: Couldn't read user-specified local hostname; using default “Macintosh-000000000000.local” instead
    Dec 12 01:31:17 localhost mDNSResponder: Couldn't read user-specified Computer Name; using default “Macintosh-0017F2D20187” instead
    Dec 12 01:31:17 localhost mDNSResponder: Couldn't read user-specified local hostname; using default “Macintosh-0017F2D20187.local” instead
    Dec 12 01:31:20 localhost mDNSResponder: Couldn't read user-specified Computer Name; using default “Macintosh-0017F2D20187” instead
    Dec 12 01:31:20 localhost mDNSResponder: Couldn't read user-specified local hostname; using default “Macintosh-0017F2D20187.local” instead
    Any problem here?
    Thankyou.

    Hi
    Not really. Although it may be an indication of a confused/corrupted property list. Probably one of the plists in /Library/Preferences/SystemConfiguration. If it bothers you re-assign the mac the Computer Name you think it should have? This is done from the Sharing Preferences Pane. Alternatively you could use the command line. Something like:
    sudo scutil --set ComputerName thenameyouwant
    There must be a password set for the local admin account for sudo to work. You won't see the password being typed.
    Alternatively and assuming this is a single mac that's not part of an LDAP environment or has no Location settings or has nothing special in terms of network configurations, you could move all of the property lists in /Library/Preferences/SystemConfiguration to an untitled folder you create on your Desktop and restart afterwards. On successful login apply a desired Computer Name using the Sharing Preferences Pane.
    Tony

  • Couldn't read user-specified Computer Name - In Console

    Am suddenly seeing the following in my Console:
    Apr 14 17:18:53 localhost mDNSResponder: Couldn't read user-specified Computer Name; using default “Macintosh-00145163A837” instead
    Apr 14 17:18:53 localhost mDNSResponder: Couldn't read user-specified local hostname; using default “Macintosh-00145163A837.local” instead
    Also Computer name has disappeared from Screen Saver and just getting black monitor with Silver Apple. Have tried restarting a couple of times and repairing permissions also re installed 10.4.11 Combo with no luck.
    Any thoughts appreciated....
    TIA

    Great news, good work!

  • User and group names truncated with ls

    Hello,
    When using the 'ls -l' command the resulting list truncates user and group names that are longer than 8 characters.
    Is this a know issue?
    I'm running Mac OS 10.4.10.
    Thanks,
    Anthony

    Jun T. wrote:
    If a program like "ls" wants to know the username corresponding to the uid, it must call a library function of the operating system. But there are two library functions, one gives the correct username and the other truncates the username.
    The basic library function is getpwuid(3) which returns the correct username.
    Hello Jun,
    I ran a search using Xfind (Rixstep) on /bin for 'userfromuid' and /bin/ls was listed as I might of expected.
    Also, /bin/ls was also listed when 'getpwuid' was used as a search Key.
    Peeking further into /bin/ls further with Xstrings (which is Rickstep's "adaptation" of the "strings' tool" ) reveals the string '_ getpwuid'.
    Does this mean that at some point the 'ls' command can call the getpwuid() directly under some circumstances rather than going through userfromuid() which relies on the cache you mentioned?
    The problem is the size of the table; userfromuid() allocates only 8
    characters for each username (the number 8 comes from UT_NAMESIZE in /
    usr/include/utmp.h), and truncates the username if it is longer. This
    may be "fixed" in a future version; or it may not be "fixed" to keep
    backward compatibility. I'm not sure.
    I've heard that utmpx.h has 'UTXUSERSIZE' which is defined as 32. Does not that allow for user and group names larger than 8 characters?
    By the way, I can't find the directory usr/include/utmp.h on my drive.
    Is there a way to reset or redefine this 'UT_NAMESIZE' field to more than 8 characters wherever the userfromuid() function stores it?
    The commands "users", "who", and "w" read the file /var/run/utmp, in
    which truncatd usernames of the currently logged-in users are saved.
    Does some command initially call the function as 'ls', userfromuid(), to result in truncated names being saved in file /var/run/utmp as well?
    I think there are many programs which depend on this fixed-width utmp
    file, so it may not be "fixed" in a future version. "
    I believe there are third party tools which rely on the userfromuid() call which require this bug to be fixed in order to display accurate user and group name data.
    Thanks for your informative reply,
    Anthony

  • Restricted Characters: User and Group Names

    I'm going through the documentation for Essbase and I'm trying to find an exhaustive list of all the restricted characters/keywords for User and Group Names.
    I've found what I think is the list for Apps, DBs, Dims, and Dim Members here: Oracle Essbase Database Administrator's Guide
    I've also found a link that says the only restricted character for User names is a backslash: Essbase Administration Services Online Help
    Does anyone know if there are any other restricted characters for User names and Group names? I recently created the user @<>/\:';[]{} in Shared Services. I was surprised that it actually let me do it. I was even able to log into EAS using this user name. However, I couldn't add the Essbase server. However, the user did show up in the Users Table in EAS for that server when I logged in as a different user.
    So, does anyone out there have any info on restricted characters and/or keywords for Users and Groups. Anything on Enterprise ldap systems?

    I'm going through the documentation for Essbase and I'm trying to find an exhaustive list of all the restricted characters/keywords for User and Group Names.
    I've found what I think is the list for Apps, DBs, Dims, and Dim Members here: Oracle Essbase Database Administrator's Guide
    I've also found a link that says the only restricted character for User names is a backslash: Essbase Administration Services Online Help
    Does anyone know if there are any other restricted characters for User names and Group names? I recently created the user @<>/\:';[]{} in Shared Services. I was surprised that it actually let me do it. I was even able to log into EAS using this user name. However, I couldn't add the Essbase server. However, the user did show up in the Users Table in EAS for that server when I logged in as a different user.
    So, does anyone out there have any info on restricted characters and/or keywords for Users and Groups. Anything on Enterprise ldap systems?

  • Time Machine and computer name change

    I just recently reinstalled the operator system after a computer crash when i did so changed the computer name and now when i go into time machine to restore the settings it only shows up as one sparse disc image.
    i have found that when i can mount it manually but the files are not usable and when i mount it with time machine the history does not appear.

    Go to System Preferences - Sharing and change the computer name there. You can also, optionally, change the name of your hard drive to further clarify the origin of your backups. Click once on the "Macintosh HD" on your desktop, then click its name to allow you to edit it.
    Matt

  • Reading windows user id and computer name

    I am using servlet and jsp's in my web application. I want to read clients computer name and their windows userId in jsp. How I can do this?
    Thanks,
    Reddy

    You can use an Applet to do this but you'll need to sign the applet and the user will need to have jre1.3 or greater installed (see Java Plugin).

  • Why does the local network and computer name keep changing?

    After upgrading to Yosemit the local network name and computername on my iMAC keep changes link:
    Mycomputer-1
    Mycomputer-2
    Mycomputer-3
    Why?
    I have tried to change it back in sharing and network locations.
    Is this also the reason the my iPhone cannot find my iPhone often cannot find my iMac when I will sync it? Then I have to restart the iPhone and iTunes on the computer. This happens very very often.
    Maybe it also linked to these errors which the log is full of - many every minute:
    19/10/14 12.11.09,522 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:256
    19/10/14 12.11.09,543 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:12856
    19/10/14 12.11.09,561 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:0
    19/10/14 12.11.09,565 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:44032
    I think the is some bug/clash between bonjour and other network protocols. That is only a guess.

    After resetting the computer name and local host name to the correct name without the number I also shotdown my iMac, my AppleTV, my iPhone, my iPad and then rebooted my Airport/Time capsule it seemed to work at least for several days. But yesterday I discovered that my Apple TV now also has changed name to Apple TV (2).
    I logged into iCloud.com to see my devices and here it was really wired. My Apple TV was called Apple TV (2) and my iMac also had (2) after the name. Then I checked it on the iMac but here it was correct! Why can it have one name on the iCloud and another on the computer.
    I restarted both the iMac, Apple TV and Airport Time capsule then everything was correct also on iCloud.com.
    But today the iMac was called the name (2) again on the iMac. And now the local host name also had -2 after the name. It has not always been both names that has changed. That is really wired. And today Wifi was not working on the iMac after wake from sleep. I changed the name back and rebooted again also the Airport Time capsule. Now it is working again.
    The log is still full of this messages:
    02/11/14 19.22.13,186 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:1901
    02/11/14 19.22.25,738 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:34051
    02/11/14 19.22.25,758 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:12342
    02/11/14 19.22.25,900 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:34051
    02/11/14 19.22.25,919 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:1901
    02/11/14 19.22.27,636 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:28772
    02/11/14 19.22.27,683 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:27693
    02/11/14 19.22.27,714 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:28533
    02/11/14 19.22.49,833 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:29281
    02/11/14 19.22.49,866 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:28528
    The name is not the only problem. Often itunes will not find my iPhone and iPad. Then i need to close iTunes and restart the iPhone and iPad then it works for some time.
    And the iPhone and AppleTV will not always wake the iMac from sleep. I am wondering if the is linked to the changing of name.
    I have seen by googling that it can be related to a sleep proxy problem so it seems like that here is two devices on the net with the same name that is why name is changing, but to know this do not help me to solve the problem. I have also seen all the suggestion to turn almost every services off on the computer, but again I it is not a solution and I have the iMac and devises to use the functionality not to shot everything down. So I do not really understand people saying turn off itunes, turn off blueboth, and turn off this and that.
    Apple must soon come with a real solution. We are really many people have these problem since we upgraded to Yosemite and iOS 8.
    I have also listed some of the iTunes errors from the log below:
    02/11/14 19.24.48,160 com.apple.xpc.launchd[1]: (com.apple.quicklook[1364]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    02/11/14 19.24.52,279 Console[1368]: Failed to connect (_consoleX) outlet from (NSApplication) to (ConsoleX): missing setter or instance variable
    02/11/14 19.25.06,907 iTunes[480]: Entered:_AMMuxedDeviceDisconnected, mux-device:5
    02/11/14 19.25.06,908 iTunes[480]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:5
    02/11/14 19.25.06,908 iTunes[480]: tid:17d8b - Mux ID not found in mapping dictionary
    02/11/14 19.25.06,908 iTunes[480]: tid:17d8b - Can't handle disconnect with invalid ecid
    02/11/14 19.30.19,234 com.apple.usbmuxd[56]: _SendAttachNotification Device 30:f7:c5:30:b8:2b@fe80::32f7:c5ff:fe30:b82b._apple-mobdev2._tcp.local. has already appeared on interface 5. Suppressing duplicate attach notification.
    02/11/14 19.30.22,192 soagent[429]: Can't allocate SOHelper <SOMessageHelper: 0x7f9053a102c0> inside com.apple.soagent
    02/11/14 19.30.54,871 iTunes[480]: Entered:_AMMuxedDeviceDisconnected, mux-device:6
    02/11/14 19.30.54,871 iTunes[480]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:6
    02/11/14 19.30.54,871 iTunes[480]: tid:1a23b - Mux ID not found in mapping dictionary
    02/11/14 19.30.54,871 iTunes[480]: tid:1a23b - Can't handle disconnect with invalid ecid
    02/11/14 19.32.06,137 com.apple.usbmuxd[56]: _SendAttachNotification Device 30:f7:c5:30:b8:2b@fe80::32f7:c5ff:fe30:b82b._apple-mobdev2._tcp.local. has already appeared on interface 5. Suppressing duplicate attach notification.

  • User and Computer memberships are missing after moving computer and user objects using ADMT

    Hi to everybody.
    Source domain Windows 2003. Destination domain Windows 2008. I use ADMT 3.2
    I have noticed 2 issues:
    1. After migrating users, membership to all Bultin domain groups, is lost. Migration of custom groups is completed without any problems prior to start migrating users.
    a. Example 1: user in source domain belongs to Domain Admins, Domain Users and a custom Domain group with the name Test. After moving the user, the membership is as follow: Domain Users and Test! And the worst of all
    is that I believe that Domain users membership was not produced by the migration but from the AD mechanism that automatically gives every new user the Domain Users membership. Look at example 2.
    b. Example 2:user in source domain belongs only to the Domain group with the name Test. After moving the user, the membership is as follow: Domain Users and Test! 
    2. After migrating a computer account from source domain to destination domain I have noticed in the "Local Users and Groups" that the Domain Admins  membership in the Administrators group is missing. 
    Any ideas? I think I am missing something fundamental here. 
    Thank you all in advance. 

    additionally, from the migration log I see the following
    WRN1:7372 ADMT does not process BUILTIN accounts or change the membership of BUILTIN groups (Administrators,
    etc.).
    there is 1 line of the above WRN for each builtin group that the user belongs in the source domain. This
    means that there I have to do this membership update manually? And what if I have 1500 users and 300 groups? 

Maybe you are looking for