hi chimakida,
The error you're encountering indicates that the existing domain is still using the deprecated File Replication Service (FRS) to replicate the SYSVOL share. Since Windows Server 2016 and later versions do not support FRS for SYSVOL replication, you need to migrate the SYSVOL replication from FRS to DFS Replication (DFSR) before adding a new Windows Server 2022 as an additional domain controller.
The link you provided seems to offer guidance on the migration process. Here's a general outline of the steps you would need to take:
- Check the Current Replication Method:
- Verify that the domain is still using FRS for SYSVOL replication.
- You can check the current replication method by running the following command on an existing domain controller:
dfsrmig /getglobalstate
- Prepare for Migration:
- Before migrating, ensure that you have a good backup of your domain controllers and critical data.
- Review Microsoft documentation and articles for any specific considerations or updates related to the migration.
- Migrate SYSVOL to DFSR:
- Follow the steps outlined in the provided link or Microsoft documentation to migrate SYSVOL replication from FRS to DFSR.
- The process may involve running DFSR migration commands, monitoring the migration progress, and verifying successful migration.
- Verify Migration:
- After migrating to DFSR, verify the status of the migration using commands like
dfsrmig /getmigrationstate
anddfsrmig /getmigrationtable
. - Ensure that there are no errors or issues reported during the migration process.
- After migrating to DFSR, verify the status of the migration using commands like
- Promote New Windows Server 2022 Domain Controller:
- Once SYSVOL replication is successfully migrated to DFSR, you can proceed with promoting the new Windows Server 2022 as an additional domain controller.
Remember that each environment may have unique considerations, and it's crucial to refer to the latest Microsoft documentation for the specific versions of Windows Server you are working with.
At the time of migration, you may need information such as administrative credentials, knowledge of the current domain controller configuration, and an understanding of the existing replication topology. Additionally, having a backup and a rollback plan is always a good practice in case any issues arise during the migration process.