Skip to content

Commit f1085c5

Browse files
authored
Merge pull request #12638 from alejandramunozv/main
Update missing parameters
2 parents a4af274 + 0133073 commit f1085c5

6 files changed

+98
-78
lines changed

teams/teams-ps/teams/New-CsTeamsChannelsPolicy.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The CsTeamsChannelsPolicy allows you to manage features related to the Teams & C
1616
```
1717
New-CsTeamsChannelsPolicy [-Tenant <Guid>] [-AllowOrgWideTeamCreation <Boolean>]
1818
[-EnablePrivateTeamDiscovery <Boolean>] [-AllowPrivateChannelCreation <Boolean>]
19-
[-AllowUserToParticipateInExternalSharedChannel <Boolean>] [-AllowChannelSharingToExternalUser <Boolean>] [-AllowSharedChannelCreation <Boolean>]
19+
[-AllowUserToParticipateInExternalSharedChannel <Boolean>] [-AllowChannelSharingToExternalUser <Boolean>] [-AllowSharedChannelCreation <Boolean>] [-ThreadedChannelCreation <String>]
2020
[-Identity] <XdsIdentity> [-InMemory] [-Force] [-WhatIf] [-Confirm] [-Description <String>] [<CommonParameters>]
2121
```
2222

@@ -200,6 +200,25 @@ Accept pipeline input: False
200200
Accept wildcard characters: False
201201
```
202202
203+
### -ThreadedChannelCreation
204+
This setting enables/disables Threaded Channel creation and editing.
205+
206+
Possible Values:
207+
- Enabled: Users are allowed to create and edit Threaded Channels.
208+
- Disabled: Users are not allowed to create and edit Threaded Channels.
209+
210+
```yaml
211+
Type: String
212+
Parameter Sets: (All)
213+
Aliases:
214+
215+
Required: False
216+
Position: Named
217+
Default value: Enabled
218+
Accept pipeline input: False
219+
Accept wildcard characters: False
220+
```
221+
203222
### -Description
204223
Specifies the description of the policy.
205224

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

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This cmdlet allows you to create a new TeamsEventsPolicy instance and set its pr
1818
New-CsTeamsEventsPolicy [-Identity] <String> [-AllowWebinars <String>] [-AllowTownhalls <String>] [-AllowEmailEditing <String>] [-Description <String>]
1919
[-TownhallEventAttendeeAccess <String>] [-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
2020
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>] [-AllowEventIntegrations <Boolean>] [-TownhallChatExperience <String>]
21-
[-UseMicrosoftECDN <String>] [-EventAccessType <String>] [-ParticipantSlideControl <String>] [-BroadcastPremiumApps <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
21+
[-UseMicrosoftECDN <String>] [-EventAccessType <String>] [-BroadcastPremiumApps <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -295,33 +295,12 @@ Accept pipeline input: False
295295
Accept wildcard characters: False
296296
```
297297
298-
### -ParticipantSlideControl
299-
This setting governs whether participants can give control of presentation slides during meetings scheduled by this user. Set the type of users you want to be able to give control and be given control of presentation slides in meetings. Users excluded from the selected group will be prohibited from giving control, or being given control, in a meeting.
300-
301-
Possible values are:
302-
- **Everyone**: Anyone with the join link may enter the event.
303-
- **EveryoneInOrganization**: Only internal AAD users and Multi-Tenant Organization (MTO) users can give or take control.
304-
- **EveryoneInOrganizationAndGuests**: Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event.
305-
- **None**: No one in the meeting can give or take control.
306-
307-
```yaml
308-
Type: String
309-
Parameter Sets: (All)
310-
Aliases:
311-
312-
Required: False
313-
Position: Named
314-
Default value: EveryoneInOrganization
315-
Accept pipeline input: False
316-
Accept wildcard characters: False
317-
```
318-
319298
### -BroadcastPremiumApps
320-
This setting governs whether an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group.
299+
This setting will enable Tenant Admins to specify if an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group.
321300
322301
Possible values are:
323-
- **Enabled**: An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall.
324-
- **Disabled**: An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall.
302+
- **Enabled**: An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall
303+
- **Disabled**: An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall
325304
326305
```yaml
327306
Type: String

teams/teams-ps/teams/Set-CsTeamsChannelsPolicy.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The CsTeamsChannelsPolicy allows you to manage features related to the Teams and
2222
```
2323
Set-CsTeamsChannelsPolicy [-Tenant <Guid>] [-AllowOrgWideTeamCreation <Boolean>]
2424
[-EnablePrivateTeamDiscovery <Boolean>] [-AllowPrivateChannelCreation <Boolean>]
25-
[-AllowUserToParticipateInExternalSharedChannel <Boolean>] [-AllowChannelSharingToExternalUser <Boolean>] [-AllowSharedChannelCreation <Boolean>]
25+
[-AllowUserToParticipateInExternalSharedChannel <Boolean>] [-AllowChannelSharingToExternalUser <Boolean>] [-AllowSharedChannelCreation <Boolean>] [-ThreadedChannelCreation <String>]
2626
[[-Identity] <XdsIdentity>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2727
```
2828

@@ -227,6 +227,25 @@ Accept pipeline input: False
227227
Accept wildcard characters: False
228228
```
229229
230+
### -ThreadedChannelCreation
231+
This setting enables/disables Threaded Channel creation and editing.
232+
233+
Possible Values:
234+
- Enabled: Users are allowed to create and edit Threaded Channels.
235+
- Disabled: Users are not allowed to create and edit Threaded Channels.
236+
237+
```yaml
238+
Type: String
239+
Parameter Sets: (All)
240+
Aliases:
241+
242+
Required: False
243+
Position: Named
244+
Default value: Enabled
245+
Accept pipeline input: False
246+
Accept wildcard characters: False
247+
```
248+
230249
### CommonParameters
231250
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).
232251

teams/teams-ps/teams/Set-CsTeamsEventsPolicy.md

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ Set-CsTeamsEventsPolicy [-AllowWebinars <String>] [-EventAccessType <String>] [-
2121
[-AllowedTownhallTypesForRecordingPublish <String>] [-TownhallChatExperience <String>] [-Description <String>]
2222
[-RecordingForTownhall <String>] [-RecordingForWebinar <String>]
2323
[-TranscriptionForTownhall <String>] [-TranscriptionForWebinar <String>]
24-
[-UseMicrosoftECDN <Boolean>] [-ParticipantSlideControl <String>] [-BroadcastPremiumApps <String>]
25-
[-Identity] <String> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
24+
[-UseMicrosoftECDN <Boolean>] [-BroadcastPremiumApps <String>]
2625
```
2726

2827
## DESCRIPTION
@@ -388,33 +387,12 @@ Accept pipeline input: False
388387
Accept wildcard characters: False
389388
```
390389
391-
### -ParticipantSlideControl
392-
This setting governs whether participants can give control of presentation slides during meetings scheduled by this user. Set the type of users you want to be able to give control and be given control of presentation slides in meetings. Users excluded from the selected group will be prohibited from giving control, or being given control, in a meeting.
393-
394-
Possible values are:
395-
- **Everyone**: Anyone with the join link may enter the event.
396-
- **EveryoneInOrganization**: Only internal AAD users and Multi-Tenant Organization (MTO) users can give or take control.
397-
- **EveryoneInOrganizationAndGuests**: Only those who are Guests to the tenant, MTO users, and internal AAD users may enter the event.
398-
- **None**: No one in the meeting can give or take control.
399-
400-
```yaml
401-
Type: String
402-
Parameter Sets: (All)
403-
Aliases:
404-
405-
Required: False
406-
Position: Named
407-
Default value: EveryoneInOrganization
408-
Accept pipeline input: False
409-
Accept wildcard characters: False
410-
```
411-
412390
### -BroadcastPremiumApps
413-
This setting governs whether an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group.
391+
This setting will enable Tenant Admins to specify if an organizer of a Teams Premium town hall may add an app that is accessible by everyone, including attendees, in a broadcast style Event including a Town hall. This does not include control over apps (such as AI Producer and Custom Streaming Apps) that are only accessible by the Event group.
414392
415393
Possible values are:
416-
- **Enabled**: An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall.
417-
- **Disabled**: An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall.
394+
- **Enabled**: An organizer of a Premium town hall can add a Premium App such as Polls to the Town hall
395+
- **Disabled**: An organizer of a Premium town hall CANNOT add a Premium App such as Polls to the Town hall
418396
419397
```yaml
420398
Type: String

teams/teams-ps/teams/Set-CsTenantFederationConfiguration.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ These settings are used to determine which domains (if any) your users are allow
2323
```
2424
Set-CsTenantFederationConfiguration [-Tenant <Guid>]
2525
[-AllowedDomains <IAllowedDomainsChoice>] [-BlockedDomains <List>] [-BlockAllSubdomains <Boolean>]
26-
[-AllowFederatedUsers <Boolean>] [-AllowPublicUsers <Boolean>] [-AllowTeamsConsumer <Boolean>] [-AllowTeamsConsumerInbound <Boolean>]
26+
[-AllowFederatedUsers <Boolean>] [-AllowTeamsConsumer <Boolean>] [-AllowTeamsConsumerInbound <Boolean>]
2727
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>] [-RestrictTeamsConsumerToExternalUserProfiles <Boolean>]
2828
[-AllowedDomainsAsAList <List>] [-ExternalAccessWithTrialTenants <ExternalAccessWithTrialTenantsType>]
2929
[-AllowedTrialTenantDomains <List>]
@@ -33,7 +33,7 @@ Set-CsTenantFederationConfiguration [-Tenant <Guid>]
3333
### Instance
3434
```
3535
Set-CsTenantFederationConfiguration [-Tenant <Guid>] [-AllowedDomains <IAllowedDomainsChoice>]
36-
[-BlockedDomains <List>] [-BlockAllSubdomains <Boolean>] [-AllowFederatedUsers <Boolean>] [-AllowPublicUsers <Boolean>]
36+
[-BlockedDomains <List>] [-BlockAllSubdomains <Boolean>] [-AllowFederatedUsers <Boolean>]
3737
[-TreatDiscoveredPartnersAsUnverified <Boolean>] [-SharedSipAddressSpace <Boolean>] [-RestrictTeamsConsumerToExternalUserProfiles <Boolean>]
3838
[-AllowedDomainsAsAList <List>] [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3939
```
@@ -54,13 +54,6 @@ However, administrators must use the `Set-CsTenantPublicProvider` cmdlet in orde
5454

5555
### -------------------------- Example 1 --------------------------
5656
```
57-
Set-CsTenantFederationConfiguration -AllowPublicUsers $False
58-
```
59-
60-
The command shown in Example 1 disables communication with public providers for the current tenant.
61-
62-
### -------------------------- Example 2 --------------------------
63-
```
6457
$x = New-CsEdgeDomainPattern -Domain "fabrikam.com"
6558
6659
Set-CsTenantFederationConfiguration -BlockedDomains @{Replace=$x}
@@ -260,22 +253,6 @@ Accept pipeline input: False
260253
Accept wildcard characters: False
261254
```
262255
263-
### -AllowPublicUsers
264-
When set to True (the default value) users will be potentially allowed to communicate with users who have accounts on public IM and presence providers such as Windows Live, Yahoo, and AOL.
265-
The collection of public providers that users can actually communicate with is managed by using the `Set-CsTenantPublicProvider` cmdlet.
266-
267-
```yaml
268-
Type: Boolean
269-
Parameter Sets: (All)
270-
Aliases:
271-
applicable: Microsoft Teams
272-
273-
Required: False
274-
Position: Named
275-
Default value: None
276-
Accept pipeline input: False
277-
Accept wildcard characters: False
278-
```
279256
### -AllowTeamsConsumer
280257
Allows federation with people using Teams with an account that's not managed by an organization.
281258

teams/teams-ps/teams/set-csteamsmessagingconfiguration.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ Set-CsTeamsMessagingConfiguration [-Identity] <String>
2424
[-Force]
2525
[-MessagingNotes <String>]
2626
[-UrlReputationCheck <string>]
27+
[-ContentBasedPhishingCheck <string>]
28+
[-ReportIncorrectSecurityDetections<string>]
2729
[-WhatIf]
2830
[<CommonParameters>]
2931
```
@@ -205,6 +207,52 @@ Accept pipeline input: False
205207
Accept wildcard characters: False
206208
```
207209
210+
### -ContentBasedPhishingCheck
211+
212+
>[!NOTE]
213+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
214+
215+
This setting determines if Content Based Phishing Check in teams messaging across the whole tenant
216+
217+
Possible Values:
218+
- Enabled
219+
- Disabled
220+
221+
```yaml
222+
Type: String
223+
Parameter Sets: (All)
224+
Aliases:
225+
226+
Required: False
227+
Position: Named
228+
Default value: Enabled
229+
Accept pipeline input: False
230+
Accept wildcard characters: False
231+
```
232+
233+
### -ReportIncorrectSecurityDetections
234+
235+
>[!NOTE]
236+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
237+
238+
This setting determines if Report Incorrect Security Detections is enabled in teams messaging across the whole tenant
239+
240+
Possible Values:
241+
- Enabled
242+
- Disabled
243+
244+
```yaml
245+
Type: String
246+
Parameter Sets: (All)
247+
Aliases:
248+
249+
Required: False
250+
Position: Named
251+
Default value: Enabled
252+
Accept pipeline input: False
253+
Accept wildcard characters: False
254+
```
255+
208256
### -WhatIf
209257
210258
Shows what would happen if the cmdlet runs.

0 commit comments

Comments
 (0)