Hey,
I need to do some analysis (basically a daily count) of messages sent/received. I would like to be able to do the following:
count of messages sent/received internally only
count of messages sent/received externally only
One issue I have is that we have some transport rules that duplicate incoming email ton number of recipients. So let's say an email comes into me and it's copied to 4 recipients, I want it counted once, not 5 times.
I have a basic understanding of this cmdlet but not to do the things I need:
Get-MessageTrackingLog -start "12/30/2014 00:00:00" -end "12/30/2014 23:59:00" -ResultSize "Unlimited" | group-object
Thanks