Manage Mailboxes
Problem
You want to get and modify information about mailboxes from the Exchange Management Shell.
Solution
To retrieve information about a mailbox (or multiple mailboxes), use the GetMailbox cmdlet:
$user = GetMailbox *preeda*
$user | FormatList * To modify information about a mailbox, use the SetMailbox cmdlet. This example prevents Preeda from sending mail when her mailbox goes over 2 GB, and then verifies it:
$user | SetMailbox –ProhibitSendQuota 2GB $user | GetMailbox
Discussion
- Read more about Manage Mailboxes
- Log in or register to post comments