Frequently Asked Question
How to Export a Mailbox to a PST file from Exchange
Last Updated 4 years ago
Powershell Export command:
New-MailboxExportRequest -Mailbox [username] -FilePath \\[server]\[Folder]\[Filename].pst
Note: the user must be a member of the role group (Mailbox Import Export)
PowerShell command:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -User "[username]"
Or this can be done via the ECP
https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/new-mailboxexportrequest?view=exchange-ps
https://www.codetwo.com/admins-blog/exchange-mailbox-backup-pst-pros-cons/
New-MailboxExportRequest -Mailbox [username] -FilePath \\[server]\[Folder]\[Filename].pst
Note: the user must be a member of the role group (Mailbox Import Export)
PowerShell command:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -User "[username]"
Or this can be done via the ECP
https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/new-mailboxexportrequest?view=exchange-ps
https://www.codetwo.com/admins-blog/exchange-mailbox-backup-pst-pros-cons/