基于自定义属性设置邮箱配额

考虑一个场景,在那里你将遇到为 n 个用户设置邮箱配额,但所有只有有限的信息,比如让你说有一个存储组下,你有不同的所有邮箱配额集和需要将标准邮箱配额设置只对那些用户的自定义属性值等于某种形式的信息。

Get-mailbox | where {$_.CustomAttribute10 -eq “employee”} | Set-Mailbox -IssueWarningQuota 209715200 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 293601280 -useDatabaseQuotaDefaults $false

Note : Employee is just an example which has been set for custom attribute 10

Latest posts by Exchange中文站 (see all)
发布于: 浏览:2693 次

还没有评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据