Hi all,

I need to create a report for my Client who uses Outlook for emails, i would like to track the progress of Junk, malicious and spam emails received in the past 30 Days, is there a way to do this?

Thanks

3 Spice ups

Hi there, this has been covered here I think: Exchange Powershell Script to see how much junk mail

Quite a few 3rd party tools that can do this and provide compliance reports etc, but a lot of this can be achieved through Powershell.

30 Days, From archives you can use this powershell scripts

$mailboxes = get-mailbox

$mailboxes | % {Get-MailboxFolderStatistics -Identity $_.identity -FolderScope JunkEmail } | Export-csv -path “output.csv” -NoTypeInformation

Thanks for the reply, so would i be able to change the folder scope to what i prefer?