
Dreamwomanjav 1S 18941 awww.hotjav.com.c Dreamwomanjav Dreamwomanjav l 18941 18941 x 18941 h 18941 nsearche 18941 Ssearchr 18941 e0
o Dreamwomanjav u Dreamwomanjav s 18941
Dreamwomanjav
I'm looking for a way to see a report by user of how many recipients they send to in a day. This is in preperation of moving to Office365 and thus far I have not found a 'good' way to do this. I have messed with it for a while now and have the following script running in my environment daily:
Add-PSSnapin Microsoft.Exchange.Management.Powershell.Admin
$filename = "MessagesSent {}" -f (Get-Date).AddDays(-1)
$start = (Get-Date).AddDays(-1)
$end = (Get-Date)
Get-transportserver | Get-MessageTrackingLog -resultsize unlimited -Start $start -End $end | where-object {} | where-object {} | select TimeStamp, Sender, RecipientCount | Group-Object Sender | select Count, Name | Sort-Object Count -descending | Format-Table -AutoSize | Out-File D:\ExchangeMessagesDelivered\$filename.txt
Get-transportserver | get-messagetrackinglog -resultsize unlimited -Start $start -End $end | where-object {} | where-object {} | select TimeStamp, EventID, Sender, RecipientCount | Format-Table -AutoSize | Out-File D:\ExchangeMessagesDelivered\Verbose_$filename.txt -width 200
The first get-transportserver | get-messagetrackinglog does not give me accurate results so I was trying to add more eventID's in. This gives me more information but now I'm getting messages counted more than once..
Anyone have any ideas?
Besides, you can try to use Log Praser to analyze the message tracking log.
Process Tracking Log tool for Exchange Server 2007
b/exchange/archive/2008/02/07/3404839.aspx
Message Tracking tips in Exchange 2007 / Exchange 2010 using CMD lets
b/pepeedu/archive/2010/09/02/message-tracking-cmd-lets-in-exchange-2007-exchange-2010.aspx
Xiu Zhang
TechNet Community Support
I haven't had the time to setup the Log Parser and currently using powershell scripts isn't getting accurate information. I'm getting numbers from distribution groups multiple times so the sum of total recipients is off by a multiple of roughly 2 times..
What we do have is a good picture of the senders that are sending to thousands of recipients versus hundreds, so the priority of getting 100% accurate numbers has fallen.
Thanks for the input, if there are any more thoughts on getting a powershell command to get accurate results I'd like to see them.