I have written a Powershell command:
Get-MailboxFolderStatistics 'Mailbox1' |select name, foldersize, itemsinfolder |Export-CSV C:\Mailbox1report
Which works fine, I want to drill down a little more and I want to see the date of the newest item in each folder, and the oldest, or ideally list each item in each folder with its corresponding size, date and if possible attachment type (I am not sure that is possible though).
Can you tell me how I should or would go about this? We are running Exchange 2010.
Thanks in advance,
Dan