适用平台: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} }
更多内容您也可以关注下方微信公众号获取
原文地址:https://blog.51cto.com/543925535/2368882
时间: 2025-01-16 15:33:53