export .pst from outlook locally

Alex Corovin 46 Reputation points
2020-07-31T15:21:35.173+00:00

Hi ,

Could you help me please,

I'm not very good with PowerShell, but is there a possibility to export .pst from outlook in local workstation with powershell?

Thank you for your help,

Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
4,958 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Dave Patrick 426.3K Reputation points MVP
    2020-07-31T15:24:10.85+00:00
    0 comments No comments

  2. Lydia Zhou - MSFT 2,371 Reputation points Microsoft Employee
    2020-08-03T05:33:18.117+00:00

    Is the mailbox created on Exchange servers?
    If so, you can use the command New-MailboxExportRequest provided by DSPatrick to export Outlook items to .pst file.

    Additionally, you need the Mailbox Import Export role to get the permission to use this cmdlet. You can add the Mailbox Import Export role to a role group, or grant Mailbox Import Export role to administrator or other users who perform this procedure:

    New-ManagementRoleAssignment -Role "Mailbox Import Export" -User username
    

    Here is a blog for your reference: How to Export Exchange Mailbox to PST using PowerShell Commands.
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.