将成员添加到 Outlook 中的动态通讯组

发布于 2024-11-05 08:38:15 字数 843 浏览 2 评论 0原文

我一直在尝试查找如何将新成员添加到动态通讯组,我发现了这个,但它不起作用...我认为还有其他一些功能,因为这似乎适用于常规组:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

病女 2024-11-12 08:38:15

动态通讯组成员是根据您设置的过滤器和条件自动计算的。我想管理员需要设置您知道正在为通讯组过滤的属性。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文