标签:存储 ESS 平台 com statistic base proc not 公众
适用平台:Exchange Server 2010此命令将检查所有邮箱服务器,并重新连接任何一个邮箱存储中所有被唯一标识但已断开连接的邮箱:
$Servers = Get-ExchangeServer
$Servers | `
Where { $_.IsMailboxServer -Eq ‘$True‘ } `
| ForEach { Get-MailboxStatistics -Server $_.Name `
| Where { $_.DisconnectDate -NotLike ‘‘ } `
| ForEach { Connect-Mailbox -Identity `
$_.DisplayName -Database $_.DatabaseName} }
更多内容您也可以关注下方微信公众号获取
标签:存储 ESS 平台 com statistic base proc not 公众
原文地址:https://blog.51cto.com/543925535/2368882