Exchange 2010: Count the number of messages sent or received
I am often asked why it is not possible to query the number of received or sent messages, I have even come across a Powershell script that counts the messages in a cumbersome way. But there is an easier way: Count sent messages on day X: (Get-MessageTrackingLog -Start "03.10.2012 00:00:00" -End "03.10.2012 23:59:00" -EventId SEND).count Received messages on ... Read more