Here is the procedure you should be able to follow:
- Promoting a new Windows Server 2022 as an Additional Domain Controller (ADC).
- Transferring FSMO roles and making the new server a Global Catalog.
- Replicating AD and DNS.
- Ensuring no replication or DNS issues.
- Demoting the old server.
- Reassigning the hostname and IP.
- Prepare and add Windows Server 2022 as an additional domain controller
- Assign it a unique hostname and separate IP during setup.
- Join the domain and promote it as an additional domain controller in the same domain
- Make it a DNS server and Global Catalog.
- Transfer FSMO roles
FSMO transfer is seamless and doesn’t cause downtime.
- Confirm using:
netdom query fsmo
- Update AD-integrated services
- ADFS, Accops, SAP, Firewall, ISP, and others must be confirmed to reference the domain name, not the DC hostname/IP.
- If they point to
domain.localand not directly todc01.domain.local, you’re generally safe. - If hardcoded to old IP or hostname, you’ll need to update these after role transfer or when the new server takes over the IP/hostname.
- Verify replication and health
Run these:
dcdiag /v
repadmin /replsummary
Ensure replication is healthy and DNS zones are syncing properly.
- Demote the old DC, shutdown the OS and disconnect it from the network.
- Reuse the IP and hostname assigned to the demoted DC
- Rename the new 2022 DC to the hostname assigned to the demoted DC
To rename the server, run:
Rename-Computer -NewName "DC01" -Restart
- Assign the old IP address.
- Restart the 2022 server.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin