To resolve this problem, set the
recipientcontainer�attribute of the existing DDGs to the User's OU. To do this, run the following cmdlet:�
Set-DynamicDistributionGroup TestDDG@contoso.com�-recipientcontainer "xxxd.mgd.msft.net/MMSSPP/Users"
For new DDGs that you create, specify the
recipientcontainer�attribute to the User's OU. To do this, include the following command in the New-DynamicDistributionGroup cmdlet:�
-recipientcontainer "xxxd.mgd.msft.net/MMSSPP/Users"
To get the number of users in a DDG, run the following cmdlets:
$DDG = Get-DynamicDistributionGroup "<identity>"
$DDG2 = Get-Recipient -RecipientPreviewFilter $DDG.RecipientFilter
$DDG2.count
Note This will give an impact of the number of the affected users.