Skip to content

Commit 293b5da

Browse files
Merge pull request #12473 from michbrown-png/updatecmdlets
Updating Multiple Cmdlets with Missing Info
2 parents f20d79c + bcf3230 commit 293b5da

6 files changed

+172
-30
lines changed

teams/teams-ps/teams/New-CsTeamsComplianceRecordingPolicy.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ schema: 2.0.0
77
manager: nakumar
88
author: aditdalvi
99
ms.author: aditd
10-
ms.reviewer:
1110
---
1211

1312
# New-CsTeamsComplianceRecordingPolicy
@@ -18,11 +17,12 @@ Automatic policy-based recording is only applicable to Microsoft Teams users.
1817

1918
## SYNTAX
2019

21-
```
20+
```powershell
2221
New-CsTeamsComplianceRecordingPolicy [-Tenant <System.Guid>] [-Identity <XdsIdentity>]
2322
[-Enabled <Boolean>] [-WarnUserOnRemoval <Boolean>] [-DisableComplianceRecordingAudioNotificationForCalls <Boolean>]
2423
[-RecordReroutedCalls <Boolean>] [-Description <String>]
2524
[-ComplianceRecordingApplications <ComplianceRecordingApplication[]>] [-CustomBanner <Guid>]
25+
[-CustomPromptsEnabled <Boolean>] [-CustomPromptsPackageId <String>]
2626
[-InMemory] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2727
```
2828

@@ -266,6 +266,36 @@ Accept pipeline input: False
266266
Accept wildcard characters: False
267267
```
268268
269+
### -CustomPromptsEnabled
270+
Indicates whether compliance recording custom prompts feature is enabled for this tenant / user.
271+
272+
```yaml
273+
Type: Boolean
274+
Parameter Sets: (All)
275+
Aliases:
276+
277+
Required: False
278+
Position: Named
279+
Default value: None
280+
Accept pipeline input: False
281+
Accept wildcard characters: False
282+
```
283+
284+
### -CustomPromptsPackageId
285+
Reference to custom prompts package.
286+
287+
```yaml
288+
Type: String
289+
Parameter Sets: (All)
290+
Aliases:
291+
292+
Required: False
293+
Position: Named
294+
Default value: None
295+
Accept pipeline input: False
296+
Accept wildcard characters: False
297+
```
298+
269299
### -WhatIf
270300
Shows what would happen if the cmdlet runs.
271301
The cmdlet is not run.

teams/teams-ps/teams/New-CsTeamsEventsPolicy.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ This cmdlet allows you to create a new TeamsEventsPolicy instance and set its pr
1313

1414
## SYNTAX
1515

16-
```
16+
```powershell
1717
New-CsTeamsEventsPolicy [-Identity] <String> [-AllowWebinars <String>] [-AllowTownhalls <String>] [-AllowEmailEditing <String>] [-Description <String>]
1818
[-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
19-
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>]
19+
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>] [-AllowEventIntegrations <Boolean>] [-TownhallChatExperience <String>]
2020
[-UseMicrosoftECDN <String>] [-EventAccessType <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
2121
[-ImmersiveEvents <String>]
2222
```
@@ -265,6 +265,36 @@ Accept pipeline input: False
265265
Accept wildcard characters: False
266266
```
267267
268+
### -AllowEventIntegrations
269+
This setting governs the access to the integrations tab in the event creation workflow.
270+
271+
```yaml
272+
Type: Boolean
273+
Parameter Sets: (All)
274+
Aliases:
275+
276+
Required: False
277+
Position: Named
278+
Default value: None
279+
Accept pipeline input: False
280+
Accept wildcard characters: False
281+
```
282+
283+
### -TownhallChatExperience
284+
This setting governs if the user can enable the Comment Stream chat experience for Townhalls.
285+
286+
```yaml
287+
Type: String
288+
Parameter Sets: (All)
289+
Aliases:
290+
291+
Required: False
292+
Position: Named
293+
Default value: None
294+
Accept pipeline input: False
295+
Accept wildcard characters: False
296+
```
297+
268298
### -Confirm
269299
The Confirm switch does not work with this cmdlet.
270300

teams/teams-ps/teams/New-CsTeamsFeedbackPolicy.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ online version: https://learn.microsoft.com/powershell/module/teams/new-csteamsf
44
applicable: Microsoft Teams
55
title: New-CsTeamsFeedbackPolicy
66
schema: 2.0.0
7-
manager: bulenteg
8-
ms.author: tomkau
9-
ms.author: tomkau
10-
ms.reviewer:
117
---
128

139
# New-CsTeamsFeedbackPolicy
@@ -17,9 +13,9 @@ Use this cmdlet to control whether users in your organization can send feedback
1713

1814
## SYNTAX
1915

20-
```
16+
```powershell
2117
New-CsTeamsFeedbackPolicy [-WhatIf] [-Confirm] [[-Identity] <Object>] [-Tenant <Object>] [-InMemory]
22-
[-AllowEmailCollection <Boolean>] [-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>]
18+
[-AllowEmailCollection <Boolean>] [-AllowLogCollection <Boolean>] [-AllowScreenshotCollection <Boolean>] [-EnableFeatureSuggestions <Boolean>]
2319
[-UserInitiatedMode <String>] [-ReceiveSurveysMode <String>] [-Force] [<CommonParameters>]
2420
```
2521

@@ -194,6 +190,21 @@ Accept pipeline input: False
194190
Accept wildcard characters: False
195191
```
196192
193+
### -EnableFeatureSuggestions
194+
This setting will enable Tenant Admins to hide or show the Teams menu item “Help | Suggest a Feature”.
195+
196+
```yaml
197+
Type: Boolean
198+
Parameter Sets: (All)
199+
Aliases:
200+
201+
Required: False
202+
Position: Named
203+
Default value: None
204+
Accept pipeline input: False
205+
Accept wildcard characters: False
206+
```
207+
197208
### -WhatIf
198209
Shows what would happen if the cmdlet runs.
199210
The cmdlet is not run.

teams/teams-ps/teams/New-CsTeamsMeetingBrandingPolicy.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ The **CsTeamsMeetingBrandingPolicy** cmdlet enables administrators to control th
1717

1818
## SYNTAX
1919

20-
```
20+
```powershell
2121
New-CsTeamsMeetingBrandingPolicy
2222
[-MeetingBackgroundImages <PSListModifier>]
2323
[-MeetingBrandingThemes <PSListModifier>]
2424
[-DefaultTheme <String>] [-EnableMeetingOptionsThemeOverride <Boolean>]
25+
[-EnableNdiAssuranceSlate <Boolean>] [-NdiAssuranceSlateImages <PSListModifier>] [-RequireBackgroundEffect <Boolean>]
2526
[-EnableMeetingBackgroundImages <Boolean>] [-Identity] <String> [-Force] [-WhatIf] [-Confirm]
2627
[<CommonParameters>]
2728
```
@@ -137,6 +138,51 @@ Accept pipeline input: False
137138
Accept wildcard characters: False
138139
```
139140
141+
### -EnableNdiAssuranceSlate
142+
This enables meeting Network Device Interface Assurance Slate branding.
143+
144+
```yaml
145+
Type: Boolean
146+
Parameter Sets: (All)
147+
Aliases:
148+
149+
Required: False
150+
Position: Named
151+
Default value: None
152+
Accept pipeline input: False
153+
Accept wildcard characters: False
154+
```
155+
156+
### -NdiAssuranceSlateImages
157+
Used to specify images that can be used as assurance slates during NDI (Network Device Interface) streaming in Teams meetings. This parameter allows administrators to define a set of images that can be displayed to participants to ensure that the NDI stream is functioning correctly.
158+
159+
```yaml
160+
Type: System.Management.Automation.PSListModifier`1[Microsoft.Teams.Policy.Administration.Cmdlets.Core.NdiAssuranceSlate]
161+
Parameter Sets: (All)
162+
Aliases:
163+
164+
Required: False
165+
Position: Named
166+
Default value: None
167+
Accept pipeline input: False
168+
Accept wildcard characters: False
169+
```
170+
171+
### -RequireBackgroundEffect
172+
This mandates a meeting background for participants.
173+
174+
```yaml
175+
Type: Boolean
176+
Parameter Sets: (All)
177+
Aliases:
178+
179+
Required: False
180+
Position: Named
181+
Default value: None
182+
Accept pipeline input: False
183+
Accept wildcard characters: False
184+
```
185+
140186
### -Confirm
141187
Prompts you for confirmation before running the cmdlet.
142188

teams/teams-ps/teams/Set-CsTeamsMeetingConfiguration.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ online version: https://learn.microsoft.com/powershell/module/teams/set-csteamsm
55
applicable: Microsoft Teams
66
title: Set-CsTeamsMeetingConfiguration
77
schema: 2.0.0
8-
manager: bulenteg
9-
author: tomkau
10-
ms.author: tomkau
11-
ms.reviewer: williamlooney
128
---
139

1410
# Set-CsTeamsMeetingConfiguration
@@ -21,23 +17,23 @@ The CsTeamsMeetingConfiguration cmdlets enable administrators to control the mee
2117

2218
### Identity (Default)
2319

24-
```
20+
```powershell
2521
Set-CsTeamsMeetingConfiguration [-Tenant <Guid>] [-LogoURL <String>] [-LegalURL <String>]
2622
[-HelpURL <String>] [-CustomFooterText <String>] [-DisableAnonymousJoin <Boolean>] [-EnableQoS <Boolean>]
2723
[-ClientAudioPort <UInt32>] [-ClientAudioPortRange <UInt32>] [-ClientVideoPort <UInt32>]
2824
[-ClientVideoPortRange <UInt32>] [-ClientAppSharingPort <UInt32>] [-ClientAppSharingPortRange <UInt32>]
29-
[-ClientMediaPortRangeEnabled <Boolean>] [-DisableAppInteractionForAnonymousUsers <Boolean>] [[-Identity] <XdsIdentity>] [-FeedbackSurveyForAnonymousUsers <String>] [-Force] [-WhatIf] [-Confirm]
25+
[-ClientMediaPortRangeEnabled <Boolean>] [-DisableAppInteractionForAnonymousUsers <Boolean>] [[-Identity] <XdsIdentity>] [-FeedbackSurveyForAnonymousUsers <String>] [-LimitPresenterRolePermissions <Boolean>] [-Force] [-WhatIf] [-Confirm]
3026
[<CommonParameters>]
3127
```
3228

3329
### Instance
3430

35-
```
31+
```powershell
3632
Set-CsTeamsMeetingConfiguration [-Tenant <Guid>] [-LogoURL <String>] [-LegalURL <String>]
3733
[-HelpURL <String>] [-CustomFooterText <String>] [-DisableAnonymousJoin <Boolean>] [-EnableQoS <Boolean>]
3834
[-ClientAudioPort <UInt32>] [-ClientAudioPortRange <UInt32>] [-ClientVideoPort <UInt32>]
3935
[-ClientVideoPortRange <UInt32>] [-ClientAppSharingPort <UInt32>] [-ClientAppSharingPortRange <UInt32>]
40-
[-ClientMediaPortRangeEnabled <Boolean>] [-DisableAppInteractionForAnonymousUsers <Boolean>] [-FeedbackSurveyForAnonymousUsers <String>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
36+
[-ClientMediaPortRangeEnabled <Boolean>] [-DisableAppInteractionForAnonymousUsers <Boolean>] [-FeedbackSurveyForAnonymousUsers <String>] [-LimitPresenterRolePermissions <Boolean>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm]
4137
[<CommonParameters>]
4238
```
4339

@@ -389,6 +385,22 @@ Accept pipeline input: False
389385
Accept wildcard characters: False
390386
```
391387
388+
### -LimitPresenterRolePermissions
389+
When set to True, users within the Tenant will have their presenter role capabilities limited.
390+
When set to False, the presenter role capabilities will not be impacted and will remain as is.
391+
392+
```yaml
393+
Type: Boolean
394+
Parameter Sets: (All)
395+
Aliases:
396+
397+
Required: False
398+
Position: Named
399+
Default value: None
400+
Accept pipeline input: False
401+
Accept wildcard characters: False
402+
```
403+
392404
### -WhatIf
393405
Shows what would happen if the cmdlet runs.
394406
The cmdlet is not run.

teams/teams-ps/teams/Set-CsTeamsUpgradeConfiguration.md

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ online version: https://learn.microsoft.com/powershell/module/teams/set-csteamsu
44
applicable: Microsoft Teams
55
title: Set-CsTeamsUpgradeConfiguration
66
schema: 2.0.0
7-
manager: bulenteg
8-
author: tomkau
9-
ms.author: tomkau
10-
ms.reviewer:
117
---
128

139
# Set-CsTeamsUpgradeConfiguration
@@ -18,14 +14,14 @@ Administrators can use Set-CsTeamsUpgradeConfiguration to manage certain aspects
1814
## SYNTAX
1915

2016
### Identity (Default)
21-
```
22-
Set-CsTeamsUpgradeConfiguration [-Tenant <Guid>] [-DownloadTeams <Boolean>] [-SfBMeetingJoinUx <String>]
17+
```powershell
18+
Set-CsTeamsUpgradeConfiguration [-Tenant <Guid>] [-DownloadTeams <Boolean>] [-SfBMeetingJoinUx <String>] [-BlockLegacyAuthorization <Boolean>]
2319
[[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2420
```
2521

2622
### Instance
27-
```
28-
Set-CsTeamsUpgradeConfiguration [-Tenant <Guid>] [-DownloadTeams <Boolean>] [-SfBMeetingJoinUx <String>]
23+
```powershell
24+
Set-CsTeamsUpgradeConfiguration [-Tenant <Guid>] [-DownloadTeams <Boolean>] [-SfBMeetingJoinUx <String>] [-BlockLegacyAuthorization <Boolean>]
2925
[-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3026
```
3127

@@ -94,7 +90,7 @@ Accept pipeline input: False
9490
Accept wildcard characters: False
9591
```
9692
### -Force
97-
{{Fill Force Description}}
93+
Suppresses the display of any non-fatal error message that might arise when running the command.
9894
9995
```yaml
10096
Type: SwitchParameter
@@ -110,7 +106,7 @@ Accept wildcard characters: False
110106
```
111107
112108
### -Identity
113-
{{Fill Identity Description}}
109+
For internal use only.
114110
115111
```yaml
116112
Type: XdsIdentity
@@ -126,7 +122,7 @@ Accept wildcard characters: False
126122
```
127123
128124
### -Tenant
129-
{{Fill Tenant Description}}
125+
For internal use only.
130126
131127
```yaml
132128
Type: Guid
@@ -158,6 +154,23 @@ Accept pipeline input: False
158154
Accept wildcard characters: False
159155
```
160156
157+
### -BlockLegacyAuthorization
158+
This setting will force Teams clients to enforce session revocation for core Messaging and Calling/Meeting scenarios.
159+
If turned ON, session revocation will be enforced for calls, chats and meetings for opted-in users.
160+
If turned OFF, session revocation will not be enforced for calls, chats and meetings for opted-in users
161+
162+
```yaml
163+
Type: Boolean
164+
Parameter Sets: (All)
165+
Aliases:
166+
167+
Required: False
168+
Position: Named
169+
Default value: None
170+
Accept pipeline input: False
171+
Accept wildcard characters: False
172+
```
173+
161174
### CommonParameters
162175
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).
163176

0 commit comments

Comments
 (0)