To achieve an independent Active Directory (AD) server running on Windows Server 2022, you need to ensure that the new server is fully promoted as a domain controller and that it can operate without relying on the old server (Windows Server 2012). Here are some steps you can follow:
- Ensure Proper Promotion: Make sure that the new server is properly promoted to a domain controller. You can do this by using the Active Directory Domain Services Configuration Wizard or PowerShell commands. If you encounter issues during promotion, check the event logs for any errors that may provide insight into what went wrong.
- Transfer FSMO Roles: Since you have already upgraded the schema and verified that the FSMO roles are on the new server, ensure that all roles are correctly assigned. You can use the
Get-ADForestandGet-ADDomainPowerShell cmdlets to verify the roles. - Check Replication: Verify that replication between the old and new servers is functioning correctly. You can use the
repadmin /replsummarycommand to check the replication status and ensure that there are no issues. - Demote the Old Server: Once you confirm that the new server is functioning independently and that all necessary data has been replicated, you can demote the old server. This can be done using the Active Directory Domain Services Configuration Wizard or the
Uninstall-ADDSDomainControllerPowerShell cmdlet. - Verify Independence: After demoting the old server, test the new server's functionality by creating users, groups, and other objects to ensure that it operates independently without relying on the old server.
- Backup and Documentation: Ensure you have proper backups of your AD environment and document the changes made during the migration process for future reference.
If you continue to face issues, consider consulting Microsoft documentation or reaching out to a Microsoft support professional for further assistance.
References: