Exchange 2010 Cmdlets for Sent Items in a Distribution group
Posted
by
Jimmy Jones
on Server Fault
See other posts from Server Fault
or by Jimmy Jones
Published on 2012-06-18T18:53:43Z
Indexed on
2012/07/11
15:17 UTC
Read the original article
Hit count: 294
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!!!
© Server Fault or respective owner