Hiya
I am trying to filter on mailboxes with FolderAndSubfolders size greater than 300MB and nothigs comes up even thou I am many.
This is the script that I am using
Get-exoMailbox -ResultSize unlimited |Get-exoMailboxFolderStatistics -FolderScope RecoverableItems | ?{$_.FolderAndSubfolders -lt 500MB}
Is there a way to make this filter work?
SD