Asked by:
Get top 10 email sender & Receiver details & Total mail counts

Question
-
Hello Team,
how to get the list of Top 10 users email sender & received for 1 week or 1 month ?
please share the comment or script.
Regards, Pradhap P
Thursday, September 21, 2017 12:17 PM
All replies
-
Hello Team,
please help me any one.
how to get the list top 10 users - who is sending more mails in 1 day or 1 week ?
Regards, Pradhap P
Friday, September 22, 2017 6:16 AM -
Hi Pradhap,
You can refer to the following articles for more information. If you need assistance on these scripts, I suggest you contact the dedicated Technet Scripting Forum. Thanks for your understanding.
https://gallery.technet.microsoft.com/scriptcenter/bb94b422-eb9e-4c53-a454-f7da6ddfb5d6
Regards,
Alex Sun
Please remember to mark the replies as an answer if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- Proposed as answer by Alex Sun MS Friday, September 22, 2017 10:22 AM
- Edited by Alex Sun MS Friday, September 22, 2017 10:22 AM
Friday, September 22, 2017 10:21 AM -
Hello Team,
am try below scripts.
https://gallery.technet.microsoft.com/office/Exchange-200720102013-0ea7662b
please suggest.
Regards, Pradhap P
Monday, September 25, 2017 10:50 AM -
Hi,
I suggest you contact the Technet Scripting Forum for if you need further assistance to modify the scripts. Here is one that can be used to calculate the top 10 users in your Exchange 2016 server you can refer to.
$out = @() $users = Get-Mailbox -ResultSize Unlimited ForEach ($user in $users) { $userMailboxStatistics = Get-MailboxStatistics $user $props = @{ Username = $user.SamAccountName DisplayName = $user.DisplayName Database = $user.Database OrganizationalUnit = $user.OrganizationalUnit TotalItemSize = $userMailboxStatistics.TotalItemSize } $out += New-Object PsObject -Property $props } $out | Sort-Object -Property totalitemsize -des | select-object username, database, TotalItemSize -first 10 | Export-Csv c:\mbxDetails.csv
Regards,
Alex Sun
Please remember to mark the replies as an answer if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- Edited by Alex Sun MS Friday, September 29, 2017 10:18 AM
Friday, September 29, 2017 10:17 AM -
take a look of this. It works very very fine
Exchange Reporter
https://www.frankysweb.de/exchange-reporter-2013/
Chris
Saturday, September 30, 2017 5:11 PM