7564321 发表于 2016-12-19 13:20:35

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

luyuwei2008 发表于 2017-2-28 08:41:49

多谢楼主分享!
页: [1]
查看完整版本: Exchange 导入、导出为PST文件命令