Link to home
Start Free TrialLog in
Avatar of preshomes
preshomes

asked on

Can I demote a Windows DC, remove it from the domain and then rename another server with that same name?

I have a Win2003 R2 Domain Controller named FS1 and another Win2003 R2 Domain Controller named DC2. The plan is to add Win2008 R2 DC's and remove Win2003 DC's.

FS1 holds all FSMO roles, DNS, DHCP and is a file server.  After I add a Win2008 DC I plan to transfer FSMO roles, transfer DHCP and demote FS1 to a member server so that it continues to function as the File Server. Once this is completed I plan to install a new Win2012 R2 member server (FS2) and move the files over to this new server.

With that, my question is....

After I demote FS1, after I move the files to a new file server (FS2), after I remove FS1 from the domain can I go back and rename the new file server from (FS2) to (FS1) so that drive mappings are not broken on my client machines?  I know that I can setup GPO's for drive mappings but almost all my users have several very unique mappings.
Avatar of David Paris Vicente
David Paris Vicente
Flag of Spain image

Yes you can.

The best way is to follow a tutorial.
You can find one here

Let us know helped.
Avatar of preshomes
preshomes

ASKER

The information you have provided seems to be talking about renaming an active DC and not a demoted DC.  I would assume that demoting the machine would take care of most of the possible latency issues that could occur.  Anyone else?
Sorry, I though that this new FS2 was a DC after installation that´s why I pointed the tutorial.

But again yes you can, you can do it by control panel or PowerShell.

With powershell:
Rename-computer –computername “computer” –newname “newcomputername” –domaincredential domain\user –force –restart

Open in new window


You can test it with other machine before you rename the FS2 and check if it´s everything right, and also check the DNS to see if is everything pointing to the correct names.

Hope it helps.
ASKER CERTIFIED SOLUTION
Avatar of it_saige
it_saige
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Saige....I plan to do exactly that... Users will not actually use the new server until I rename it to FS1.  I will move/copy the files over to the new server and then during the maintenance window move only those files have changed since the initial copy so that I can complete the move and renaming at the same time.  FS2 will not become a domain controller.  I simply want to demote FS1, take it down and rename FS2 to FS1.

Based on your comments I should not have any ill effects, correct? Seeing that I am renaming FS2 to FS1 then my users shouldn't be affected since their mapped drives will have the same UNC name as before?
Exactly.

Also I do not know which tool(s) you will be using but if you havn't tried the Microsoft File Server Migration Tookit (fsmigrate), I highly recommend it.

http://www.microsoft.com/en-us/download/details.aspx?id=10268

-saige-
Yes...I am familiar with this toolkit.  Thank you for the confirmation!