exchange management basic
Friday, April 11th, 2014 Posted in M$ & Window$ | No Comments »官方资料 查询用户邮箱统计详情: Get-MailboxStatistics username|fl 给用户分配Mailbox Import Export角色,需要重新登陆后生效,不然无法使用import/export命令: New-ManagementRoleAssignment -User username -Role "Mailbox Import Export" 导出用户数据到pst文件: New-MailboxExportRequest -Mailbox username -FilePath \\Server\PSTFileShare\username.pst 查询导出状态(identity可以在导出的时候查到): Get-MailboxExportRequestStatistics -Identity username\MailboxExport 从pst文件导入用户数据: New-MailboxImportRequest -Mailbox username -FilePath \\Server\PSTFileShare\username.pst 查询导入状态(identity可以在导入的时候查到) Get-MailboxImportRequestStatistics -Identity username\MailboxImport