Hi,
I tested my Recipient Filter in an effort to see if I've messed anything up, but the Recipient Filter seems to work fine. The idea is to add multiple AD Groups after I can get the single one working.
Dynamic Distribution Group Setup:
New-DynamicDistributionGroup -Name "GroupDynamicList - Test" -OrganizationalUnit "CN=Distribution L
ists,CN=Recipients,CN=Users,DC=ADomainName,DC=AnotherDomainName,DC=YetAnotherDomainName" -RecipientFilter {((RecipientType -eq 'UserMailbox') -and (memberOfgroup -eq 'CN=ADGroup1,OU=Groups,OU=AnOU,OU=AnotherOU,DC=ADomainName,DC=AnotherDomainName,DC=YetAnotherDomainName'))}
Get-Recipient -Filter {((RecipientType -eq 'UserMailbox') -and (memberOfgroup -eq 'CN=ADGroup1,OU=Groups,OU=AnOU,OU=AnotherOU,DC=ADomainName,DC=AnotherDomainName,DC=YetAnotherDomainName'))}
The result of the "Get-Recipient" pulls User Accounts just fine from the specified AD group "ADGroup1."
I went further and pulled the "RecipientFilter" value that includes all the additional Filters inherited and everything works fine.
What am I missing? No one receives an email from this group and if you query the group, no members are shown.
Thank you very much for your time!
Mr Mister