2. 中间件
2.15. exchage邮箱
Last modified on August 11, 2026
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
$server = "BJMX01"
$queue = (get-queue -server $server |Measure-Object -Property messagecount -sum).sume
cho $queue
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
$server="bjmx11"$status=Get-MailboxDatabaseCopyStatus -Server
$server |foreach {$_.status}
if ($status | where-object{$_ -notmatch "Healthy|Mounted" -and $_ -ne""} )
{
echo 1
}
else
{
echo 0
}
```
# 3、添加配置conf文件
Was this page helpful?
