Home » Blog » Topic » Know How to Convert Exchange Database to PST Format

Know How to Convert Exchange Database to PST Format

Natalie Chopra ~ Modified: July 9th, 2018 ~ ~ 1 Minute Reading

Home Forums Know How to Convert Exchange Database to PST Format

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #6936 Score: 0
    Natalie Chopra
    Moderator

    Hi there,

    Currently I am using Exchange 2010 for personal data transactions. And I need all of my data to export Exchange Mailbox to PST format for backup purposes. Are there any ways for doing such so?

    #6943 Score: 0
    Dexter Morgan
    Moderator
    38 pts

    Hii,
    Yes, there are many core-techniques and third-party tools available to convert Exchange Database to PST. Generally, the core techniques are tedious but they are free. So, which one of the solution are you looking for?

    #6965 Score: 0
    Natalie Chopra
    Moderator

    First provide me the freeways. I just want to try them to solve my problem. Later on, if I will find them difficult or exhausting then I will switch to third-party tools.

    #6974 Score: 0
    Dexter Morgan
    Moderator
    38 pts

    There are many ways, some of the freeways for doing such transformations are listed below in brief:

    Single Mailbox Conversion to PST

    You can export Exchange mailbox to PST by using MailboxExportRequest cmdlet. You just need to mention two parameters: –
    a. FilePath- Defines the network share path of the PST file to which you want to export the data.
    b. Mailbox- Specify the Mailbox you want to export.

    Here Is the command of a Mailbox export request, which will back up an entire Exchange Mailbox to PST File: –
    New-MailboxExportRequest -Mailbox <user> -FilePath \\<server FQDN>\<shared folder name>\<PST name>.pst

    #6984 Score: 0
    Natalie Chopra
    Moderator

    Single Mailbox Conversion to PST- This is really an exhausting method, converting each Mailbox data individually. Are there any other ways for bulk conversion of Exchange Mailbox to PST?

    #6995 Score: 0
    Michael Scofield
    Moderator
    20 pts

    Yes, bulk conversion options are also available. Some of the Bulk conversion method are listed below.

    Export Exchange Mailbox to PST in bulk
    Method 1:
    – Assign all the mailboxes to a single variable, like this-
    $AllMailboxes = Get-Mailbox
    – Now, use the following command (if want to use different mailbox property just change the word “Alias” with another name)
    $AllMailboxes|%{$_|New-MailboxExportRequest -FilePath \\<server FQDN>\<shared folder name>\$($_.Alias).pst}

    Method 2:

    – Run the following script to export exchange Database to PST as in Method 1 (here foreach is being used instead of piping)

    foreach ($Mailbox in (Get-Mailbox)) { New-MailboxExportRequest -Mailbox $Mailbox -FilePath “\\<server FQDN>\<shared folder name>\$($Mailbox.Alias).pst” }

    #7000 Score: 0
    Christ Harold
    Moderator

    I just want to know that these methods are also applicable for Exchange 2016 and 2013?

    #7003 Score: 0
    Dexter Morgan
    Moderator
    38 pts

    Yes, these methods are applicable to export Exchange 2016, 2013 and 2010 Mailbox to PST.

    #7013 Score: 0
    Christ Harold
    Moderator

    I was just trying your first method of bulk conversion, and I am facing issues in specifying File Path location. Can there be other problems in which I may fall into while performing these methods?

    #7015 Score: 0
    Michael Scofield
    Moderator
    20 pts

    Make sure that, the specified location to which PST file is to be exported must be a shared folder available on the network. Other error which many people generally faces is New-MailboxExportRequest is Not Recognized. And these methods are having a large number cons because of which you may suffer from:
    1. Risk of data loss
    2. Corruptibility and fragility of the files converted from Exchange Mailbox to PST in bulk
    3. Limited search capability
    4. Windows Task Manager can only be used for scheduling
    5. No Backup Stats

    #7016 Score: 0
    Natalie Chopra
    Moderator

    Please provide me the details of third party tools for the same purpose as these ways are really difficult for Bulk export Exchange Mailbox to PST and there is also a chance of data loss and corruption.

    #7018 Score: 0
    Michael Scofield
    Moderator
    20 pts

    There are many third-party tools available online, But I will suggest you SysTools Exchange Export as I am using this tool for quite a long time for export Exchange Database to PST. You can try this export Exchange mailbox to PST tool, i think it must be able to solve all your problems.

    #7037 Score: 0
    Natalie Chopra
    Moderator

    Thanks for suggesting such a great tool. It helped me a lot.

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.