Difficulty Creating Dynamic Distribution Group Filter in EMS
Hi Karthikeyan,Please let me know if you get the solution to create the Dynamic DL with filter multiple database. I need to create the DDL with multiple database.
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Your command worked!!!! If I want to add another database users or multiple databases... How should I do? Can you help me on this?Thanks !!!Karthikeyan R
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
invoke-expression "Set-DynamicDistributionGroup 'DDLgourpname' -RecipientFilter {(database -eq '$DBDN' -and RecipientType -eq 'UserMailbox')}"this can resolve the issue.
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
I can replicate this issue. If I use the DN in a variable it does not work but if I copy the variable value and manually copy it into the new-DynamicDistributionGroup command it works correctly. Has...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Thanks Xiu, that worked!Interesting you can't use the variable as a reference in the actual command.
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Hi,I have tested in my using the cmdlt below:$db = (Get-MailboxDatabase "MYdatabase").distinguishedNameNew-DynamicDistributionGroup MyGroup -RecipientFilter {Database -eq $DB} -RecipientContainer...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
The Recipient Container is correct. The OrganizationalUnit parameter is correctly placing the new DDG in the right place. Specifying the entire domain in the Recipient Container is getting me the...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
So this is what it looks to be happening. Could you verify if the Recipient container we specifying is correct. Or I would try to include the whole Domain and check if it return any results.“If you...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
This is what it returns: CN=Staff-Mailbox Store,CN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=MyDomain,CN=Microsoft...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Use this command$Database= (Get-MailboxDatabase "Staff-Mail Store"). distinguishedNameAnd then type $Database in the shell and let me know if its retuning the Distiished name of the Staff –Mail...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Hello, This is the command I've already tried as stated in the first post. It's not working. I tried appending distinguished name onto the end of the variable. It doesn't seem to make any difference....
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Use this command$Database= (Get-MailboxDatabase "Staff-Mail Store"). distinguishedName New-DynamicDistributionGroup AllStaff -RecipientFilter {Database -eq$Database} -RecipientContainer "OU=Users...
View ArticleDifficulty Creating Dynamic Distribution Group Filter in EMS
Hello, We've just moved our exchange server's to exchange 2010 from 2003, and I'm looking at how to create query-based distribution lists in the newer version. Essentially what I want to do is create...
View Article