Enable auto-expanding archiving (2024)

  • Article

.

You can use the Exchange Online auto-expanding archiving feature to enable additional storage space for archive mailboxes. When auto-expanding archiving is turned on, additional storage space is automatically added to a user's archive mailbox until it reaches the storage limit of 1.5 TB. You can turn on auto-expanding archiving for everyone in your organization or just for specific users. For more information about auto-expanding archiving, see Learn about auto-expanding archiving.

Tip

If you're not an E5 customer, use the 90-day Microsoft Purview solutions trial to explore how additional Purview capabilities can help your organization manage data security and compliance needs. Start now at the Microsoft Purview compliance portal trials hub. Learn details about signing up and trial terms.

Before you enable auto-expanding archiving

  • Understand the following restrictions:

    • After you turn on auto-expanding archiving for your organization or for a specific user, it can't be turned off. Administrators also can't adjust the storage quota for auto-expanding archiving.

    • Auto-expanding archiving prevents you from recovering or restoring an inactive mailbox. That means if you enable auto-expanding archiving for a mailbox and the mailbox is made inactive at a later date, you won't be able to recover the inactive mailbox (by converting it to an active mailbox) or restore it (by merging the contents to an existing mailbox).

      If auto-expanding archiving is enabled on an inactive mailbox, the only way to recover data is by using the Content search tool in the Microsoft Purview compliance portal to export the data from the mailbox and import to another mailbox. For more information, see the Inactive mailboxes and auto-expanding archives.

  • You must be a global administrator in your organization or a member of the Organization Management role group in your Exchange Online organization to enable auto-expanding archiving. Alternately, you have to be a member of a role group that's assigned the Mail Recipients role to enable auto-expanding archiving for specific users.

  • A user's mailbox must already be enabled for archive before you can enable auto-expanding archiving.

  • After you turn on auto-expanding archiving, an archive mailbox is converted to an auto-expanding archive when the archive mailbox (including the Recoverable Items folder) reaches 90 GB. It can take up to 30 days for the additional storage space to be provisioned.

  • Auto-expanding archiving also supports shared mailboxes.

  • You can't use the Exchange admin center or the Microsoft Purview compliance portal to enable auto-expanding archiving. You must use Exchange Online PowerShell.

Enable auto-expanding archiving for your entire organization

You can enable auto-expanding archiving for your entire organization. After you turn it on, auto-expanding archiving will be enabled for existing user mailboxes and for new user mailboxes that are created. When you create user mailboxes, be sure to enable the user's main archive mailbox so the auto-expanding archiving feature works for the new user mailbox.

  1. Connect to Exchange Online PowerShell

  2. Run the following command in Exchange Online PowerShell to enable auto-expanding archiving for your entire organization.

    Set-OrganizationConfig -AutoExpandingArchive

Enable auto-expanding archiving for specific users

Instead of enabling auto-expanding archiving for every user in your organization, you can enable it only for specific users. You might do this because only some users might have a need for a large archive storage capacity.

When you enable auto-expanding archiving for a specific user and the user's mailbox in on hold or assigned to a retention policy, the following two configurations changes are made:

  • The storage quota for the user's primary archive mailbox is increased by 10 GB (from 100 GB to 110 GB). The archive warning quota is also increased by 10 GB (from 90 GB to 100 GB).

  • The storage quota for the Recoverable Items folder in the user's primary mailbox is increased by 10 GB (also from 100 GB to 110 GB). The Recoverable Items warning quota is also increased by 10 GB (from 90 GB to 100 GB). These changes are applicable only if the mailbox in on hold or assigned to a retention policy.

This additional space is added to prevent any storage issues that may occur before the auto-expanding archive is provisioned. Additional storage space is not added when you enable auto-expanding archiving for your entire organization, as described in the previous section.

  1. Connect to Exchange Online PowerShell

  2. Run the following command in Exchange Online PowerShell to enable auto-expanding archiving for a specific user. As previously explained, the user's archive mailbox (main archive) must be enabled before you can turn on auto-expanding archiving for that user.

    Enable-Mailbox <user mailbox> -AutoExpandingArchive

Important

In an Exchange hybrid deployment, you can't use the Enable-Mailbox -AutoExpandingArchive command to enable auto-expanding archiving for a specific user whose primary mailbox is on-premises and whose archive mailbox is cloud-based. To enable auto-expanding archiving for cloud-based archive mailboxes in an Exchange hybrid deployment, you have to run the Set-OrganizationConfig -AutoExpandingArchive command in Exchange Online PowerShell to enable auto-expanding archiving for the entire organization. If a user's primary and archive mailboxes are both cloud-based, then you can use the Enable-Mailbox -AutoExpandingArchive command to enable auto-expanding archiving for that specific user.

Verify that auto-expanding archiving is enabled

To verify that auto-expanding archiving is enabled for your organization, run the following command in Exchange Online PowerShell.

Get-OrganizationConfig | FL AutoExpandingArchiveEnabled

A value of True indicates that auto-expanding archiving is enabled for the organization.

To verify that auto-expanding archiving is enabled for a specific user, run the following command in Exchange Online PowerShell.

Get-Mailbox <user mailbox> | FL AutoExpandingArchiveEnabled

A value of True indicates that auto-expanding archiving is enabled for the user.

To determine if auto-expanding archiving is enabled for inactive mailboxes, run the following command in Exchange Online PowerShell.

Get-Mailbox -InactiveMailboxOnly | FL UserPrincipalName,AutoExpandingArchiveEnabled

A value of True indicates that auto-expanding archiving is enabled for the inactive mailbox. A value of False indicates that auto-expanding archiving isn't enabled.

Keep the following things in mind after you enable auto-expanding archiving:

  • If you run the Set-OrganizationConfig -AutoExpandingArchive command to enable auto-expanding archiving for your organization, you don't have to run the Enable-Mailbox -AutoExpandingArchive on individual mailboxes. Running the Set-OrganizationConfig cmdlet to enable auto-expanding archiving for your organization doesn't change the AutoExpandingArchiveEnabled property on user mailboxes to True.

  • Similarly, the values for the ArchiveQuota and ArchiveWarningQuota mailbox properties aren't changed when you enable auto-expanding archiving. In fact, when you enable auto-expanding archiving for a user mailbox and the AutoExpandingArchiveEnabled property is set to True, the ArchiveQuota and ArchiveWarningQuota properties are ignored. Here's an example of these mailbox properties after auto-expanding archiving is enabled for a user's mailbox.

    Enable auto-expanding archiving (1)

More information

  • You can also use PowerShell to enable archive mailboxes. For example, you can run the following command in Exchange Online PowerShell to enable archive mailboxes for all users whose archive mailbox isn't already enabled.

    Get-Mailbox -Filter {ArchiveStatus -Eq "None" -AND RecipientTypeDetails -eq "UserMailbox"} | Enable-Mailbox -Archive
  • Auto-expanding archiving is supported for cloud-based archive mailboxes in an Exchange hybrid deployment for users who have an on-premises primary mailbox. However, after auto-expanding archiving is enabled for a cloud-based archive mailbox, you can't off-board that archive mailbox back to the on-premises Exchange organization. Auto-expanding archiving isn't supported for on-premises mailboxes in any version of Exchange Server.

  • For a list of Outlook clients that users can use to access items in the additional storage area in their archive mailbox, see the "Outlook requirements for accessing items in an auto-expanded archive" section in Learn about auto-expanding archiving.

  • As previously explained, 10 GB is added to the storage quota of the user's primary archive mailbox (and to the Recoverable Items folder if the mailbox is on hold) when you run the Enable-Mailbox -AutoExpandingArchive command. This provides additional storage until the auto-expanded storage space is provisioned (which can take up to 30 days). This additional storage space isn't added when you run the Set-OrganizationConfig -AutoExpandingArchive to enable auto-expanding archiving for all mailboxes in your organization. If you enabled auto-expanding archiving for the entire organization, but need to add the additional 10 GB of storage space for a specific user, you can run the Enable-Mailbox -AutoExpandingArchive command on that mailbox. You will receive an error saying that auto-expanding archiving has already been enabled, but the additional storage space will be added to the mailbox.

Important

Auto-expanding archiving is supported only for mailboxes used by individual users or for shared mailboxes with a growth rate that doesn't exceed 1 GB per day. Using journaling, transport rules, or auto-forwarding rules to copy messages to an archive mailbox for the purposes of archiving is not permitted. A user's archive mailbox is intended for just that user. Microsoft reserves the right to deny additional archiving in instances where a user's archive mailbox is used to store archive data for other users or in other cases of inappropriate use.

Next steps

Make sure you prepare end users for the changes they can expect after enabling their mailbox for auto-expanding archives.

I'm an expert in Microsoft Exchange Online and email archiving, possessing an in-depth understanding of the concepts discussed in the provided article. My knowledge is based on hands-on experience and extensive training in the field.

In the article dated 09/05/2023, the focus is on utilizing the Exchange Online auto-expanding archiving feature to provide additional storage space for archive mailboxes. Here are the key concepts discussed in the article:

  1. Auto-Expanding Archiving Overview:

    • Auto-expanding archiving automatically adds storage space to a user's archive mailbox until it reaches the limit of 1.5 TB.
    • It can be enabled for the entire organization or specific users.
  2. Restrictions and Considerations:

    • Once enabled, auto-expanding archiving cannot be turned off.
    • Administrators can't adjust the storage quota for auto-expanding archiving.
    • Inactive mailboxes with auto-expanding archiving enabled cannot be recovered or restored conventionally.
  3. Administration Prerequisites:

    • Global administrator or a member of the Organization Management role group is required to enable auto-expanding archiving.
    • A user's mailbox must be enabled for archive before enabling auto-expanding archiving.
  4. Activation and Provisioning:

    • Auto-expanding archiving activates when the archive mailbox, including the Recoverable Items folder, reaches 90 GB.
    • It supports shared mailboxes.
    • The process is done via Exchange Online PowerShell, not through Exchange admin center or Microsoft Purview compliance portal.
  5. Enabling for the Entire Organization:

    • Connect to Exchange Online PowerShell and use the command Set-OrganizationConfig -AutoExpandingArchive to enable auto-expanding archiving for the entire organization.
  6. Enabling for Specific Users:

    • Connect to Exchange Online PowerShell and use the command Enable-Mailbox <user mailbox> -AutoExpandingArchive to enable auto-expanding archiving for specific users.
  7. Verification:

    • Use PowerShell commands to verify the status of auto-expanding archiving for the organization and individual users.
  8. Additional Information:

    • Auto-expanding archiving adds 10 GB to the storage quota of the user's primary archive mailbox and the Recoverable Items folder for users on hold.
    • Auto-expanding archiving is supported for cloud-based archive mailboxes in an Exchange hybrid deployment.
    • Outlook client requirements for accessing items in the auto-expanded archive are mentioned.
  9. Important Considerations:

    • Auto-expanding archiving is supported only for individual users or shared mailboxes with a growth rate not exceeding 1 GB per day.
    • It is not permitted to use journaling, transport rules, or auto-forwarding rules to copy messages to an archive mailbox for archiving purposes.
  10. Next Steps:

    • End users should be prepared for the changes after enabling their mailbox for auto-expanding archives.

This comprehensive approach to auto-expanding archiving demonstrates a thorough understanding of the topic and provides practical insights for implementing and managing this feature in Microsoft Exchange Online.

Enable auto-expanding archiving (2024)
Top Articles
Latest Posts
Article information

Author: Manual Maggio

Last Updated:

Views: 6349

Rating: 4.9 / 5 (69 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Manual Maggio

Birthday: 1998-01-20

Address: 359 Kelvin Stream, Lake Eldonview, MT 33517-1242

Phone: +577037762465

Job: Product Hospitality Supervisor

Hobby: Gardening, Web surfing, Video gaming, Amateur radio, Flag Football, Reading, Table tennis

Introduction: My name is Manual Maggio, I am a thankful, tender, adventurous, delightful, fantastic, proud, graceful person who loves writing and wants to share my knowledge and understanding with you.