Rexxer

Some tips for me and other

Exchange 2019 + Count received messages for a user by date

Get-TransportService | Get-MessageTrackingLog -Start "12/10/2023 00:00:00" -Recipients user@local.com -EventID RECEIVE -resultsize unlimited | select Timestamp,Subject | Foreach-object {Get-Date $_.Timestamp -Format dd.MM.yyyy} | Group | Select @{N="Date";E={$_.Name}}, Count | Sort Date

Comments are currently closed.