Powershell - Message tracking mail to a database
Running the following PS to determine mails sent between a certain time across all hub servers but having issues with specifiying the database
Works here:
[PS] C:\Windows\system32>get-exchangeserver | where {$_IsHubTransportServer -eq "True"} | Get-MessageTrackingLog -ResultSize Unlimited -Start "13/05/2011 09:00AM" -End "13/05/2011 09:30AM" | where {$_.ServerHostname -eq "ploninexms01"} |sort-object totalbytes
-Descending | export-csv c:\MsgTrack.csv
My attempt to get mail where database is - this is my issue, must be syntax, help!
[PS] C:\Windows\system32>get-exchangeserver | where {$_IsHubTransportServer -eq "True"} | Get-MessageTrackingLog -ResultSize Unlimited -Start "13/05/2011 09:00AM" -End "13/05/2011 09:30AM" | where {$_.ServerHostname -eq "ploninexms01" -and Storagegroupname
-eq "SG15\SG15-MB01"} |sort-object totalbytes -Descending | export-csv c:\MsgTrack.csv
May 13th, 2011 9:38am
I assume you are using Exchange 2007. Here are the avail message tracking fields you can use:
http://technet.microsoft.com/en-us/library/cc539064.aspx
Message tracking doesnt care about storage groups or databases, it shows client and server connections
Free Windows Admin Tool Kit Click here and download it now
May 13th, 2011 9:52am
What's the error message?
It usually tells exactly where, in the script, the problem lies.
---------------------------------
Do you need
$_.
Before the StorageGroupName too???
May 13th, 2011 9:52am
Get-Process | Where-Object {$_.handles -gt 200 -and $_.name -eq "svchost"}
http://technet.microsoft.com/en-us/library/ee177028.aspx
Free Windows Admin Tool Kit Click here and download it now
May 13th, 2011 9:58am
Agree with Andy.
You can only filter the mails by the database GUID in "SUBMIT" phase.
where {$_.ServerHostname -eq "ploninexms01" -and $_.SourceContext -like "*database GUID*" }Please remember to click Mark as Answer on the post that helps you, and to click Unmark as Answer if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
May 17th, 2011 11:33pm