Applies to: Exchange Server 2013

Topic Last Modified: 2012-07-04

Use the Get-TextMessagingAccount cmdlet to return a user's Short Message Service (SMS) settings.

For information about the parameter sets in the Syntax section below, see Syntax.

Syntax

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

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 email address.

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

Detailed Description

The Get-TextMessagingAccount cmdlet displays the SMS settings for a specific 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 Clients and Mobile Devices 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

This parameter requires the creation and passing of a credential object. This credential object is created by using the Get-Credential cmdlet. For more information, see Get-Credential.

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 returns 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.