Forum Discussion
tcboeira
May 13, 2024Brass Contributor
How to count messages sent from a specific mailbox
Good morning everyone! I hope everyone is well. As always, I warn you that I don't speak the language so I can help myself by using an online translator. I hope you can make me understand. If no...
- May 17, 2024
Please below using the command!
Get-MessageTrackingLog -Start 2024-01-01 -End 2024-01-31 -Sender test01@contoso.local -EventId "SEND" | Measure-Object | Select-Object Count
AnnTaeYoun
May 17, 2024MVP
Please below using the command!
Get-MessageTrackingLog -Start 2024-01-01 -End 2024-01-31 -Sender test01@contoso.local -EventId "SEND" | Measure-Object | Select-Object Count
- Filip_Jan 23, 2025Brass Contributor
Great answer, just to add if you have multiple servers use: get-exchangeserver | command by Tae