考虑一个场景,在那里你将遇到为 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)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:2436 次
还没有评论