Hello Garrick Whetstine,
Renaming a Domain Controller is a sensitive operation, especially when it is the only DC in your environment. The error you encountered happens because changing the name directly in Settings breaks the secure channel between the domain and the controller.
The supported way to rename a Domain Controller is to use the netdom computername command or PowerShell, which updates both the local system and Active Directory records consistently. For example: netdom computername CurrentName /add:NewName followed by netdom computername CurrentName /makeprimary:NewName. After that, a reboot is required. This ensures the trust relationship remains intact. It’s also critical to have local administrator credentials before attempting this, since domain credentials alone may not be sufficient if something goes wrong.
Because this is your only Domain Controller, I strongly recommend taking a full backup of both the system and Active Directory before proceeding. If possible, test the rename process in a lab environment first. Another safe option is to promote a temporary second Domain Controller, rename the original, and then demote the temporary one once everything is stable.
I hope this guidance helps you avoid the same issue again. If you find this answer useful, please hit “accept answer” so I know it addressed your concern.
Jason.