Exchange 2010 Cmdlets for Sent Items in a Distribution group
- by Jimmy Jones
Here is the scenario that I am in and am stuck on how to get this the correct way.
What I'm looking for is a syntax that will provide me with statistics on what users have emailed "Sent" for the day.
I would like to know get information on what all users of a specific distribution group has emailed for the day.
I have tried the following to no avail.
Get-Mailbox | Get-MailboxFolderStatistics -FolderScope SentItems | Where {$_.ItemsInFolder -gt 0} | -Start "06/14/2012 9:00AM" -End "06/14/2012 5:00PM" | Sort-Object -Property ItemsInFolder -Descending | select-object Identity,ItemsInFolder | export-csv c:\test.txt
Get-MessageTrackingLog -Start "06/14/2012 9:00AM" -End "06/14/2012 5:00PM" -Sender "" | measure-object - This one will only work on specified users, but I need to check the whole group.
If anyone could help me out.
Thank you!!!