将成员添加到 Outlook 中的动态通讯组
我一直在尝试查找如何将新成员添加到动态通讯组,我发现了这个,但它不起作用...我认为还有其他一些功能,因为这似乎适用于常规组:
Add-DistributionGroupMember -Identity "g1white students" -Member [email protected]
动态组已使用以下方式创建:
New-DynamicDistributionGroup -Name "g1white students" -alias g1whiteStudents -RecipientFilter {(RecipientType -eq 'UserMailbox') -and (CustomAttribute2 -like 'G1') -and (CustomAttribute3 -like 'White')}
如何将管理员添加为动态组中人员的一部分,
我最终想要的是管理员收到发送到该组的电子邮件的副本 我已经添加了管理员权限,以便能够使用以下命令向组发送电子邮件:(
Set-DynamicDistributionGroup "g1white students" -AcceptMessagesOnlyFromSendersOrMembers "g1white students","admins"
其中 admins 是一个 ddg,其中包含允许向所有组发送电子邮件的人员列表)
I have been trying to lookup how to add a new member to a dynamic distribution group, I came upon this, but it doesn't work...I think there is some other function because this seems to be for regular groups:
Add-DistributionGroupMember -Identity "g1white students" -Member [email protected]
the dynamic group has been created using:
New-DynamicDistributionGroup -Name "g1white students" -alias g1whiteStudents -RecipientFilter {(RecipientType -eq 'UserMailbox') -and (CustomAttribute2 -like 'G1') -and (CustomAttribute3 -like 'White')}
how can I add the admin to be part of the people in the dynamic group,
what I ultimately want is that the admin receives a copy of the emails sent to the group
I have already added permission for admin to be able to send emails to the group using:
Set-DynamicDistributionGroup "g1white students" -AcceptMessagesOnlyFromSendersOrMembers "g1white students","admins"
(where admins is a ddg that contains the list of people allowed to send emails to all groups)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
动态通讯组成员是根据您设置的过滤器和条件自动计算的。我想管理员需要设置您知道正在为通讯组过滤的属性。
Dynamic Distribution Group members are auto calculated based on the filter and conditions you set. I imagine that the admin needs to set the attribute that you know is being filtered for the distribution group.