计算ou中使用的邮箱大小

时间:2017-08-07 14:37:38

标签: powershell

我正在尝试显示用于所有用户的邮箱空间(mbx1 + mbx2 + mbx3等..)。 没有向用户显示,但使用的数据合并在一起。

我到目前为止:

#Connect Session
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -
ConnectionUri http://$env:COMPUTERNAME/PowerShell/ -Authentication Kerberos
Import-PSSession $Session

$domaininfo=Get-AcceptedDomain
foreach ($domain in $domaininfo.DomainName) {$stats = Get-Mailbox -
OrganizationalUnit $entry.Substring(0, $entry.IndexOf(".")) | Get-
MailboxStatistics}

我如何计算Get-MailboxStatistics值使用大小的所有值?

0 个答案:

没有答案