May 2013
Intermediate to advanced
504 pages
12h 2m
English
As you enable archive mailboxes for end users and set up retention policies, you may find that the default limitations configured for archive mailboxes do not meet your needs. In this recipe, you'll learn how to modify archive mailbox quotas using the Exchange Management Shell.
Set-Mailbox cmdlet:
Set-Mailbox dsmith -ArchiveQuota 10gb -ArchiveWarningQuota 8gb
Get-Mailbox cmdlet to retrieve the mailboxes that need to be updated and pipe the results to the Set-Mailbox cmdlet. For example, the following one-liner would update all the users in the DB01 database:Get-Mailbox -Database DB01 | Where-Object ...
Read now
Unlock full access