Question

I have this script. Looking to include, deleted items, sent items and drafts in the output.

Whats the best way to include that?

Thanks

Get-MailboxFolderStatistics myuserename -FolderScope Inbox | Where {$_.FolderPath -eq "/Inbox"}
Was it helpful?

Solution 2

get-mailboxfolderstatistics myusername | where {$_.name -match "Inbox|Deleted|Sent|Calendar|Drafts"} | sort-object Name | ft Name, FolderPath, ItemsInFolder, FolderSize -auto

OTHER TIPS

The easiest way I know of is to filter multiple folders at once is to use -match and a regex alternation:

Get-MailboxFolderStatistics myuserename |
 Where {$_.FolderPath -match  '/Inbox|/Deleted Items|/Sent Items|/Drafts'}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top