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"}
Était-ce utile?

La solution 2

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

Autres conseils

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'}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top