Skip to content

Commit fccdb84

Browse files
committed
Link fixes 5
And any formatting/schema issues
1 parent bbb4707 commit fccdb84

File tree

79 files changed

+634
-655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+634
-655
lines changed

teams/teams-ps/teams/Set-CsPhoneNumberAssignment.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ online version: https://learn.microsoft.com/powershell/module/teams/set-csphonen
55
applicable: Microsoft Teams
66
author: jenstrier
77
ms.author: serdars
8-
ms.reviewer:
8+
ms.reviewer:
99
manager:
1010
schema: 2.0.0
1111
---
@@ -48,7 +48,7 @@ This cmdlet assigns a phone number to a user or resource account. When you assig
4848

4949
You can also assign a location to a phone number.
5050

51-
To remove a phone number from a user or resource account, use the [Remove-CsPhoneNumberAssignment](Remove-CsPhoneNumberAssignment.md) cmdlet.
51+
To remove a phone number from a user or resource account, use the [Remove-CsPhoneNumberAssignment](https://learn.microsoft.com/powershell/module/teams/remove-csphonenumberassignment) cmdlet.
5252

5353
## EXAMPLES
5454

@@ -127,8 +127,8 @@ foreach ($pn in $pns) {
127127
Try {
128128
Set-CsPhoneNumberAssignment -PhoneNumber $pn.TelephoneNumber -LocationId $NewLocationId -ErrorAction Stop
129129
Write-Host $pn.TelephoneNumber was updated to have location $NewLocationId
130-
}
131-
Catch {
130+
}
131+
Catch {
132132
Write-Host Could not update $pn.TelephoneNumber with location $NewLocationId
133133
}
134134
}
@@ -141,8 +141,7 @@ This Example shows how to update the LocationID from an old location to a new lo
141141
```powershell
142142
Set-CsPhoneNumberAssignment -Identity user3@contoso.com -PhoneNumber +12065551226 -ReverseNumberLookup 'SkipInternalVoip'
143143
```
144-
This example shows how to turn off reverse number lookup (RNL) on a phone number. When RNL is set to 'SkipInternalVoip', an internal call to this phone number will not attempt to pass through internal VoIP via reverse number lookup in Microsoft Teams. Instead the call will be established through external PSTN connectivity directly. This example is only applicable for Direct Routing phone numbers.
145-
144+
This example shows how to turn off reverse number lookup (RNL) on a phone number. When RNL is set to 'SkipInternalVoip', an internal call to this phone number will not attempt to pass through internal VoIP via reverse number lookup in Microsoft Teams. Instead the call will be established through external PSTN connectivity directly. This example is only applicable for Direct Routing phone numbers.
146145

147146
## PARAMETERS
148147

@@ -152,7 +151,7 @@ This parameter is reserved for internal Microsoft use.
152151
```yaml
153152
Type: System.String
154153
Parameter Sets: (Assignment)
155-
Aliases:
154+
Aliases:
156155
Applicable: Microsoft Teams
157156

158157
Required: False
@@ -169,7 +168,7 @@ This parameter is mutual exclusive with PhoneNumber.
169168
```yaml
170169
Type: System.Boolean
171170
Parameter Sets: (Attribute)
172-
Aliases:
171+
Aliases:
173172
Applicable: Microsoft Teams
174173

175174
Required: True
@@ -197,7 +196,7 @@ Accept wildcard characters: False
197196
The LocationId of the location to assign to the specific user. You can get it using Get-CsOnlineLisLocation. You can set the location on both assigned and unassigned
198197
phone numbers.
199198
200-
Removal of location from a phone number is supported for Direct Routing numbers and Operator Connect numbers that are not managed by the Service Desk.
199+
Removal of location from a phone number is supported for Direct Routing numbers and Operator Connect numbers that are not managed by the Service Desk.
201200
If you want to remove the location, use the string value null for LocationId.
202201
203202
```yaml
@@ -217,7 +216,7 @@ This parameter is reserved for internal Microsoft use.
217216
```yaml
218217
Type: System.String
219218
Parameter Sets: (Assignment)
220-
Aliases:
219+
Aliases:
221220
Applicable: Microsoft Teams
222221

223222
Required: False
@@ -280,6 +279,6 @@ The previous command for assigning phone numbers to users Set-CsUser had the par
280279
necessary and that is why the parameter is not available on Set-CsPhoneNumberAssignment.
281280
282281
## RELATED LINKS
283-
[Remove-CsPhoneNumberAssignment](Remove-CsPhoneNumberAssignment.md)
282+
[Remove-CsPhoneNumberAssignment](https://learn.microsoft.com/powershell/module/teams/remove-csphonenumberassignment)
284283
285-
[Get-CsPhoneNumberAssignment](Get-CsPhoneNumberAssignment.md)
284+
[Get-CsPhoneNumberAssignment](https://learn.microsoft.com/powershell/module/teams/get-csphonenumberassignment)

teams/teams-ps/teams/Set-CsTeamsAIPolicy.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ This cmdlet Set Teams AI policy value for current tenant.
1818
## SYNTAX
1919

2020
```
21-
Set-CsTeamsAIPolicy
22-
[[-Identity] <string>]
23-
[-EnrollFace <Enabled/Disabled>]
24-
[-EnrollVoice <Enabled/Disabled>]
21+
Set-CsTeamsAIPolicy [[-Identity] <string>]
22+
[-EnrollFace <Boolean>]
23+
[-EnrollVoice <Boolean>]
24+
[<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -75,6 +75,7 @@ PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
7575
Set Teams AI policy "EnrollVoice" value to "Disabled" for identity "Test".
7676

7777
## PARAMETERS
78+
7879
### -Identity
7980
Identity of the Teams AI policy.
8081

@@ -89,6 +90,7 @@ Default value: None
8990
Accept pipeline input: False
9091
Accept wildcard characters: False
9192
```
93+
9294
### -EnrollFace
9395
Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings.
9496
@@ -126,12 +128,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
126128
127129
## OUTPUTS
128130
131+
## NOTES
132+
129133
## RELATED LINKS
130134
131-
[New-CsTeamsAIPolicy](New-CsTeamsAIPolicy.md)
135+
[New-CsTeamsAIPolicy](https://learn.microsoft.com/powershell/module/teams/new-csteamsaipolicy)
132136
133-
[Remove-CsTeamsAIPolicy](Remove-CsTeamsAIPolicy.md)
137+
[Remove-CsTeamsAIPolicy](https://learn.microsoft.com/powershell/module/teams/remove-csteamsaipolicy)
134138
135-
[Get-CsTeamsAIPolicy](Get-CsTeamsAIPolicy.md)
139+
[Get-CsTeamsAIPolicy](https://learn.microsoft.com/powershell/module/teams/get-csteamsaipolicy)
136140
137-
[Grant-CsTeamsAIPolicy](Grant-CsTeamsAIPolicy.md)
141+
[Grant-CsTeamsAIPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csteamsaipolicy)

teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ schema: 2.0.0
1414

1515
**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access. This preview version is provided without a service-level agreement, and is not recommended for production workloads. Certain features might not be supported or might have constrained capabilities. For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
1616

17-
This cmdlet is used to manage the federation configuration between Teams and Azure Communication Services. For more information, please see [Azure Communication Services and Teams Interoperability](/azure/communication-services/concepts/teams-interop).
17+
This cmdlet is used to manage the federation configuration between Teams and Azure Communication Services. For more information, please see [Azure Communication Services and Teams Interoperability](https://learn.microsoft.com/azure/communication-services/concepts/teams-interop).
1818

1919
## SYNTAX
2020

2121
```powershell
2222
Set-CsTeamsAcsFederationConfiguration
23-
[-Identity <String[]>]
24-
[-EnableAcsUsers <Boolean>]
25-
[-AllowedAcsResources <String[]>]
26-
[-WhatIf]
27-
[-Confirm]
28-
[<CommonParameters>]
23+
[-Identity <String[]>]
24+
[-EnableAcsUsers <Boolean>]
25+
[-AllowedAcsResources <String[]>]
26+
[-WhatIf]
27+
[-Confirm]
28+
[<CommonParameters>]
2929
```
3030

3131
## DESCRIPTION
3232

33-
Federation between Teams and Azure Communication Services (ACS) allows external users from ACS to connect and communicate with Teams users over voice and video. These custom applications may be used by end users or by bots, and there is no differentiation in how they appear to Teams users unless the developer of the application explicitly indicates this as part of the communication. For more information, see [Teams interoperability](/azure/communication-services/concepts/teams-interop).
33+
Federation between Teams and Azure Communication Services (ACS) allows external users from ACS to connect and communicate with Teams users over voice and video. These custom applications may be used by end users or by bots, and there is no differentiation in how they appear to Teams users unless the developer of the application explicitly indicates this as part of the communication. For more information, see [Teams interoperability](https://learn.microsoft.com/azure/communication-services/concepts/teams-interop).
3434

3535
This cmdlet is used to enable or disable Teams and ACS federation for a Teams tenant, and to specify which ACS resources can connect to Teams. Only listed ACS resources can be allowed.
3636

@@ -108,10 +108,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
108108

109109
## RELATED LINKS
110110

111-
[Get-CsTeamsAcsFederationConfiguration](Get-CsTeamsAcsFederationConfiguration.md)
111+
[Get-CsTeamsAcsFederationConfiguration](https://learn.microsoft.com/powershell/module/teams/get-csteamsacsfederationconfiguration)
112112

113-
[New-CsExternalAccessPolicy](New-CsExternalAccessPolicy.md)
113+
[New-CsExternalAccessPolicy](https://learn.microsoft.com/powershell/module/teams/new-csexternalaccesspolicy)
114114

115-
[Set-CsExternalAccessPolicy](Set-CsExternalAccessPolicy.md)
115+
[Set-CsExternalAccessPolicy](https://learn.microsoft.com/powershell/module/teams/set-csexternalaccesspolicy)
116116

117-
[Grant-CsExternalAccessPolicy](Grant-CsExternalAccessPolicy.md)
117+
[Grant-CsExternalAccessPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csexternalaccesspolicy)

teams/teams-ps/teams/Set-CsTeamsAppPermissionPolicy.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType B
5151
```
5252
This example allows all Microsoft apps, third-party apps, and custom apps. No apps are blocked.
5353

54-
5554
### Example 2
5655

5756
```powershell
@@ -61,8 +60,6 @@ Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType A
6160
```
6261
This example blocks all Microsoft apps, third-party apps, and custom apps. No apps are allowed.
6362

64-
65-
6663
### Example 3
6764

6865
```powershell
@@ -74,7 +71,7 @@ $ListsApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.C
7471
$OneNoteApp = New-Object -TypeName Microsoft.Teams.Policy.Administration.Cmdlets.Core.DefaultCatalogApp -Property @{Id="26bc2873-6023-480c-a11b-76b66605ce8c"}
7572
$DefaultCatalogAppList = @($ListsApp,$OneNoteApp)
7673
# set allow Lists and OneNote apps and block other Microsoft apps
77-
Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType AllowedAppList -DefaultCatalogApps $DefaultCatalogAppList
74+
Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -DefaultCatalogAppsType AllowedAppList -DefaultCatalogApps $DefaultCatalogAppList
7875
```
7976
This example allows Microsoft Lists and OneNote apps and blocks other Microsoft apps. Microsoft Lists and OneNote can be installed by your users.
8077

@@ -92,7 +89,6 @@ Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -GlobalCatalogAppsType Al
9289
```
9390
This example allows third-party TaskList and OnePlan apps and blocks other third-party apps. TaskList and OnePlan can be installed by your users.
9491

95-
9692
### Example 5
9793

9894
```powershell
@@ -107,7 +103,6 @@ Set-CsTeamsAppPermissionPolicy -Identity Set-$identity -PrivateCatalogAppsType A
107103
```
108104
This example allows custom GetStartApp and TestBotApp apps and blocks other custom apps. GetStartApp and TestBotApp can be installed by your users.
109105

110-
111106
## PARAMETERS
112107

113108
### -Confirm
@@ -143,7 +138,6 @@ Accept wildcard characters: False
143138
### -DefaultCatalogAppsType
144139
Choose to allow or block the installation of Microsoft apps. Values that can be used: AllowedAppList, BlockedAppList.
145140
146-
147141
```yaml
148142
Type: String
149143
Parameter Sets: (All)
@@ -159,7 +153,6 @@ Accept wildcard characters: False
159153
### -Description
160154
Description of app setup permission policy.
161155
162-
163156
```yaml
164157
Type: String
165158
Parameter Sets: (All)
@@ -190,7 +183,6 @@ Accept wildcard characters: False
190183
### -GlobalCatalogApps
191184
Choose which Teams apps published by a third party can be installed by your users.
192185
193-
194186
```yaml
195187
Type: Microsoft.Teams.Policy.Administration.Cmdlets.Core.GlobalCatalogApp[]
196188
Parameter Sets: (All)
@@ -206,7 +198,6 @@ Accept wildcard characters: False
206198
### -GlobalCatalogAppsType
207199
Choose to allow or block the installation of third-party apps. Values that can be used: AllowedAppList, BlockedAppList.
208200
209-
210201
```yaml
211202
Type: String
212203
Parameter Sets: (All)
@@ -222,7 +213,6 @@ Accept wildcard characters: False
222213
### -Identity
223214
Name of App setup permission policy. If empty, all Identities will be used by default.
224215
225-
226216
```yaml
227217
Type: XdsIdentity
228218
Parameter Sets: Identity
@@ -312,8 +302,7 @@ Accept wildcard characters: False
312302
```
313303
314304
### CommonParameters
315-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
316-
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
305+
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).
317306
318307
## INPUTS
319308

teams/teams-ps/teams/Set-CsTeamsAppSetupPolicy.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Apps are pinned to the app bar. This is the bar on the side of the Teams desktop
6969
```powershell
7070
# Create new teams app setup policy named "Set-Test".
7171
New-CsTeamsAppSetupPolicy -Identity 'Set-Test'
72-
Set-CsTeamsAppSetupPolicy -Identity 'Set-Test' -AllowUserPinning $true -AllowSideLoading $false
72+
Set-CsTeamsAppSetupPolicy -Identity 'Set-Test' -AllowUserPinning $true -AllowSideLoading $false
7373
```
7474

7575
Step 1: Create a new Teams app setup policy named "Set-Test".
@@ -179,7 +179,7 @@ Accept wildcard characters: False
179179
```
180180
181181
### -AppPresetList
182-
Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store.
182+
Choose which apps and messaging extensions you want to be installed in your users' personal Teams environment and in meetings they create. Users can install other available apps from the Teams app store.
183183
184184
```yaml
185185
Type: Microsoft.Teams.Policy.Administration.Cmdlets.Core.AppPreset[]
@@ -315,8 +315,7 @@ Accept wildcard characters: False
315315
```
316316
317317
### CommonParameters
318-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
319-
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
318+
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).
320319
321320
## INPUTS
322321

teams/teams-ps/teams/Set-CsTeamsAudioConferencingPolicy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
166166
167167
## RELATED LINKS
168168
169-
[Get-CsTeamsAudioConferencingPolicy](Get-CsTeamsAudioConferencingPolicy.md)
169+
[Get-CsTeamsAudioConferencingPolicy](https://learn.microsoft.com/powershell/module/teams/get-csteamsaudioconferencingpolicy)
170170
171-
[New-CsTeamsAudioConferencingPolicy](New-CsTeamsAudioConferencingPolicy.md)
171+
[New-CsTeamsAudioConferencingPolicy](https://learn.microsoft.com/powershell/module/teams/new-csteamsaudioconferencingpolicy)
172172
173-
[Grant-CsTeamsAudioConferencingPolicy](Grant-CsTeamsAudioConferencingPolicy.md)
173+
[Grant-CsTeamsAudioConferencingPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csteamsaudioconferencingpolicy)

teams/teams-ps/teams/Set-CsTeamsCallHoldPolicy.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Assigning a Teams call hold policy to a user sets an audio file to be played dur
3434

3535
### Example 1
3636
```powershell
37-
PS C:\> Set-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -AudioFileId "c65233-ac2a27-98701b-123ccc"
37+
PS C:\> Set-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -AudioFileId "c65233-ac2a27-98701b-123ccc"
3838
```
3939

4040
The command shown in Example 1 modifies an existing per-user Teams call hold policy with the Identity ContosoPartnerTeamsCallHoldPolicy.
@@ -45,7 +45,7 @@ Any Microsoft Teams users who are assigned this policy will have their call hold
4545

4646
### Example 2
4747
```powershell
48-
PS C:\> Set-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -Description "country music"
48+
PS C:\> Set-CsTeamsCallHoldPolicy -Identity "ContosoPartnerTeamsCallHoldPolicy" -Description "country music"
4949
```
5050

5151
The command shown in Example 2 modifies an existing per-user Teams call hold policy with the Identity ContosoPartnerTeamsCallHoldPolicy.
@@ -192,12 +192,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
192192
193193
## RELATED LINKS
194194
195-
[Get-CsTeamsCallHoldPolicy](Get-CsTeamsCallHoldPolicy.md)
195+
[Get-CsTeamsCallHoldPolicy](https://learn.microsoft.com/powershell/module/teams/get-csteamscallholdpolicy)
196196
197-
[New-CsTeamsCallHoldPolicy](New-CsTeamsCallHoldPolicy.md)
197+
[New-CsTeamsCallHoldPolicy](https://learn.microsoft.com/powershell/module/teams/new-csteamscallholdpolicy)
198198
199-
[Grant-CsTeamsCallHoldPolicy](Grant-CsTeamsCallHoldPolicy.md)
199+
[Grant-CsTeamsCallHoldPolicy](https://learn.microsoft.com/powershell/module/teams/grant-csteamscallholdpolicy)
200200
201-
[Remove-CsTeamsCallHoldPolicy](Remove-CsTeamsCallHoldPolicy.md)
201+
[Remove-CsTeamsCallHoldPolicy](https://learn.microsoft.com/powershell/module/teams/remove-csteamscallholdpolicy)
202202
203-
[Import-CsOnlineAudioFile](Import-CsOnlineAudioFile.md)
203+
[Import-CsOnlineAudioFile](https://learn.microsoft.com/powershell/module/teams/import-csonlineaudiofile)

teams/teams-ps/teams/Set-CsTeamsCallParkPolicy.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,14 +252,12 @@ Accept wildcard characters: False
252252
```
253253
254254
### CommonParameters
255-
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
256-
For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
255+
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).
257256
258257
## INPUTS
259258
260259
### System.Management.Automation.PSObject
261260
262-
263261
## OUTPUTS
264262
265263
### System.Object

0 commit comments

Comments
 (0)