質問

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"}
役に立ちましたか?

解決 2

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

他のヒント

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'}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top