User wants to transfer all the emails from In-Place Archive back to her inbox

IBN 4,331 Reputation points
2022-01-21T14:40:49.463+00:00

Dear All,

Please I need your help on this issue.

I have a colleague who is having this issue. Retention policy for a User that was set up for 1-year which has been moved to archive.

Due to this reason, the User doesn't want to have the in-Place archive she wants to transfers all the emails from the In-Place Archive back to her inbox.

Do you have any possible troubleshooting steps to resolve this issue?

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,177 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,350 questions
{count} votes

Accepted answer
  1. Joyce Shen - MSFT 16,641 Reputation points
    2022-01-24T06:15:11.463+00:00

    Hi @IBN

    You could also consider using this method: dump the archive to PST and then import the PST into the mailbox

    Following example steps will help to copy data from Archive mailbox back to mailbox.

    1.Assign permissions to the account to do data exporting:

    New-ManagementRoleAssignment -Role "Mailbox Import Export" –User "your name"  
    

    2.Create a shared folder with write access permission to the account and run the following cmdlet:

    New-MailboxExportRequest –Mailbox "user" -IsArchive -FilePath \archive.pst  
    

    3.Check the status of the operation to understand whether it is completed or not:

    Get-MailboxExportRequest  
    

    4.To import the data back to the mailbox:

    New-MailboxImportRequest -Mailbox "user" -FilePath \archive.pst    
    

    -TargetRootFolder "Recovered emails" switch can recover to the specific folder

    A related thread discussed the similar issue for your reference here: Move Archived items to mailbox


    If an Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Andy David - MVP 141.6K Reputation points MVP
    2022-01-21T14:46:21.063+00:00

    There is no automatic way to move the items back.

    So you have a few choices:

    Move the items manually from the archive to the primary mailbox
    or try Michel's script:

    https://eightwone.com/2021/08/14/unarchiving-mailbox-items/

    oh and remove the retention policy from that mailbox if you want it to stop - or apply specific tags or labels :)

    0 comments No comments