您好,登錄后才能下訂單哦!
Exchange 導(dǎo)出pst的命令是 Get-MailboxExportRequest
Exchange 導(dǎo)入pst的命令是 Get-MailboxImportRequest
準(zhǔn)備的 2018.1.22mailpst.txt 文件,文件名包含要導(dǎo)出的郵箱地址
MailboxAlias test001@pwrd.com test002@pwrd.com test003@pwrd.com ....
Powershell腳本
$mail = Import-Csv -Path "F:\scripts\2018.1.22mailpst.txt" #從CSV文件中循環(huán)導(dǎo)出pst Foreach ($user in $mail) { $Alias = $user.MailboxAlias New-MailboxExportRequest -Mailbox $Alias -ContentFilter {Received -gt "1/20/2018"} -IncludeFolders "已發(fā)送郵件" -FilePath \\10.12.0.102\pst\pst2018.3.5\$($user.MailboxAlias).pst }
導(dǎo)入pst則換成 Get-MailboxImportRequest
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。