Powershell: Counting messages processed by a Receive Connector
Recently I was doing some testing with a new Exchange 2010 Receive Connector and wanted a method to check how many messages it was processing. I came up with the following Powershell snippet that seems to work well. $i = 0 do { $now = get-date (Get-MessageTrackingLog -ResultSize unlimited -Start “11/10/2012 3:00PM” -End $now -Server… Read More »