Wednesday, 3 June 2026

Microsoft 365 E3 Enable Auto-Expanding Archiving (EMAIL 100GB)

 

microsoft 365 E3 Enable Auto-Expanding Archiving
Copilot said:
Copilot

Here’s a clear, admin-focused explanation + steps for enabling Auto‑Expanding Archiving in Microsoft 365 E3:


✅ What is Auto‑Expanding Archiving (E3)

  • Automatically adds more storage to the archive mailbox when it gets full
  • Starts at ~100 GB archive → grows up to ~1.5 TB per user
  • Expansion happens when archive reaches around 90 GB

👉 Result: users never run out of archive space


⚠️ Important before enabling

  • ✅ User must already have Archive Mailbox enabled
  • ✅ Requires E3 / E5 / Exchange Online Plan 2
  • ❗ Cannot be disabled after enabled
  • ❗ Must use PowerShell (NOT Admin Center GUI)

🔧 How to Enable (Step-by-Step)

1. Connect to Exchange Online

PowerShell
Connect-ExchangeOnline -UserPrincipalName admin@yourdomain.com

2. Enable for ONE user

PowerShell
Enable-Mailbox -Identity user@yourdomain.com -AutoExpandingArchive

3. Enable for ALL users (organization-wide)

PowerShell
Set-OrganizationConfig -AutoExpandingArchive $true

(Optional: apply to existing users)

PowerShell
Get-Mailbox -Filter {ArchiveStatus -eq "Active"} |
ForEach-Object {
Enable-Mailbox -Identity $_.PrimarySmtpAddress -AutoExpandingArchive
}

4. Verify status

PowerShell
Get-Mailbox -Identity user@yourdomain.com | FL AutoExpandingArchiveEnabled

👉 Should show:

AutoExpandingArchiveEnabled : True

📊 What happens after enabling

SituationBeforeAfter
Archive fullStops at ~100 GBAuto grows
Max storageLimited~1.5 TB
Admin workManual cleanupAutomatic
User impactMailbox full riskNo storage issues

⏱️ Behavior after enabling

  • Extra storage is NOT immediate
  • It expands gradually when needed (can take days/weeks)

✅ Simple summary

Enable Auto‑Expanding Archiving =
Archive mailbox grows automatically up to ~1.5 TB, no more “mailbox full”.


If you want, I can show you: ✅ how to auto-move emails (e.g. older than 1 year → archive)
✅ or check which users are already using archive space