U-Tools: Unique Tools for Windows System Administrators
U-Move Help
Menu

Swapping the Computer Name

This cleanup step will move the name of the old computer to the new computer.

Caution: Renaming a domain controller has inherent risks. It can adversely affect installed applications and services that have the computer name embedded in their internal settings. And it can prevent Certificate Services from functioning correctly.

Preparation Step: Use DFS to advertise file shares

If your server offers file shares on the network, we recommend that you advertise the file shares using DFS Namespaces. This removes the need to rename the computer in order to access the network file shares. This should be done as a preparation step before you begin the upgrade process.

Alternate Method: NETBIOS and DNS Aliases

An alternate method is to add an alias for the old DC'c name that refers to the new DC. Add the NETBIOS name in the registry of the new DC (OptionalNames). Add the DNS CNAME records in your DNS server. Do this when you move your file shares to the new DC.

See How to Configure Windows Machine to Allow File Sharing with DNS Alias.

How to swap the computer name
  1. Verify that U-Move has successfully moved all of the DNS settings and zones to the new DC. Inspect the DNS Test Report and make sure there are no red error messages.
  2. Check the Directory Services Event Log on all of the other DCs in the domain (if any). Make sure they are replicating without any error messages.
  3. Demote the old computer and take it permanently offline.
  4. Delete the old computer from Active Directory.
  5. View the Post-Upgrade Report to confirm that the old computer was demoted, removed from Active Directory, and is no longer visible on the network.
  6. Create a second backup of all DCs in the domain. This will allow you to quickly roll back the name if you encounter any problems with applications or services.
  7. Do not use the Control Panel or System Manager to rename the domain controller. (These utilities sometimes fail to rename all necessary objects in Active Directory.) Instead, always use the console utility Netdom to change the name of the new domain controller:
    1. On the new DC, open an administrative command console.
    2. Carefully type the following commands:
        netdom computername origname /add:newname.acme.com
        netdom computername origname /makeprimary:newname.acme.com
      where origname is the original name of the new DC, and newname.acme.com is the fully qualified new name for the new DC (should be the same as the name of the old DC).
    3. Restart the new DC.
  8. On the new DC, rename the SYSVOL objects in Active Directory for NTFRS and/or DFS. (nTFRSMember or msDFSR-Member). See Update the FRS or DFS Replication Member Object (Microsoft Docs).
  9. At this point the new DC still has its old name stored in AD (as an alias). Remove the old computer name from the new DC:
    1. On the new DC, open an administrative command console.
    2. Carefully type the following command:
        netdom computername newname /remove:origname.acme.com
      where newname is the new name of the DC, and origname.acme.com is the original fully qualified name of the new DC.
    3. Restart the new DC a second time.
  10. Delete any stale DNS records for origname from the primary DNS server. Be sure to check all zones and sub-zones.
  11. Fix the computer name in any applications or services. For example in SQL Server run sqlcmd -E and type the following commands:
      select @@servername
      go   (Displays origname\instancename)
      sp_dropserver 'origname\instancename'
      go   (Drops the old instance name)
      sp_addserver 'newname\instancename', local
      go   (Adds the new instance name)
      exit
    See Rename a Computer that Hosts a Stand-Alone Instance of SQL Server (Microsoft Docs). Also run the SQL Server Configuration Manager to correct the name of the server for any clients.
  12. Run U-Move and click on the tab Upgrade. Run all the reports. Verify there are no red error messages in any of the reports: the Verify Computer Report, the DNS Test Report, the Replication Test Report, or the Post-Upgrade Report.
  13. Inspect the Event Log on the new DC, the other DCs in the domain (if any), and the member computers. Look for any error messages from applications or services that might have been adversely affected by the name change (for example, Certificate Services).

You will need to inspect all other applications and services that are installed on the new DC to make sure they are no longer using the original computer name.

For more information

For more information about renaming a domain controller, see the following Microsoft articles: