Hi All,
I’m doing a concept test in a lab environment and migrate groups between on-premises domains (from D12 to D16) both synchronized to a single tenant using Azure AD Connect (AADC version 1.5.45.0).
My goal is to migrate a synchronized group to the new domain. members of a migrated group differ in old and new domain.
My hope is that Azure AD connect combines members and show all members in azure of the synchronized group.
I cant get it to work like that, it always only show the members of the new domain only.
Here is what I tried:
• Create a group in the D12 (old) domain D12SecGroup.
• Use ADMT to migrate the group to the new domain (D16) (with sidhistory, but plays no role in this scenario)
• In D12\D12SecGroup add User12 as member, In D16\D12SecGroup add User16 as member,
• Then write the D12 group objectGUID to D16 group ms-ds-consistencyGUID:
$D12SG2 = Get-ADgroup -Identity D12SecGroup2 -Server DC12.domain12.org
$D16SG2 = Get-ADgroup -Identity D12SecGroup2 -Server DC16.domain16.org
$D16SG2 | Set-ADgroup -Add @{'ms-ds-consistencyguid'=[GUID]$D12SG2.ObjectGUID}
• Start AADC sync cycle and wait a minute or 2
• Check Azure, and I see only User16 as member
I see this same behavior for security groups and Distribution lists.
Is my assumption wrong that is should combine these members?
I don’t see the effect of using ms-ds-consistency guid.
In the test above, I also created a “control” group, where I didn’t copy the ms-ds-consistencyguid. It behaves exactly the same.
Can anyone help me out / point me to documentation/blog that gives more insight in which power this new AADC feature unlocks ?
The only documentation i found was:
https://learn.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-migrate-groups
https://dirteam.com/sander/2020/04/03/azure-ad-connect-v1-5-18-0-brings-ms-ds-consistencyguid-als-source-anchor-for-groups/
thanks in advance,
Sander