Old Domain Controllers Showing as Authorized Servers

ECB532 21 Reputation points
2021-06-22T17:32:40.91+00:00

I have 2 old domain controllers that no longer exist showing in the "Manage Authorized Servers" in "DHCP", when I try to unauthorize them I get an error that says "There is no such object on the server."

Windows DHCP
Windows DHCP
Windows: A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.DHCP: Dynamic Host Configuration Protocol (DHCP). A communications protocol that lets network administrators manage centrally and automate the assignment of Internet Protocol (IP) addresses in an organization's network.
1,044 questions
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2021-06-23T20:09:14.373+00:00

    Try right click on ADSI Edit and click connect to. In connection settings, connection point, select or type a Distinguished Name or Naming Context. Enter CN=NetServices,CN=Services,CN=Configuration,DC=Your Domain,DC=com then click ok.

    Expand the default naming context, highlight the path in the left pane, and you should see CN=DhcpRoot on the right.

    Double click it, and then check for and edit the dhcpServers attribute to reflect the correct computers. The restart DHCP service.

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    2 people found this answer helpful.
    0 comments No comments

24 additional answers

Sort by: Most helpful
  1. ECB532 21 Reputation points
    2021-06-23T22:20:25.94+00:00

    Yeah I added the current ones to the dhcpServers attribute and removed the old ones. The current ones are listed in CN=NetServices and 1 of the old ones is listed with them.

    0 comments No comments

  2. ECB532 21 Reputation points
    2021-06-24T02:25:29.697+00:00

    Awesome. Thank you so much!

    0 comments No comments

  3. Anonymous
    2021-06-24T02:27:37.31+00:00

    You're welcome.

    0 comments No comments

  4. James Campbell 0 Reputation points
    2024-12-31T08:58:19.8866667+00:00

    You can also use the Powershell comands remove-DhcpServerInDC and Add-DhcpServerInDC to add the DHCP server with the correct IP address and then remove the incorrect entry. e.g.

    Add-DhcpServerInDC -DnsName "dhcpserver.contoso.com" -IPAddress 10.10.10.2

    Remove-DhcpServerInDC -DnsName "dhcpserver.contoso.com" -IPAddress 10.10.10.99

    This then meant that Get-DhcpServerInDC returned the correct DHCP server and the correct IP address.

    https://learn.microsoft.com/en-us/powershell/module/dhcpserver/remove-dhcpserverindc?view=windowsserver2025-ps

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.