Последнее изменение раздела: 2011-04-21
When a mailbox is created in a tenant organization, it’s
assigned the default mailbox plan associated with that tenant's
service plan. After the mailbox is created, you may need to change
the mailbox plan for different members of an organization.
Looking for other management tasks related to managing tenant
organizations? Check out Managing Tenant
Organizations.
Prerequisites
Use the Shell to assign a mailbox
plan to several user accounts using the Filter parameter
Для выполнения этой процедуры Exchange должен работать
в режиме работы с несколькими клиентами. Дополнительные сведения
см. в разделе Общие сведения о среде Exchange 2010 с несколькими
клиентами (страница может быть на английском языке).
Примечание. |
You can’t use the EMC to assign a mailbox plan to several user
accounts using the Filter parameter. |
This example assumes that the target user accounts all
share a unique filterable attribute and that this attribute has the
same value. For example, you can use Title, Department, or Custom
Attribute1-15. For more information, see Создание фильтров в
командах получателя.
This example filters for all mailboxes in the Contoso
organization where the Department attribute contains the text
"corporate", and then applies the mailbox plan to the mailboxes
that meet the criteria.
|
Скопировать код |
Get-Mailbox -Organization Contoso -Filter {Department -like '*corporate*'} | Set-Mailbox -MailboxPlan Gold
|
For detailed syntax and parameter information, see
Get-Mailbox
or Set-Mailbox.
Use the Shell to assign a mailbox
plan to several user accounts using a list of specific
accounts
Для выполнения этой процедуры Exchange должен работать
в режиме работы с несколькими клиентами. Дополнительные сведения
см. в разделе Общие сведения о среде Exchange 2010 с несколькими
клиентами (страница может быть на английском языке).
Примечание. |
You can’t use the EMC to assign a mailbox plan to several user
accounts using a list of specific accounts. |
This example uses the text file C:\Shared
Files\Gold.txt to identify the users by their SMTP e-mail
addresses, and then applies the mailbox plan to those
mailboxes.
|
Скопировать код |
Get-Content "C:\Shared Files\Gold.txt" | Set-Mailbox -MailboxPlan Gold
|
For detailed syntax and parameter information, see
Set-Mailbox.
Use the Shell to assign a mailbox
plan to a single user account
Для выполнения этой процедуры Exchange должен работать
в режиме работы с несколькими клиентами. Дополнительные сведения
см. в разделе Общие сведения о среде Exchange 2010 с несколькими
клиентами (страница может быть на английском языке).
Примечание. |
You can’t use the EMC to assign a mailbox plan to a single user
account. |
This example assigns a mailbox plan to a single user
account.
|
Скопировать код |
Set-Mailbox -Identity ayla@contoso.com -MailboxPlan Gold
|
For detailed syntax and parameter information, see
Set-Mailbox.