You could check it first. This example gets the list of all computers that run the DHCP server service which are authorized in the Active Directory domain.
Get-DhcpServerInDC
then if needed you can; This example adds an object in the Active Directory domain for the DHCP server service that runs on the computer that has the DNS name dhcpserver.contoso.com and the IP address 10.10.10.2, and authorizes the DHCP server service to serve DHCP clients on the network.
Add-DhcpServerInDC -DnsName "dhcpserver.contoso.com" -IPAddress 10.10.10.2
--please don't forget to close up the thread here by marking answer if the reply is helpful--