Force Exchange Online Archiving to start archiving email on Office 365

Force Exchange Online Archiving to start archiving email on Office 365

When you enable Exchange Online Archiving for a user on Office 365, it can take 24 hours or more for the Managed Folder Assistant to start it’s first run and begin archiving email out of the primary mailbox.

Edit: If you’re using the Exchange Online v2 PowerShell module, then this process is considerably simpler, and supports Modern Authentication.

Connect-ExchangeOnline

Start-ManagedFolderAssistant -Identity user@example.com

If you want this process to start immediately, connect to Office 365 with PowerShell and tell the Managed Folder Assistant to start running.

$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session

Start-ManagedFolderAssistant -Identity user@example.com

Then wait 5 minutes or so for it to begin running and check the progress via logging in to OWA and looking at either the contents of the In-Place Archive mailbox in the left-hand sidebar or via the Exchange Admin Centre > Mailboxes > Recipients > In-Place Archive > View details.


    • Related Articles

    • Planner Change of Ownership

      Go to Office 365 admin center > admin centers> Exchange In the Exchange admin center > Recipients > groups > select the plan group > edit > ownership to change the owner of the group, this will also change the owner of the plan.
    • How to Setup Office 365 on your Mobile Device

      Here is a nice link to show you how to setup your Office 365 Subscription on your Mobile Device https://support.office.com/en-us/article/Set-up-Office-apps-and-email-on-a-mobile-device-7dabb6cb-0046-40b6-81fe-767e0b1f014f
    • Online Off Site Backup

      How Secure Will My Data Be? Only you have access to the data you store in the Acronis Data Center. Acronis Data Centers identify all the incoming data with your Acronis account number. Only you can access the data, whether you are backing up or ...
    • Delegated Email Box - Creating Rules

      Open the shared mailbox in a separate browser window Use this method if you want to view and manage the email rules for the shared mailbox in its own browser window. Sign in to your account in Outlook on the web. On the Outlook on the web navigation ...
    • Office 365 won't log in without EnableADAL = 0

      We've been experiencing an issue with our Outlook clients after a user is upgraded from Office 2016 Standalone to Office 365 Business: After the click-to-run installer is complete, and often after a reboot, Outlook will show the splash screen when ...