THERADIOTUBBY Posted July 1, 2010 Posted July 1, 2010 Have set up a new virtual network based on server 2008 R2 in vmware Have migrated user accounts and all is working well Have set up trust between old and new domains We are now ready to remove the fully serviced packed XP client machines from the old domain and then rejoin them to the new. In the past I have just moved them off old domain into workgroup and then from workgroup into new domain This time we have over 300 machines Is there any easier way? We really want to decomission the old domain when the new one is up and running Thanks in advance
PiqueABoo Posted July 1, 2010 Posted July 1, 2010 Can't say I've ever used it for this, but take a look at the netdom 'move' option. [That page refers to the 2K8 "built-in" one, but IIRC it's in 2k3 support tools - google will tell you]
djm968 Posted July 1, 2010 Posted July 1, 2010 (edited) Can be done using Netdom and a text file containing the computer names (one on each line) I have a working script somewhere and will try and dig it out. Was something like this below. for /f "eol=; tokens=1,2*" %%i in (comperts.txt) do NETDOM MOVE /DOMAIN:TargertDomain %%i /Ud:domain\user /Pd: /Uo:%%i\Administrator /Po: pause The computer name is stored in the variable %%i from the text file. NETDOM Command Switches /domain Identifies the target domain. /OU:ou_path Specifies the target OU. /Ud:User Indicates the user account used to make the connection with the target domain. Pd:{Password|*} Enters the password for the user account used to connect to the destination domain; if you use *, NETDOM prompts for the password. /Uo:User Identifies the user account used to make the connection to the source domain. /Po:{Password|*} Enters the password for the user account used to connect to the original domain; if you use *, NETDOM prompts for the password. /Reboot:[time_in_seconds] Specifies that the computer being moved should shut down and reboot automatically in the given number of seconds after the move operation Edited July 1, 2010 by djm968
srochford Posted July 1, 2010 Posted July 1, 2010 Not sure if it's too late, but Microsoft have an Active Directory Migration Toolkit which will do all of this for you - http://www.microsoft.com/downloads/details.aspx?familyid=20C0DB45-DB16-4D10-99F2-539B7277CCDB&displaylang=en 1
djm968 Posted July 2, 2010 Posted July 2, 2010 Not sure if it's too late, but Microsoft have an Active Directory Migration Toolkit which will do all of this for you - http://www.microsoft.com/downloads/details.aspx?familyid=20C0DB45-DB16-4D10-99F2-539B7277CCDB&displaylang=en Agreed. You will need to use latest version of the Active Directory Migration Tool version 3.2 - as ADMT 3.1 will not work on 2008-R2 DC's Download details: ADMT v3.2 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now