您的位置:首页 > 大数据 > 人工智能

Ex2010-18 Exclude email address/recipient from Exchange 2010 dynamic distribution group

2016-07-13 20:04 369 查看
http://serverfault.com/questions/211211/exclude-email-address-recipient-from-exchange-2010-dynamic-distribution-group

You can exclude a specific user from a DD group with the
Set-DynamicDistributionGroup
commandlet. Specifically with the
-RecipientFilter
option.Example:
Set-DynamicDistributionGroup -Identity MadeUpName -RecipientFilter {((RecipientType -eq 'UserMailbox') -and -not(Name -like 'Journal User'))}
Note that this example is just with recipient type = userMailbox. You can get the current recipientFilter of your DD group and modify it however from powershell.
(get-DynamicDistributionGroup -Identity MadeUpName).RecipientFilter


I have tested successfully!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Exchange Server