Skip to content

Commit f04bca9

Browse files
authored
Merge pull request MicrosoftDocs#9056 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents 9b221dd + 81993ad commit f04bca9

12 files changed

+52
-55
lines changed

skype/skype-ps/skype/Add-CsSlaDelegates.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,12 @@ Accept wildcard characters: False
6363
### -Identity
6464
Indicates the identity of the shared number to which the delegate will be added.
6565
User identities can be specified using one of five formats:
66-
- SIP address
67-
- Example: sip:[email protected]
68-
- User principal name (UPN)
69-
- Example: [email protected]
70-
- Domain name and logon name in the form domain\logon
71-
- Example: litwareinc\kenmyer
72-
- Active Directory display name (this form typically requires quotes)
73-
- Example: "Ken Myer"
74-
- Active Directory distinguished name
75-
- Example: CN=KenMyer,CN=Users,DC=Atlanta,DC=Corp,DC=litware,DC=com
66+
67+
- SIP address: Example. sip:[email protected].
68+
- User principal name (UPN). Example: [email protected].
69+
- Domain name and logon name in the form domain\logon. Example: litwareinc\kenmyer.
70+
- Active Directory display name (this form typically requires quotes). Example: "Ken Myer".
71+
- Active Directory distinguished name. Example: CN=KenMyer,CN=Users,DC=Atlanta,DC=Corp,DC=litware,DC=com
7672
7773
```yaml
7874
Type: UserIdParameter

skype/skype-ps/skype/Export-CsAutoAttendantHolidays.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,17 @@ The Export-CsAutoAttendantHolidays cmdlet and the Import-CsAutoAttendantHolidays
2727
The Export-CsAutoAttendantHolidays cmdlet returns the holiday schedule information in serialized form (as a byte array). The caller can then write the bytes to the disk to obtain a CSV file. Similarly, the Import-CsAutoAttendantHolidays cmdlet accepts the holiday schedule information as a byte array, which can be read from the aforementioned CSV file. The first line of the CSV file is considered a header record and is always ignored.
2828

2929
**NOTE**
30-
- Each line in the CSV file used by Export-CsAutoAttendantHolidays and Import-CsAutoAttendantHolidays cmdlet should be of the following format:
3130

32-
`HolidayName,StartDateTime1,EndDateTime1,StartDateTime2,EndDateTime2,...,StartDateTime10,EndDateTime10`
31+
Each line in the CSV file used by Export-CsAutoAttendantHolidays and Import-CsAutoAttendantHolidays cmdlet should be of the following format:
32+
33+
`HolidayName,StartDateTime1,EndDateTime1,StartDateTime2,EndDateTime2,...,StartDateTime10,EndDateTime10`
34+
35+
where
36+
37+
- HolidayName is the name of the holiday to be imported.
38+
- StartDateTimeX and EndDateTimeX specify a date/time range for the holiday and are optional. If no date-time ranges are defined, then the holiday is imported without any date/time ranges. They follow the same format as New-CsOnlineDateTimeRange cmdlet.
39+
- EndDateTimeX is optional. If it is not specified, the end bound of the date time range is set to 00:00 of the day after the start date.
3340

34-
where
35-
- HolidayName is the name of the holiday to be imported.
36-
- StartDateTimeX and EndDateTimeX specify a date/time range for the holiday and are optional. If no date-time ranges are defined, then the holiday is imported without any date/time ranges. They follow the same format as New-CsOnlineDateTimeRange cmdlet.
37-
- EndDateTimeX is optional. If it is not specified, the end bound of the date time range is set to 00:00 of the day after the start date.
3841
- The first line of the CSV file is considered a header record and is always ignored by Import-CsAutoAttendantHolidays cmdlet.
3942
- If the destination auto attendant for the import already contains a call flow or schedule by the same name as one of the holidays being imported, the corresponding CSV record is skipped.
4043
- For holidays that are successfully imported, a default call flow is created which is configured without any greeting and simply disconnects the call on being executed.

skype/skype-ps/skype/Get-CsOnlineUser.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ For example, a filter that returns only users who have been enabled for Enterpri
159159

160160
The following updates are applicable for TeamsOnly customers using Microsoft Teams PowerShell version 3.0.0 and above.
161161

162-
*Supported filters*
162+
*Supported filters*:
163163

164164
The Filtering functionality has been limited to the following attributes:
165165

@@ -216,7 +216,7 @@ The Filtering functionality has been limited to the following attributes:
216216
- CountryAbbreviation
217217
- UsageLocation
218218

219-
*Attributes renamed*
219+
*Attributes renamed*:
220220

221221
- ObjectId renamed to Identity
222222
- FirstName renamed to GivenName
@@ -225,28 +225,29 @@ The Filtering functionality has been limited to the following attributes:
225225
- Enabled renamed to IsSipEnabled
226226
- TeamsBranchSurvivabilityPolicy renamed to TeamsSurvivableBranchAppliancePolicy
227227

228-
*Attributes that have changed in meaning/format*
228+
*Attributes that have changed in meaning/format*:
229229

230230
**OnPremLineURI**: This attribute previously used to refer to both:
231+
231232
1. LineURI set via OnPrem AD.
232233
2. Direct Routing numbers assigned to users via Set-CsUser.
233234

234235
In Teams PowerShell Modules 3.0.0 and above OnPremLineURI will only refer to the LineURI set via OnPrem AD. Direct Routing numbers will be available from the LineURI field. Direct Routing Numbers can be distinguished from Calling Plan Numbers by looking at the FeatureTypes attribute.
235236

236-
**- The output format of AssignedPlan and ProvisionedPlan have now changed from XML to JSON array.**
237-
**- The output format of Policies has now changed from String to JSON type UserPolicyDefinition.**
237+
- **The output format of AssignedPlan and ProvisionedPlan have now changed from XML to JSON array.**
238+
- **The output format of Policies has now changed from String to JSON type UserPolicyDefinition.**
238239

239-
*Changes in "-Filter" parameter*
240+
*Changes in "-Filter" parameter*:
240241

241-
- AssignedPlan filter: The previous format will no longer be supported. Existing filters like `AssignedPlan -eq '<some-xml-string>'` will stop working. This needs to be modified to one of the following formats:
242-
- ``AssignedPlan -eq "*MCO"`` Returns all users having an AssignedPlan that ends with MCO
243-
- ``AssignedPlan -eq "MCO*" `` Returns all users having an AssignedPlan that starts with MCO
244-
- ``AssignedPlan -eq "*MCO*" `` Returns all users having an AssignedPlan that contains MCO
242+
AssignedPlan filter: The previous format will no longer be supported. Existing filters like `AssignedPlan -eq '<some-xml-string>'` will stop working. This needs to be modified to one of the following formats:
245243

244+
- ``AssignedPlan -eq "*MCO"`` Returns all users having an AssignedPlan that ends with MCO
245+
- ``AssignedPlan -eq "MCO*" `` Returns all users having an AssignedPlan that starts with MCO
246+
- ``AssignedPlan -eq "*MCO*" `` Returns all users having an AssignedPlan that contains MCO
246247

247-
*Dropped Filter operators*
248+
*Dropped Filter operators*:
248249

249-
The following filter syntaxes are not supported in Teams PowerShell Moduled 3.0.0 and above:
250+
The following filter syntaxes are not supported in Teams PowerShell Module 3.0.0 and above:
250251

251252
- ``-not (<simple/complex PS filter>)``
252253
- ``<property> -like '*<text>'``
@@ -272,8 +273,8 @@ Accept wildcard characters: False
272273
Indicates the Identity of the user account to be retrieved.
273274
User Identities can be specified using one of the following formats: 1) the user's SIP address; 2) the user's user principal name (UPN); or, 3) the user's Active Directory display name (for example, Ken Myer).
274275

275-
You can use the asterisk ( * ) wildcard character when using the Display Name as the user Identity.
276-
For example, the Identity "* Smith" returns all the users who have a display name that ends with the string value " Smith".
276+
You can use the asterisk ( \* ) wildcard character when using the Display Name as the user Identity.
277+
For example, the Identity "\* Smith" returns all the users who have a display name that ends with the string value " Smith".
277278

278279
Note that in Microsoft Teams PowerShell Version 2.5.1, using this parameter will cause the Get-CsOnlineUser command to no longer emit deprecated properties as part of the modernization effort.
279280

skype/skype-ps/skype/New-CsCallingLineIdentity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ This example creates a new Caller ID policy that sets the Caller ID to a specifi
5151

5252
### -------------------------- Example 3 --------------------------
5353
```
54-
New-CsCallingLineIdentity -Identity Anonymous -Description "anonymous policy" -CallingIDSubstitute Anonymous -EnableUserOverride $false -BlockIncomingPstnCallerID $true
54+
New-CsCallingLineIdentity -Identity Anonymous -Description "anonymous policy" -CallingIDSubstitute Anonymous -EnableUserOverride $false -BlockIncomingPstnCallerID $true
5555
```
5656

5757
This example creates a new Caller ID policy that blocks the incoming Caller ID.
5858

5959
### Example 4
6060
```
6161
$ObjId = (Get-CsOnlineApplicationInstance -Identity [email protected]).ObjectId
62-
New-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -EnableUserOverride $false -ResourceAccount $ObjId -CompanyName "Contoso"
62+
New-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -EnableUserOverride $false -ResourceAccount $ObjId -CompanyName "Contoso"
6363
```
6464

6565
This example creates a new Caller ID policy that sets the Caller ID to the phone number of the specified resource account and sets the Calling party name to Contoso

skype/skype-ps/skype/New-CsExternalAccessPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ Note that this new policy sets both the EnableFederationAccess and the EnableOut
8484

8585
### -------------------------- Example 2 ------------------------
8686
```
87-
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $true
88-
New-CsExternalAccessPolicy -Identity AcsFederationNotAllowed -EnableAcsFederationAccess $false
87+
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $true
88+
New-CsExternalAccessPolicy -Identity AcsFederationNotAllowed -EnableAcsFederationAccess $false
8989
```
9090

9191
In this example, the Global policy is updated to allow Teams-ACS federation for all users, then a new external access policy instance is created with Teams-ACS federation disabled and which can then be assigned to selected users for which Team-ACS federation will not be allowed.

skype/skype-ps/skype/New-CsInboundExemptNumberPattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ New-CsInboundExemptNumberPattern [-Tenant <Guid>] -Name <String> [-Enabled <Bool
3636
### EXAMPLE 1
3737

3838
```powershell
39-
PS C:> New-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$" -Description "Allow Contoso helpdesk" -Enabled $True
39+
PS C:> New-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$" -Description "Allow Contoso helpdesk" -Enabled $True
4040
```
4141

4242
Creates a new inbound exempt number pattern for the numbers 1 (312) 555-88882 and 1 (312) 555-88883 and enables it

skype/skype-ps/skype/New-CsOnlineDateTimeRange.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ New-CsOnlineDateTimeRange -Start <String> [-End <String>] [-Tenant <Guid>] [<Com
2424
## DESCRIPTION
2525
The New-CsOnlineDateTimeRange cmdlet creates a new date-time range to be used with the Organizational Auto Attendant (OAA) service. Date time ranges are used to form schedules.
2626

27-
**NOTE**
27+
**NOTE**:
28+
2829
- The start bound of the range must be less than its end bound.
2930
- The time part of the range must be aligned with 30/60-minutes boundaries.
3031
- A date time range bound can only be input in the following formats:

skype/skype-ps/skype/New-CsTeamsUpgradePolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ Notes:
3838
### Example 1: Create a site-level policy
3939

4040
```powershell
41-
PS C:\> new-CsTeamsUpgradePolicy -identity site:Redmond1 -NotifySfBUsers $true
41+
PS C:\> new-CsTeamsUpgradePolicy -identity site:Redmond1 -NotifySfBUsers $true
4242
```
4343

4444
This creates a policy for users in the site Redmond1.
4545

4646
### Example 2: Create a policy not specific to a site.
4747

4848
```powershell
49-
PS C:\> new-CsTeamsUpgradePolicy -identity EnableNotifications -NotifySfBUsers $true
49+
PS C:\> new-CsTeamsUpgradePolicy -identity EnableNotifications -NotifySfBUsers $true
5050
```
5151

5252
This creates a policy for users that can be granted as desired to individual users

skype/skype-ps/skype/Remove-CsSlaDelegates.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,12 @@ Accept wildcard characters: False
6363
6464
### -Identity
6565
Indicates the identity of the shared number to which the delegate will be removed. User identities can be specified using one of five formats:
66-
- SIP address
67-
- Example: sip:[email protected]
68-
- User principal name (UPN)
69-
- Example: [email protected]
70-
- Domain name and logon name in the form domain\logon
71-
- Example: litwareinc\kenmyer
72-
- Active Directory display name (this form typically requires quotes)
73-
- Example: "Ken Myer"
74-
- Active Directory distinguished name
75-
- Example: CN=KenMyer,CN=Users,DC=Atlanta,DC=Corp,DC=litware,DC=com
66+
67+
- SIP address. Example: sip:[email protected].
68+
- User principal name (UPN). Example: [email protected].
69+
- Domain name and logon name in the form domain\logon. Example: litwareinc\kenmyer.
70+
- Active Directory display name (this form typically requires quotes). Example: "Ken Myer".
71+
- Active Directory distinguished name. Example: CN=KenMyer,CN=Users,DC=Atlanta,DC=Corp,DC=litware,DC=com.
7672
7773
```yaml
7874
Type: UserIdParameter

skype/skype-ps/skype/Set-CsCallingLineIdentity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ This example modifies the new Anonymous Caller ID policy that blocks the incomin
7171
### Example 4
7272
```
7373
$ObjId = (Get-CsOnlineApplicationInstance -Identity [email protected]).ObjectId
74-
Set-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -ResourceAccount $ObjId -CompanyName "Contoso"
74+
Set-CsCallingLineIdentity -Identity DKCQ -CallingIDSubstitute Resource -ResourceAccount $ObjId -CompanyName "Contoso"
7575
```
7676

7777
This example modifies the Caller ID policy that sets the Caller ID to the phone number of the specified resource account and sets the Calling party name to Contoso

skype/skype-ps/skype/Set-CsExternalAccessPolicy.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,16 @@ The net result: all external access policies that allow public cloud access will
114114

115115
### -------------------------- Example 5 ------------------------
116116
```
117-
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $false
118-
New-CsExternalAccessPolicy -Identity AcsFederationAllowed -EnableAcsFederationAccess $true
117+
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $false
118+
New-CsExternalAccessPolicy -Identity AcsFederationAllowed -EnableAcsFederationAccess $true
119119
```
120120

121121
In this example, the Global policy is updated to disallow Teams-ACS federation for all users, then a new external access policy instance is created with Teams-ACS federation enabled and which can be assigned to selected users for which Team-ACS federation will be allowed.
122122

123123
### -------------------------- Example 5 ------------------------
124124
```
125-
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $true
126-
New-CsExternalAccessPolicy -Identity AcsFederationNotAllowed -EnableAcsFederationAccess $false
125+
Set-CsExternalAccessPolicy -Identity Global -EnableAcsFederationAccess $true
126+
New-CsExternalAccessPolicy -Identity AcsFederationNotAllowed -EnableAcsFederationAccess $false
127127
```
128128

129129
In this example, the Global policy is updated to allow Teams-ACS federation for all users, then a new external access policy instance is created with Teams-ACS federation disabled and which can then be assigned to selected users for which Team-ACS federation will not be allowed.

skype/skype-ps/skype/Set-CsInboundExemptNumberPattern.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ This cmdlet modifies one or more parameters of a exempt number pattern in the te
2424
### EXAMPLE 1
2525

2626
```powershell
27-
PS C:> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$"
27+
PS C:> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Pattern "^\+?1312555888[2|3]$"
2828
```
2929

3030
Sets the inbound exempt number pattern for AllowContoso1
3131

3232
### EXAMPLE 2
3333

3434
```powershell
35-
PS C:> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Enabled $False
35+
PS C:> Set-CsInboundExemptNumberPattern -Identity "AllowContoso1" -Enabled $False
3636
```
3737

3838
Disables the exempt number pattern from usage in call blocking

0 commit comments

Comments
 (0)