0
這內獲取用戶的郵箱大小爲Exchange 2007的日期範圍
我們正試圖確定多少磁盤空間,如果我們在某個日期範圍內沒有用戶郵箱的出口將被使用。
我可以使用Export-Mailbox cmdlet導出日期範圍內的內容(startdate和enddate開關),但這些開關不存在於Get-Mailboxstatistics cmdlet中。
理想的情況下,該命令會去像這樣(顯然這是僞代碼):
get-mailbox -organizationalunit "target" | get-mailboxstatistics -startdate "02/01/2012" -enddate "02/15/2012"
但同樣,因爲對於獲取-Mailboxstatistics cmdlet將不存在這些開關,我不知道如何解決這個問題。
這甚至可能嗎?