需要使用Powershell获取所有用户及其相应的Exchange 2013邮箱配额的列表
问题描述:
我将尽快更改邮箱的默认配额,但还有一些其他人拥有"自定义"邮箱。配额,我也需要识别它们。
I will be changing the default quota on mailboxes soon, but there are a number of others who have "customized" quotas and I will need to identify them also.
Charlie
答
以下powershell命令可以获取使用"custum"配额的邮箱:
The following powershell command can get you the mailboxes that are using "custum "quota:
Get-Mailbox -Resultsize unlimited | where-object {
_。UseDatabaseQuotaDefaults -eq
_.UseDatabaseQuotaDefaults -eq
false}