Receive total send and received emails Exchange 2010
        Posted  
        
            by 
                Matt
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by Matt
        
        
        
        Published on 2012-10-05T14:24:01Z
        Indexed on 
            2012/10/05
            15:40 UTC
        
        
        Read the original article
        Hit count: 277
        
exchange-2010
|powershell
We are using Exchange 2010. I would like to retrieve a list of total sent emails and received emails from all users in the work place. The list should have all the users' names, then total of sent and received emails.
I have tried the code below and tried to change this to no avail.
Get-MessageTrackingLog -Recipients [email protected] -start “10/22/2011 00:00:00” -end “11/21/2011 11:59:00” -EventId "receive" | measure-object
Get-MessageTrackingLog -sender [email protected] -start “10/22/2011 00:00:00” -end “11/21/2011 11:59:00” -EventId "send" | measure-object
© Server Fault or respective owner