Set-UMMailbox (RTM)
Microsoft Exchange Server 2007 will reach end of support on April 11, 2017. To stay supported, you will need to upgrade. For more information, see Resources to help you upgrade your Office 2007 servers and clients.
Applies to: Exchange Server 2007
The Set-UMMailbox cmdlet sets the Unified Messaging (UM) properties for a user who is currently UM-enabled.
Syntax
Set-UMMailbox -Identity <MailboxIdParameter> [-AllowUMCallsFromNonUsers <None | SearchEnabled>] [-AnonymousCallersCanLeaveMessages <$true | $false>] [-AutomaticSpeechRecognitionEnabled <$true | $false>] [-CallAnsweringAudioCodec <G711 | Wma | Gsm>] [-DisplayName <String>] [-DomainController <Fqdn>] [-FaxEnabled <$true | $false>] [-MissedCallNotificationEnabled <$true | $false>] [-Name <String>] [-OperatorNumber <String>] [-SubscriberAccessEnabled <$true | $false>] [-TUIAccessToAddressBookEnabled <$true | $false>] [-TUIAccessToCalendarEnabled <$true | $false>] [-TUIAccessToEmailEnabled <$true | $false>] [-UMMailboxPolicy <MailboxPolicyIdParameter>]
Set-UMMailbox [-AllowUMCallsFromNonUsers <None | SearchEnabled>] [-AnonymousCallersCanLeaveMessages <$true | $false>] [-AutomaticSpeechRecognitionEnabled <$true | $false>] [-CallAnsweringAudioCodec <G711 | Wma | Gsm>] [-DisplayName <String>] [-DomainController <Fqdn>] [-FaxEnabled <$true | $false>] [-Instance <UMMailbox>] [-MissedCallNotificationEnabled <$true | $false>] [-Name <String>] [-OperatorNumber <String>] [-SubscriberAccessEnabled <$true | $false>] [-TUIAccessToAddressBookEnabled <$true | $false>] [-TUIAccessToCalendarEnabled <$true | $false>] [-TUIAccessToEmailEnabled <$true | $false>] [-UMMailboxPolicy <MailboxPolicyIdParameter>]
Detailed Description
The Set-UMMailbox cmdlet lets you set UM properties that are associated with a user who has been UM-enabled. Many of the UM properties for the user are stored on the user’s mailbox, and other UM properties for the user are stored in Active Directory. This cmdlet can be used to set UM properties individually by using either the Identity parameter or the Instance parameter.
To run the Set-UMMailbox cmdlet, the account you use must be delegated the following:
- Exchange Recipient Administrator role
For more information about permissions, delegating roles, and the rights that are required to administer Exchange Server 2007, see Permission Considerations.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
Identity |
Required |
Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter |
This parameter specifies the user to enable for Unified Messaging. The variables for this parameter include the following:
This parameter is required if the Instance parameter is not used. |
AllowUMCallsFromNonUsers |
Optional |
Microsoft.Exchange.Data.Directory.Recipient.AllowUMCallsFromNonUsersFlags |
This parameter specifies whether to exclude the mailbox from directory searches. |
AnonymousCallersCanLeaveMessages |
Optional |
System.Boolean |
This parameter specifies whether diverted calls without a caller ID will be allowed to leave a message. |
AutomaticSpeechRecognitionEnabled |
Optional |
System.Boolean |
This parameter specifies whether the user can use Automatic Speech Recognition when they log on to their mailbox This parameter can only be set to |
CallAnsweringAudioCodec |
Optional |
Microsoft.Exchange.Data.Directory.SystemConfiguration.AudioCodecEnum |
This parameter specifies the audio codec to use for call answering messages. The default for the user's mailbox is the audio codec that is configured on the UM dial plan. |
DisplayName |
Optional |
System.String |
This parameter specifies the display name for the user. |
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
To specify the fully qualified domain name of the domain controller that writes this configuration change to the Active Directory directory service, include the DomainController parameter on the cmdlet. |
FaxEnabled |
Optional |
System.Boolean |
This parameter specifies whether a user is allowed to receive incoming faxes. |
Instance |
Optional |
Microsoft.Exchange.Data.Directory.Management.UMMailbox |
The Instance parameter specifies the object input parameter. The Instance parameter is required if the Identity parameter is not used. |
MissedCallNotificationEnabled |
Optional |
System.Boolean |
This parameter specifies whether to send missed call notifications. |
Name |
Optional |
System.String |
This parameter specifies the display name for the user. The display name is limited to 64 characters. |
OperatorNumber |
Optional |
System.String |
This parameter specifies the string of digits for the personal operator. |
SubscriberAccessEnabled |
Optional |
System.Boolean |
This parameter specifies whether the user is allowed subscriber access to their individual mailbox. If it is set to |
TUIAccessToAddressBookEnabled |
Optional |
System.Boolean |
This parameter specifies whether a user can access the directory and contact information over the telephone. |
TUIAccessToCalendarEnabled |
Optional |
System.Boolean |
This parameter specifies whether a user can access their individual calendaring over the telephone. |
TUIAccessToEmailEnabled |
Optional |
System.Boolean |
This parameter specifies whether a user can access their individual e-mail over the telephone. |
UMMailboxPolicy |
Optional |
Microsoft.Exchange.Configuration.Tasks.MailboxPolicyIdParameter |
This parameter specifies the UM mailbox policy that is associated with the UM-enabled user's mailbox. |
Input Types
Type | Description |
---|---|
|
|
Return Types
Type | Description |
---|---|
|
|
Errors
Error | Description |
---|---|
|
|
Example
The first example modifies the secondary address and UM dial plan for yanli@contoso.com.
The second example prevents the user from accessing their calendar and e-mail when they are using Outlook Voice Access.
The third example modifies the properties of a UM mailbox for yanli@contoso.com.
Set-UMMailbox -Identity yanli@contoso.com
Set-UMMailbox -Identity yanli@contoso.com -TUIAccessToCalendarEnabled $false -TUIAccessToEmailEnabled $false
Set-UMMailbox -Identity yanli@contoso.com -UMMailboxPolicy MyUMMailboxPolicy -FaxEnabled $true