Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2012-11-16

Use the Get-TextMessagingAccount cmdlet to return a user's short messaging service (SMS) settings.

Syntax

Get-TextMessagingAccount -Identity <MailboxIdParameter> [-Credential <PSCredential>] [-DomainController <Fqdn>] [-ReadFromDomainController <SwitchParameter>] [-ResultSize <Unlimited>]

Detailed Description

The Get-TextMessagingAccount cmdlet gets the SMS settings for a particular user. These settings include whether Microsoft Exchange ActiveSync is enabled, the user's country or region ID, mobile operator ID, service provider ID, and notification phone number.

You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Text messaging settings" entry in the Client Access Permissions topic.

Parameters

Parameter Required Type Description

Identity

Required

Microsoft.Exchange.Configuration.Tasks.MailboxIdParameter

The Identity parameter specifies the identity of the mailbox.

Credential

Optional

System.Management.Automation.PSCredential

The Credential parameter specifies the logon credentials of the user.

DomainController

Optional

Microsoft.Exchange.Data.Fqdn

The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory.

ReadFromDomainController

Optional

System.Management.Automation.SwitchParameter

The ReadFromDomainController parameter specifies whether the cmdlet should return data from the domain controller.

ResultSize

Optional

Microsoft.Exchange.Data.Unlimited

The ResultSize parameter specifies the amount of data returned.

Input Types

To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.

Return Types

To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.

Examples

EXAMPLE 1

This example returns the text messaging settings for Tony Smith's mailbox using his alias.

Copy Code
Get-TextMessagingAccount -Identity "TonySmith" -DomainController server.contoso.com

EXAMPLE 2

This example returns the text messaging settings for Tony Smith's mailbox using his domain and username.

Copy Code
Get-TextMessagingAccount -Identity "contoso\tonysmith" -DomainController DC1.contoso.com

EXAMPLE 3

This example returns the text messaging settings for Tony Smith's mailbox using his e-mail address.

Copy Code
Get-TextMessagingAccount -Identity "tony@contoso.com" -DomainController gc.contoso.com