Creating a Shared Mailbox in Exchange 2007

Open Exchange Management Shell and execute the New-Mailbox cmdlet using the following example as a template:
ps_shared_mailbox

New-Mailbox -Alias "MySharedMailbox" -Name "My Shared Mailbox" -Database "MAIL1\First Storage Group\Mailbox Database" -OrganizationalUnit "mikefrobbins.demo/My OU/Users/Mailbox" -Shared -UserPrincipalName "mysharedmailbox@mikefrobbins.demo"

The following cmdlet assigns full access for the mailbox to a group in Active Directory named “My Shared Mailbox Admins” which needs to exist in AD prior to executing this command:
ps_mailbox_rights

Get-Mailbox -Identity "My Shared Mailbox" | Add-MailboxPermission -User "My Shared Mailbox Admins" -AccessRights "FullAccess"

This cmdlet allows members of the “My Shared Mailbox Admins” group in Active Directory to be able to send email from the “mysharedmailbox@mikefrobbins.demo” email account:
ps_mailbox_sendas

Get-Mailbox -Identity "My Shared Mailbox" | Add-ADPermission -User "My Shared Mailbox Admins" -AccessRights: ReadProperty, WriteProperty -Properties "Personal Information" -ExtendedRights "Send-As"

Once these steps are completed, any AD user who is added to the “My Shared Mailbox Admins” group in AD will be able to open the “mysharedmailbox” and send email from this account.

µ

About Mike F Robbins

Senior Systems Engineer and Technology Consultant with over sixteen years of professional experience providing enterprise computing solutions for educational, financial, healthcare, and manufacturing customers.
This entry was posted in Exchange Server 2007. Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

Gravatar
WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s