I am currently running an automated script to run the below command which extracts the exchange message sendt,received report from my CAS/HUB server on a daily basis
Get-MessageTrackingLog -ResultSize Unlimited | Group-Object -Property:EventId | Sort-Object Count -Desc | Select Name,Count
Our management wants a customised report where certain feilds are renamed from the default values ..as below ..is this achievable ...or its too much to ask for.
Fields | Renamed to | Count |
RECEIVE | Generated | 48019 |
SEND | Send Externally | 47005 |
DELIVER | Send Internally- Staff | 868 |
FAIL | FAIL | 146 |
RESOLVE | Remove | 3 |
TRANSFER | Remove | 2 |
REDIRECT | Remove | 2 |
Shiva