天天看点

Exchange 导入、导出为PST文件命令

单个邮箱导出:

New-MailboxExportRequest -Mailbox "邮箱用户名" -FilePath "\\192.168.1.2\mail\1.pst"

单个邮箱导入:

New-MailboxImportRequest -Mailbox "邮箱用户名" -FilePath "\\192.168.1.2\mail\1.pst"

批量导出:

Get-mailbox | export-mailbox –PSTFolderPath d:\mb1

批量导入:

Dir C:\Mailboxes | import-mailbox –PSTFolderPath d:\mb1

 本文转自 烟台小崔 51CTO博客,原文链接:http://blog.51cto.com/seawind/1883263

继续阅读