Exchane PowerShellのコマンドがなかなか覚えきれないのでメモしておく。(順不同)
Exchange メールボックスサイズをサイズの大きい順に一覧表示 させる
[PS] C:\>get-mailbox -ResultSize Unlimited |get-mailboxstatistics |sort-object totalitemsize -Descending|select-object displayname, totalitemsize
メールボックスをpstにエクスポートする
[PS] C:\>New-MailboxExportRequest -Mailbox <usrname> -FilePath "\\192.168.1.1\PSTExport\username.pst"