发表于 2018-7-8 10:42:13

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

  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-DynamicDistributionGroupcommandlet. 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!
页: [1]
查看完整版本: Ex2010-18 Exclude email address/recipient from Exchange 2010 dynamic distributio