The queue of a mailbox server is an important part of the management of a mailbox server, and an excessively high queue can result in extremely slow mail delivery and even server downtime. When the server is out of the ordinary, the Queue Viewer will be slow to open, Here is a very simple way to keep track of the message queue of the device:
$counter = New-object Diagnostics.performancecounter
$counter. CategoryName = "MSExchangeTransport Queues"
$counter. CounterName = "Messages Queued for Delivery"
$counter. InstanceName = "_total"
while ($true)
{
$value = $counter. NextValue ()
Write-host "MessageQueue: $value"
Sleep 1
}
command to spread, you can also use the monitoring of other counters.
This article is from the "Essence of the" blog, please be sure to keep this source http://simy88.blog.51cto.com/7370552/1686245
Powershell "Counter" to get the queue of a mailbox server in real time