Enable archive mailbox for a user,

IniobongNkanga-8038 266 Reputation points
2024-03-29T15:38:26.92+00:00

Hello

 

Please i need your help on this issue.

How can i enable archive mailbox for a user.

Microsoft Exchange Online
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,190 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Andy David - MVP 142.2K Reputation points MVP
    2024-03-29T15:42:13.67+00:00
    1 person found this answer helpful.
    0 comments No comments

  2. Ke Zhang-MSFT 230 Reputation points Microsoft Vendor
    2024-04-01T05:27:46.89+00:00

    Hello,

    I agree with Andy’s reply. Here is an excerpt from his recommended article.

    Before enabling archive email for users, you need to be a member of the Recipient Management and Organization Management role groups.

    If you are, you can use EAC or powershell online.

    EAC:

    1.Sign in to the Exchange admin center (EAC) and navigate to Recipients > Mailboxes.

    2.In the list of mailboxes, select the user to enable their mailbox for archive.

    3.In the flyout pane, select Others, and under Mailbox archive, select Manage mailbox archive:

    4.On the Manage mailbox archive pane, turn on Mailbox archive, and then Save.

    It might take a few moments to create the archive mailbox. When it's created, Active is displayed in the Archive status column for the selected user, although you might need to refresh the page to see the change of status.

    Powershell online:

    The first step is to connect to Exchange Online PowerShell. For instructions, see https://learn.microsoft.com/en-us/powershell/exchange/connect-to-exchange-online-powershell

    After you're connected to Exchange Online, you can run the commands in the following sections to enable or disable archive mailboxes.

    Run the following command to enable the archive mailbox for a single user.

    Enable-Mailbox -Identity <username> -Archive

    Run the following command to enable the archive mailbox for all users in your organization (whose archive mailbox is currently not enabled).

    Get-Mailbox -Filter {ArchiveGuid -Eq "00000000-0000-0000-0000-000000000000" -AND RecipientTypeDetails -Eq "UserMailbox"} | Enable-Mailbox -Archive

     

    Best wishes,

    Kelly

    0 comments No comments