Count Number Of Emails Sent To A Specific Email Address Per Day Exchange 2010 And 2013

In this article I’ll show you how to count the number of email sent to an email address per day on Exchange Server 2010, 2013 or 2016.

This cool cmdlet will show you how to count number of emails sent to a specific email address per day

get-transportserver | Get-MessageTrackingLog -Start "9/02/2015 12:00:00 am" -End "9/02/2015 17:30:00 pm" -resultsize unlimited |where-object {$_.Recipients -like "infotest@ntweekkly.local"  -AND $_.EventId -eq "receive"} |Measure-Object -Line

snip_20160808204532


by