Skip to content

Commit d10e5a7

Browse files
authored
Merge pull request MicrosoftDocs#7050 from get-itips/patch-304
Improving descriptions
2 parents bccc9ef + bead1cd commit d10e5a7

File tree

3 files changed

+14
-24
lines changed

3 files changed

+14
-24
lines changed

skype/skype-ps/skype/Get-CsTenantDialPlan.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can use the Get-CsTenantDialPlan cmdlet to retrieve specific information abo
4242
Get-CsTenantDialPlan
4343
```
4444

45-
This example retrieves a tenant dial plan.
45+
This example retrieves all existing tenant dial plans.
4646

4747

4848

@@ -51,7 +51,7 @@ This example retrieves a tenant dial plan.
5151
Get-CsTenantDialPlan -Identity Vt1TenantDialPlan2
5252
```
5353

54-
This example retrieves the tenant dial plan that is within the scope of Vt1TenantDialplan2.
54+
This example retrieves the tenant dial plan that has an identity of Vt1TenantDialplan2.
5555

5656

5757
## PARAMETERS
@@ -73,7 +73,7 @@ Accept wildcard characters: False
7373
```
7474
7575
### -Identity
76-
The Identity parameter is a unique identifier that designates the scope, and for per-user scope a name, which identifies the tenant dial plan to retrieve.
76+
The Identity parameter is a unique identifier that designates the name of the tenant dial plan to retrieve.
7777
7878
```yaml
7979
Type: XdsIdentity

skype/skype-ps/skype/New-CsTenantDialPlan.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Accept wildcard characters: False
9090
9191
### -Description
9292
The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to and any other information that helps to identify the purpose of the tenant dial plan.
93-
Maximum characters: 512.
93+
Maximum characters: 1040.
9494
9595
```yaml
9696
Type: String
@@ -110,8 +110,7 @@ The ExternalAccessPrefix parameter is a number (or set of numbers) that designat
110110
(For example, to tenant-dial an outside line, first press 9.) This prefix is ignored by the normalization rules, although these rules are applied to the remainder of the number.
111111
112112
The OptimizeDeviceDialing parameter must be set to True for this value to take effect.
113-
This parameter must match the regular expression \[0-9\]{1,4}: that is, it must be a value 0 through 9 and one to four digits in length.
114-
The default value is 9.
113+
The value of this parameter must be no longer than 4 characters long and can contain only digits, "#" or a "*".
115114
116115
```yaml
117116
Type: String
@@ -202,18 +201,13 @@ Accept wildcard characters: False
202201
203202
### -SimpleName
204203
The SimpleName parameter is a display name for the tenant dial plan.
205-
This name must be unique among all tenant dial plans within the Skype for Business Server deployment.
204+
This name must be unique among all tenant dial plans.
206205
207206
This string can be up to 49 characters long.
208207
Valid characters are alphabetic or numeric characters, hyphen (-), dot (.) and parentheses (()).
209208
210209
This parameter must contain a value.
211-
However, if you don't provide a value, a default value will be supplied.
212-
The default value for a Global tenant dial plan is Prefix All.
213-
The default value for a site-level tenant dial plan is the name of the site.
214-
The default value for a service is the name of the service (Registrar or PSTN gateway) followed by an underscore, followed by the service fully qualified domain name (FQDN).
215-
For example: Registrar_pool0.litwareinc.com.
216-
The default value for a per-user tenant dial plan is the Identity of the tenant dial plan.
210+
However, if you don't provide a value, a default value matching the Identity of the tenant dial plan will be supplied.
217211
218212
```yaml
219213
Type: String

skype/skype-ps/skype/Set-CsTenantDialPlan.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ This example updates the vt1tenantDialPlan9 tenant dial plan to use an external
5151

5252
### -------------------------- Example 2 --------------------------
5353
```
54-
$nr2 = Get-CsVoiceNormalizationRule -Identity Global/NR2
54+
$nr2 = Get-CsVoiceNormalizationRule -Identity "US/US Long Distance"
5555
5656
Set-CsTenantDialPlan -ExternalAccessPrefix "123" -Identity vt1tenantDialPlan9 -NormalizationRules @{Add=$nr2}
5757
```
5858

59-
This example updates the vt1tenantDialPlan9 tenant dial plan to have an external access prefix of 123 and use the Global/NR2 normalization rules.
59+
This example updates the vt1tenantDialPlan9 tenant dial plan to have an external access prefix of 123 and use the US/US Long Distance normalization rules.
6060

6161

6262
## PARAMETERS
@@ -79,7 +79,7 @@ Accept wildcard characters: False
7979
8080
### -Description
8181
The Description parameter describes the tenant dial plan - what it's for, what type of user it applies to or any other information that helps to identify the purpose of the tenant dial plan.
82-
Maximum characters is 512.
82+
Maximum characters is 1040.
8383
8484
```yaml
8585
Type: String
@@ -99,8 +99,7 @@ The ExternalAccessPrefix parameter is a number (or set of numbers) that designat
9999
(For example, to tenant-dial an outside line, first dial 9). This prefix is ignored by the normalization rules, although these rules will be applied to the rest of the number.
100100
The OptimizeDeviceDialing parameter must be set to True for this value to take effect.
101101
102-
The value of this parameter must match the regular expression \[0-9\]{1,4}.
103-
This means it must be a value one to four digits in length, with each digit being a number 0 through 9.
102+
The value of this parameter must be no longer than 4 characters long and can contain only digits, "#" or a "*".
104103
105104
```yaml
106105
Type: String
@@ -134,10 +133,7 @@ Accept wildcard characters: False
134133
```
135134
136135
### -Identity
137-
The Identity parameter is a unique identifier that designates the scope, or for per-user plans a name, to identify the tenant dial plan to modify.
138-
For example, a site Identity is in the format site:\<sitename\>, where sitename is the name of the site.
139-
A tenant dial plan at the service scope is a Registrar or PSTN gateway service, where the Identity value is formatted in this way: Registrar:Redmond.litwareinc.com.
140-
A per-user Identity is a unique string value.
136+
The Identity parameter is a unique identifier that designates the name of the tenant dial plan to modify.
141137
142138
```yaml
143139
Type: XdsIdentity
@@ -207,9 +203,9 @@ Accept wildcard characters: False
207203

208204
### -SimpleName
209205
The SimpleName parameter is a display name for the tenant dial plan.
210-
This name must be unique among all tenant dial plans within the Skype for Business Server deployment.
206+
This name must be unique among all tenant dial plans.
211207

212-
This string can be up to 256 characters long.
208+
This string can be up to 49 characters long.
213209
Valid characters are alphabetic or numeric characters, hyphen (-), dot (.) and parentheses (()).
214210

215211
```yaml

0 commit comments

Comments
 (0)