1

I am using the New-MailboxImportRequest to import .PST files into existing mailboxes. These mailboxes have emails in them that are also included in the .PST file being imported.

The import request completes successfully, some needing the BadItemLimit to be set. After importing the .PST file, I am noticing that duplicates have been created for emails and contacts.

From this site, I understand that duplicates are not imported.

This was due to a corrupt Exchange database.

A new empty database was created to allow email access and flow. Some users had cached Exchange mode enabled before the database corruption.

These locally cached emails were exported to .pst using Outlook and then imported into the empty Exchange database and respective mailbox. Most users did not have "All" cached. Data was later recovered from a backup before the corruption exporting each mailbox to a .pst file, these recovered .pst files were then imported into each user new mailbox.

This is an example of the PowerShell command used:

New-MailboxImportRequest -FilePath "\\ServerName\FolderLocation\UserName.pst" -BadItemLimit 10 -Mailbox "UserName"

This is an on premise Exchange 2016 server.

So, to my questions,

  • How do I stop the duplicates from being imported?
  • How do I remove the duplicates for those already imported?
Michael Hampton
  • 237,123
  • 42
  • 477
  • 940

1 Answers1

-1

I found a similar thread: Duplicates are being imported, please check if the answers in it are helpful to you.

Ivan_Wang
  • 1,323
  • 1
  • 3
  • 4