码迷,mamicode.com
首页 > 系统相关 > 详细

【Powershell】【计数器】实时获取邮箱服务器的队列

时间:2015-08-20 06:51:43      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:powershell   exchange   队列   

    邮箱服务器的队列在对邮箱服务器的管理中是相当重要的一环,过高的队列会导致邮件收发极度缓慢,甚至导致服务器的宕机.而在服务器异常时,本来打开就非常缓慢的队列查看器会更加缓慢,这里介绍一种非常简单的方法去持续跟踪服务器的邮件队列:


$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

}

命令扩散开来,也可以用去其他计数器的监控.

本文出自 “精华荟萃” 博客,请务必保留此出处http://simy88.blog.51cto.com/7370552/1686245

【Powershell】【计数器】实时获取邮箱服务器的队列

标签:powershell   exchange   队列   

原文地址:http://simy88.blog.51cto.com/7370552/1686245

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!