Velvis
Well-Known Member
- Reaction score
- 46
- Location
- Medfield, MA
A client's archive mailbox is pushing 100gb. Is there a way to increase this?
When you do this, how are these archives accessed? Can they be searched? I know at one time there was an 'online archive' folder in Outlook that only pulled down content when you directed it to, but I don't have anyone doing this now - we've been doing offline auto-archiving to a PST for our pack-rat clients.It's "online archiving" only...doesn't stay offline in Outlook.
When you do this, how are these archives accessed? Can they be searched? I know at one time there was an 'online archive' folder in Outlook that only pulled down content when you directed it to, but I don't have anyone doing this now - we've been doing offline auto-archiving to a PST for our pack-rat clients.
Can the auto archiving be turned on from within m365 administration or does it require the powershell command stuff?Which specific license do they have? Either way, a license that has archiving, just enable auto archiving..it's done on the server side.
M365 Business Premium for example, will auto archiving by default another 100 gigs, and if you enable "auto expanding"..it'll go up to 1.5 TB. For a brief period they were advertising as "unlimited archiving"...but they kinda capped that. It's "online archiving" only...doesn't stay offline in Outlook.
Automatically Expanding Archiving can only be enabled via powershell. https://learn.microsoft.com/en-us/m...e-autoexpanding-archiving?view=o365-worldwideCan the auto archiving be turned on from within m365 administration or does it require the powershell command stuff?
Set-OrganizationConfig -AutoExpandingArchive
Enable-Mailbox <user mailbox> -AutoExpandingArchive
Get-Mailbox | Enable-Mailbox -AutoExpandingArchive
Get-Mailbox -Filter {ArchiveGuid -Eq "00000000-0000-0000-0000-000000000000" -AND RecipientTypeDetails -Eq "UserMailbox"} | Enable-Mailbox -Archive
Hahaha. I never put it that way out loud, but I'm with you there.I'm all for sucking $$ out of the stupid, just after I present them the sane option.
Well, apparently Outlook is just fine with one <50GB exchange account and 11 attached PSTs - that's the way my worst offender has been working for years. And it gets worse - he doesn't even use folders! Once he "deals with" an email, he deletes it, so all of those archive PSTs only have data in the sent items and deleted items folders. I shake my head every time I make out the invoice for spending time on his email.Every single exchange attached mailbox on a given account is shoved into the same OST file, and as such the local Outlook can only store 50GB total before it pukes.
This was very helpful thank you.Automatically Expanding Archiving can only be enabled via powershell. https://learn.microsoft.com/en-us/m...e-autoexpanding-archiving?view=o365-worldwide
It's a one line command once you're logged into the tenant
Code:Set-OrganizationConfig -AutoExpandingArchive
You can also enable the expanding archiving for an individual user with this
Code:Enable-Mailbox <user mailbox> -AutoExpandingArchive
Now... I get paranoid so when I flip the organization config switch I do this right afterward:
Code:Get-Mailbox | Enable-Mailbox -AutoExpandingArchive
That command just grabs all mailboxes and pushes the individual switch. New mailboxes get the default from the organization config.
Now after you do this you need to actually enable the archives, which can be done via the EAC.
![]()
Enable archive mailboxes for Microsoft 365
Learn how to enable or disable archive mailboxes to support your organization's message retention, eDiscovery, and hold requirements.learn.microsoft.com
You can also use powershell, the provided script to turn everyone on that isn't already on is very helpful
Code:Get-Mailbox -Filter {ArchiveGuid -Eq "00000000-0000-0000-0000-000000000000" -AND RecipientTypeDetails -Eq "UserMailbox"} | Enable-Mailbox -Archive
This was very helpful thank you.
How do I confirm that this users email is now set to auto expanding archiving ?
Get-Mailbox -Identity <email> | fl AutoExpandingArchiveEnabled