1

I'm looking at ways to import PST files into Exchange (specifically Exchange 2010) during an Exchange 2003 to 2010 migration. Any handy tips and tricks anyone?

Massimo
  • 68,714
  • 56
  • 196
  • 319

2 Answers2

1

You can use Import-Mailbox to import PST files into Exchange mailboxes.

But why aren't you just migrating mailboxes directly between your Exchange servers?

Massimo
  • 68,714
  • 56
  • 196
  • 319
0

If you want to migrate Exchange 2003 to Exchange 2010, you can follow either of the two methods:

  • EAC method
  • PowerShell method

In EAC method (more preferred), follow steps to import PST files to Exchange 2010

  1. Get access to EAC with Admin credentials.
  2. Grant permission of Import to perform Import process.
  3. Go to Recipients>> More (...)>>Import PST Option
  4. Provide UNC shared file path of the .pst file
  5. Select the Mailbox to import the PST file.
  6. Click Finish and the PST file will be imported to the selected User mailbox.

For a detailed description, Visit Link...

In PowerShell Command, Follow below steps:

  1. Grant permission of Import to perform Import process. Use the following command for granting permission

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

  1. Execute following command to perform Import process

New-MailboxImportRequest -Mailbox “User_Mailbox_Name” -FilePath “UNC_shared_File_Path”

  1. Execute below command to get the status of the on-going import process

Get-MailboxImportRequest | Get-MailboxImportRequestStatistics

If any doubt occurs while performing the above PowerShell commands, Visit Exchange 2010 Import PST Mailbox via PowerShell Command

Hope this will resolve your problem. Please feel free to ask anything which is not understood or taking you to wrong way.

Thanks, Adwin John