Skip to content

Commit 44ad0e1

Browse files
committed
Updates to *-TextMessagingAccount cmdlets
Per Issue #3146
1 parent c8609ff commit 44ad0e1

File tree

4 files changed

+270
-192
lines changed

4 files changed

+270
-192
lines changed

exchange/exchange-ps/exchange/client-access/Clear-TextMessagingAccount.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ For information about the parameter sets in the Syntax section below, see Exchan
2121
## SYNTAX
2222

2323
```
24-
Clear-TextMessagingAccount [-Identity] <MailboxIdParameter> [-Confirm] [-DomainController <Fqdn>]
25-
[-IgnoreDefaultScope] [-WhatIf] [<CommonParameters>]
24+
Clear-TextMessagingAccount [-Identity] <MailboxIdParameter>
25+
[-Confirm]
26+
[-DomainController <Fqdn>]
27+
[-IgnoreDefaultScope]
28+
[-WhatIf] [<CommonParameters>]
2629
```
2730

2831
## DESCRIPTION

exchange/exchange-ps/exchange/client-access/Get-TextMessagingAccount.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,23 @@ monikerRange: "exchserver-ps-2010 || exchserver-ps-2013 || exchserver-ps-2016 ||
1414
## SYNOPSIS
1515
This cmdlet is available in on-premises Exchange and in the cloud-based service. Some parameters and settings may be exclusive to one environment or the other.
1616

17-
Use the Get-TextMessagingAccount cmdlet to return a user's Short Message Service (SMS) settings.
17+
Use the Get-TextMessagingAccount cmdlet to view the text notification settings on mailboxes.
1818

1919
For information about the parameter sets in the Syntax section below, see Exchange cmdlet syntax (https://technet.microsoft.com/library/bb123552.aspx).
2020

2121
## SYNTAX
2222

2323
```
24-
Get-TextMessagingAccount [-Identity] <MailboxIdParameter> [-Credential <PSCredential>]
25-
[-DomainController <Fqdn>] [-ReadFromDomainController] [-ResultSize <Unlimited>] [<CommonParameters>]
24+
Get-TextMessagingAccount [-Identity] <MailboxIdParameter>
25+
[-Credential <PSCredential>]
26+
[-DomainController <Fqdn>]
27+
[-ReadFromDomainController]
28+
[-ResultSize <Unlimited>]
29+
[<CommonParameters>]
2630
```
2731

2832
## DESCRIPTION
29-
The Get-TextMessagingAccount cmdlet displays the SMS settings for a specific user. These settings include whether Exchange ActiveSync is enabled, the user's country or region ID, mobile operator ID, service provider ID and notification phone number.
33+
When text messaging notifications are enabled on a mailbox, you can configure calendar notifications, voice mail notifications, and email notifications using an inbox rule.
3034

3135
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see Find the permissions required to run any Exchange cmdlet (https://technet.microsoft.com/library/mt432940.aspx).
3236

exchange/exchange-ps/exchange/client-access/Set-TextMessagingAccount.md

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,20 @@ For information about the parameter sets in the Syntax section below, see Exchan
2121
## SYNTAX
2222

2323
```
24-
Set-TextMessagingAccount [-Identity] <MailboxIdParameter> [-Confirm] [-CountryRegionId <RegionInfo>]
25-
[-DomainController <Fqdn>] [-IgnoreDefaultScope] [-MobileOperatorId <Int32>]
26-
[-NotificationPhoneNumber <E164Number>] [-WhatIf] [<CommonParameters>]
24+
Set-TextMessagingAccount [-Identity] <MailboxIdParameter>
25+
[-Confirm]
26+
[-CountryRegionId <RegionInfo>]
27+
[-DomainController <Fqdn>]
28+
[-IgnoreDefaultScope]
29+
[-MobileOperatorId <Int32>]
30+
[-NotificationPhoneNumber <E164Number>]
31+
[-WhatIf] [<CommonParameters>]
2732
```
2833

2934
## DESCRIPTION
30-
The Set-TextMessagingAccount cmdlet configures a user's account for text messaging notifications. You can configure several settings, including the mobile phone number and country or region ID.
35+
When text messaging notifications are enabled on a mailbox, you can configure calendar notifications, voice mail notifications, and email notifications using an inbox rule.
36+
37+
To clear the text messaging settings from your own mailbox, use the Clear-TextMessagingAccount parameter.
3138

3239
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see Find the permissions required to run any Exchange cmdlet (https://technet.microsoft.com/library/mt432940.aspx).
3340

@@ -108,7 +115,13 @@ Accept wildcard characters: False
108115
```
109116
110117
### -CountryRegionId
111-
The CountryRegionId parameter specifies the country or region in which the user's mobile operator resides.
118+
The CountryRegionId parameter specifies the country that your mobile phone is registered in. Although this parameter accepts any valid ISO 3166-1 alpha-2 country code value, the following values correspond to the country selections that are available in the text messaging settings in Outlook on the web (formerly known as Outlook Web App):
119+
120+
- US
121+
122+
- CA
123+
124+
- RO
112125
113126
Valid input for this parameter is a supported culture code value from the Microsoft .NET Framework CultureInfo class. For example, da-DK for Danish or ja-JP for Japanese. For more information, see CultureInfo Class (https://go.microsoft.com/fwlink/p/?linkId=184859).
114127
@@ -163,7 +176,27 @@ Accept wildcard characters: False
163176
```
164177
165178
### -MobileOperatorId
166-
The MobileOperatorId parameter specifies the mobile operator ID for the user.
179+
The MobileOperatorId parameter specifies the mobile operator (carrier) for your phone. Although this parameter accepts any random number, the following values correspond to the country and mobile operator selections that are available in the text messaging settings in Outlook on the web (formerly known as Outlook Web App):
180+
181+
United States:
182+
183+
- AT&T: 15001
184+
185+
- Sprint PCS: 15004
186+
187+
- T-Mobile: 15005
188+
189+
- Verizon Wireless: 15006
190+
191+
Canada:
192+
193+
- Bell: 17001
194+
195+
- Telus Mobility: 17002
196+
197+
Romania:
198+
199+
- Orange Romania: 18001
167200
168201
```yaml
169202
Type: Int32
@@ -178,7 +211,7 @@ Accept wildcard characters: False
178211
```
179212
180213
### -NotificationPhoneNumber
181-
The NotificationPhoneNumber parameter specifies the telephone number to use for text messaging notifications.
214+
The NotificationPhoneNumber parameter specifies the telephone number to use for your text messaging notifications. This parameter uses the E.164 format: +\<CountryCode\>\<CompleteTelephoneNumber\> (for example, +15551234567).
182215
183216
```yaml
184217
Type: E164Number

0 commit comments

Comments
 (0)