Skip to content

Commit d9e80d9

Browse files
authored
Merge pull request MicrosoftDocs#9144 from MicrosoftDocs/chrisda
Fixed build errors
2 parents eac863b + f21d84c commit d9e80d9

7 files changed

+32
-34
lines changed

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

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ This parameter has been deprecated from the Teams PowerShell Modules version 3.0
154154
```yaml
155155
Type: PSCredential
156156
Parameter Sets: (All)
157-
Aliases:
157+
Aliases:
158158
Applicable: Microsoft Teams, Skype for Business Online
159159

160160
Required: False
@@ -305,7 +305,6 @@ In the Teams PowerShell Module version 3.0.0 or later, filtering functionality i
305305
- UserDirSyncEnabled
306306
- userPrincipalName
307307

308-
309308
*Attributes that have changed in meaning/format*:
310309

311310
**OnPremLineURI**: This attribute previously used to refer to both:
@@ -318,25 +317,23 @@ In the Teams PowerShell Module version 3.0.0 or later, the **OnPremLineURI** att
318317
In the Teams PowerShell Module version 3.0.0 or later, the format of the AssignedPlan and ProvisionedPlan attributes has changed from XML to JSON array. Previous XML filters (For example, `-Filter "AssignedPlan -eq '<some-xml-string>'"`) will no longer work. Instead, you need to update your filters to use one of the following formats:
319318

320319
- All users with an AssignedPlan that ends with "MCO": `-Filter "AssignedPlan -eq '*MCO'"`
321-
- All users with an AssignedPlan that starts with MCO: `-Filter "AssignedPlan -eq 'MCO*'"`
320+
- All users with an AssignedPlan that starts with MCO: `-Filter "AssignedPlan -eq 'MCO*'"`
322321
- All users with an AssignedPlan that contains MCO: `-Filter "AssignedPlan -eq '*MCO*'"`
323322

324-
**Policy Attributes:**
323+
**Policy Attributes**:
325324

326-
- PolicyProperty comparison works only when "Authority" is provided in the value. For ex: TeamsMessagingPolicy -eq "<Authority>:<Value>"
327-
"Authority" can contain any of these two values: Host or Tenant for a policy type (PreCanned/Default configurations provided by feature team are refered to as Host configurations while Admin-created configurations are considered Tenant configurations)
328-
329-
- In the Teams PowerShell Module version 3.0.0 or later, the output format of Policies has now changed from String to JSON type UserPolicyDefinition.
325+
- PolicyProperty comparison works only when "Authority" is provided in the value. For ex: `-Filter "TeamsMessagingPolicy -eq '<Authority>:<Value>'"`
326+
"Authority" can contain any of these two values: Host or Tenant for a policy type (PreCanned/Default configurations provided by feature team are referred to as Host configurations while Admin-created configurations are considered Tenant configurations)
330327

328+
- In the Teams PowerShell Module version 3.0.0 or later, the output format of Policies has now changed from String to JSON type UserPolicyDefinition.
331329

332330
*Dropped Filter operators*:
333-
334-
The following filter syntaxes are not supported in Teams PowerShell Module 3.0.0 and above:
335331

336-
- not, -lt, -gt: These operators have been dropped
337-
- ge, -ne: These operators are not supported with policy properties
338-
- like: This operator is supported only with wildcard character in the end (e.g., "like <value>*")
332+
The following filter syntaxes are not supported in Teams PowerShell Module 3.0.0 and above:
339333

334+
- not, -lt, -gt: These operators have been dropped.
335+
- ge, -ne: These operators are not supported with policy properties.
336+
- like: This operator is supported only with wildcard character in the end (e.g., `"like <value>*"`).
340337

341338
```yaml
342339
Type: String
@@ -478,21 +475,22 @@ Accept wildcard characters: False
478475
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
479476

480477
## OUTPUTS
481-
482-
### Note:
478+
479+
### Notes
483480

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

486-
_New user attributes_
483+
*New user attributes*:
487484

488485
FeatureTypes – Array of unique strings specifying what features are enabled for a user. This attribute is an alternatitive to several attributes that have been dropped as outlined in the next section.
489486
Some of the commonly used FeatureTypes include:
487+
490488
- Teams
491489
- AudioConferencing
492490
- PhoneSystem
493491
- CallingPlan
494492

495-
_Dropped attributes_
493+
*Dropped attributes*:
496494

497495
The following attributes are no longer relevant to Teams and have been dropped from the output:
498496

@@ -605,7 +603,7 @@ The following attributes are no longer relevant to Teams and have been dropped f
605603
- Phone
606604
- WindowsEmailAddress
607605

608-
*Attributes renamed*
606+
*Attributes renamed*:
609607

610608
- ObjectId renamed to Identity
611609
- FirstName renamed to GivenName
@@ -614,17 +612,17 @@ The following attributes are no longer relevant to Teams and have been dropped f
614612
- Enabled renamed to IsSipEnabled
615613
- TeamsBranchSurvivabilityPolicy renamed to TeamsSurvivableBranchAppliancePolicy
616614

617-
*Attributes that have changed in meaning/format*
615+
*Attributes that have changed in meaning/format*:
618616

619617
**OnPremLineURI**: This attribute previously used to refer to both:
618+
620619
1. LineURI set via OnPrem AD.
621620
2. Direct Routing numbers assigned to users via Set-CsUser.
622621

623622
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.
624623

625-
**- The output format of AssignedPlan and ProvisionedPlan have now changed from XML to JSON array.**
626-
627-
**- The output format of Policies has now changed from String to JSON type UserPolicyDefinition.**
624+
- **The output format of AssignedPlan and ProvisionedPlan have now changed from XML to JSON array.**
625+
- **The output format of Policies has now changed from String to JSON type UserPolicyDefinition.**
628626

629627
## INPUTS
630628

teams/teams-ps/teams/Get-CsPolicyPackage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Get-CsPolicyPackage
5-
author: icchan
6-
ms.author: icchan
5+
author: serdarsoysal
6+
ms.author: serdars
77
manager: amitar
88
online version: https://docs.microsoft.com/powershell/module/teams/get-cspolicypackage
99
schema: 2.0.0

teams/teams-ps/teams/Get-CsUserPolicyPackage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Get-CsUserPolicyPackage
5-
author: icchan
6-
ms.author: icchan
5+
author: serdarsoysal
6+
ms.author: serdars
77
manager: amitar
88
online version: https://docs.microsoft.com/powershell/module/teams/get-csuserpolicypackage
99
schema: 2.0.0

teams/teams-ps/teams/Get-CsUserPolicyPackageRecommendation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Get-CsUserPolicyPackageRecommendation
5-
author: icchan
6-
ms.author: icchan
5+
author: serdarsoysal
6+
ms.author: serdars
77
manager: amitar
88
online version: https://docs.microsoft.com/powershell/module/teams/get-csuserpolicypackagerecommendation
99
schema: 2.0.0

teams/teams-ps/teams/Grant-CsGroupPolicyPackageAssignment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Grant-CsGroupPolicyPackageAssignment
5-
author: icchan
6-
ms.author: icchan
5+
author: serdarsoysal
6+
ms.author: serdars
77
manager: dasosby
88
online version: https://docs.microsoft.com/powershell/module/teams/grant-csgrouppolicypackageassignment
99
schema: 2.0.0

teams/teams-ps/teams/Grant-CsUserPolicyPackage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: Grant-CsUserPolicyPackage
5-
author: icchan
6-
ms.author: icchan
5+
author: serdarsoysal
6+
ms.author: serdars
77
manager: amitar
88
online version: https://docs.microsoft.com/powershell/module/teams/grant-csuserpolicypackage
99
schema: 2.0.0

teams/teams-ps/teams/New-CsBatchPolicyPackageAssignmentOperation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
external help file: Microsoft.TeamsCmdlets.PowerShell.Custom.dll-Help.xml
33
Module Name: MicrosoftTeams
44
title: New-CsBatchPolicyPackageAssignmentOperation
5-
author: icchan
6-
ms.author: icchan
5+
author: serdarsoysal
6+
ms.author: serdars
77
manager: amitar
88
online version: https://docs.microsoft.com/powershell/module/teams/new-csbatchpolicypackageassignmentoperation
99
schema: 2.0.0

0 commit comments

Comments
 (0)