Skip to content

Commit fba8104

Browse files
authored
Merge pull request #12359 from alejandramunozv/main
Adding missing parameters from TPM release
2 parents e6bcadd + 747e5cf commit fba8104

File tree

5 files changed

+254
-1
lines changed

5 files changed

+254
-1
lines changed

teams/teams-ps/teams/New-CsTeamsCallingPolicy.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ New-CsTeamsCallingPolicy [-Identity] <string> [-Description <string>] [-AllowPri
2727
[-AllowTranscriptionForCalling <boolean>] [-PopoutForIncomingPstnCalls <string>] [-PopoutAppPathForIncomingPstnCalls <string>]
2828
[-LiveCaptionsEnabledTypeForCalling <string>] [-AutoAnswerEnabledType <string>] [-SpamFilteringEnabledType <string>]
2929
[-CallRecordingExpirationDays <long>] [-AllowCallRedirect <string>] [-Copilot <string>] [-EnableWebPstnMediaBypass <Boolean>]
30-
[-InboundPstnCallRoutingTreatment <string>] [-InboundFederatedCallRoutingTreatment <string>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
30+
[-InboundPstnCallRoutingTreatment <string>] [-InboundFederatedCallRoutingTreatment <string>] [-AIInterpreter <string>]
31+
[-VoiceSimulationInInterpretation <string>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
3132
```
3233

3334
## DESCRIPTION
@@ -45,6 +46,29 @@ values in the Global policy instance.
4546

4647
## PARAMETERS
4748

49+
### -AIInterpreter
50+
>[!NOTE]
51+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
52+
53+
Enables the user to use the AI Interpreter related features
54+
55+
Possible Values:
56+
- Disabled
57+
- Enabled
58+
59+
```yaml
60+
Type: String
61+
Parameter Sets: (All)
62+
Aliases:
63+
Applicable: Microsoft Teams
64+
65+
Required: False
66+
Position: Named
67+
Default value: None
68+
Accept pipeline input: False
69+
Accept wildcard characters: False
70+
```
71+
4872
### -AllowCallForwardingToPhone
4973
Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to any phone number.
5074
@@ -521,6 +545,32 @@ Accept pipeline input: False
521545
Accept wildcard characters: False
522546
```
523547

548+
### -VoiceSimulationInInterpretation
549+
550+
>[!NOTE]
551+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
552+
553+
Enables the user to use the voice simulation feature while being AI interpreted.
554+
555+
Possible Values:
556+
- DisabledUserOverride
557+
- Disabled
558+
- Enabled
559+
- EnabledUserOverride
560+
561+
```yaml
562+
Type: String
563+
Parameter Sets: (All)
564+
Aliases:
565+
Applicable: Microsoft Teams
566+
567+
Required: False
568+
Position: Named
569+
Default value: None
570+
Accept pipeline input: False
571+
Accept wildcard characters: False
572+
```
573+
524574
### -Force
525575
Suppresses any confirmation prompts that would otherwise be displayed before making changes.
526576

teams/teams-ps/teams/New-CsTeamsMeetingPolicy.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,12 @@ New-CsTeamsMeetingPolicy [-Identity] <XdsIdentity>
8989
[-LiveCaptionsEnabledType <String>]
9090
[-LiveInterpretationEnabledType <String>]
9191
[-LiveStreamingMode <String>]
92+
[-LobbyChats <string>]
9293
[-MediaBitRateKb <UInt32>]
9394
[-MeetingChatEnabledType <String>]
9495
[-MeetingInviteLanguages <String>]
9596
[-NewMeetingRecordingExpirationDays <Int32>]
97+
[-NoiseSuppressionForDialInParticipants <String>]
9698
[-ParticipantNameChange <String>]
9799
[-PreferredMeetingProviderForIslandsMode <String>]
98100
[-QnAEngagementMode <String>]
@@ -1312,6 +1314,30 @@ Possible values are:
13121314
- Disabled (default)
13131315
- Enabled
13141316
1317+
```yaml
1318+
Type: String
1319+
Parameter Sets: (All)
1320+
Aliases:
1321+
1322+
Required: False
1323+
Position: Named
1324+
Default value: None
1325+
Accept pipeline input: False
1326+
Accept wildcard characters: False
1327+
```
1328+
1329+
### -LobbyChats
1330+
1331+
>[!NOTE]
1332+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
1333+
1334+
Determines whether chat messages are allowed in the lobby.
1335+
1336+
Possible values are:
1337+
1338+
- Enabled
1339+
- Disabled
1340+
13151341
```yaml
13161342
Type: String
13171343
Parameter Sets: (All)
@@ -1391,6 +1417,32 @@ Accept pipeline input: False
13911417
Accept wildcard characters: False
13921418
```
13931419

1420+
### -NoiseSuppressionForDialInParticipants
1421+
1422+
>[!NOTE]
1423+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
1424+
1425+
Control Noises Supression Feature for PST legs joining a meeting.
1426+
1427+
Possible Values:
1428+
1429+
- MicrosoftDefault
1430+
- Enabled
1431+
- Disabled
1432+
1433+
```yaml
1434+
Type: String
1435+
Parameter Sets: (All)
1436+
Aliases:
1437+
Applicable: Microsoft Teams
1438+
1439+
Required: False
1440+
Position: Named
1441+
Default value: None
1442+
Accept pipeline input: False
1443+
Accept wildcard characters: False
1444+
```
1445+
13941446
### -ParticipantNameChange
13951447
This setting will enable Tenant Admins to turn on/off participant renaming feature.
13961448

teams/teams-ps/teams/Set-CsTeamsCallingPolicy.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Use this cmdlet to update values in existing Teams Calling Policies.
2121
### Identity (Default)
2222
```
2323
Set-CsTeamsCallingPolicy [-Identity] <string>
24+
[-AIInterpreter <string>]
2425
[-AllowCallForwardingToPhone <boolean>]
2526
[-AllowCallForwardingToUser <boolean>]
2627
[-AllowCallGroups <boolean>]
@@ -45,6 +46,7 @@ Set-CsTeamsCallingPolicy [-Identity] <string>
4546
[-PopoutForIncomingPstnCalls <string>]
4647
[-PreventTollBypass <boolean>]
4748
[-SpamFilteringEnabledType <string>]
49+
[-VoiceSimulationInInterpretation <string>]
4850
[-WhatIf]
4951
[<CommonParameters>]
5052
```
@@ -73,6 +75,29 @@ Sets the value of the parameter LiveCaptionsEnabledTypeForCalling to Disabled in
7375

7476
## PARAMETERS
7577

78+
### -AIInterpreter
79+
>[!NOTE]
80+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
81+
82+
Enables the user to use the AI Interpreter related features
83+
84+
Possible Values:
85+
- Disabled
86+
- Enabled
87+
88+
```yaml
89+
Type: String
90+
Parameter Sets: (All)
91+
Aliases:
92+
Applicable: Microsoft Teams
93+
94+
Required: False
95+
Position: Named
96+
Default value: None
97+
Accept pipeline input: False
98+
Accept wildcard characters: False
99+
```
100+
76101
### -AllowCallForwardingToPhone
77102
Enables the user to configure in the Microsoft Teams client call forwarding or simultaneous ringing of inbound calls to any phone number.
78103
@@ -506,6 +531,32 @@ Accept pipeline input: False
506531
Accept wildcard characters: False
507532
```
508533

534+
### -VoiceSimulationInInterpretation
535+
536+
>[!NOTE]
537+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
538+
539+
Enables the user to use the voice simulation feature while being AI interpreted.
540+
541+
Possible Values:
542+
- DisabledUserOverride
543+
- Disabled
544+
- Enabled
545+
- EnabledUserOverride
546+
547+
```yaml
548+
Type: String
549+
Parameter Sets: (All)
550+
Aliases:
551+
Applicable: Microsoft Teams
552+
553+
Required: False
554+
Position: Named
555+
Default value: None
556+
Accept pipeline input: False
557+
Accept wildcard characters: False
558+
```
559+
509560
### -Force
510561
Suppresses any confirmation prompts that would otherwise be displayed before making changes.
511562

teams/teams-ps/teams/Set-CsTeamsMeetingPolicy.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,12 @@ Set-CsTeamsMeetingPolicy [[-Identity] <XdsIdentity>]
9393
[-LiveCaptionsEnabledType <String>]
9494
[-LiveInterpretationEnabledType <String>]
9595
[-LiveStreamingMode <String>]
96+
[-LobbyChat <String> ]
9697
[-MediaBitRateKb <UInt32>]
9798
[-MeetingChatEnabledType <String>]
9899
[-MeetingInviteLanguages <String>]
99100
[-NewMeetingRecordingExpirationDays <Int32>]
101+
[-NoiseSuppressionForDialInParticipants <String>]
100102
[-ParticipantNameChange <String>]
101103
[-PreferredMeetingProviderForIslandsMode <String>]
102104
[-QnAEngagementMode <String>]
@@ -1369,6 +1371,30 @@ Accept pipeline input: False
13691371
Accept wildcard characters: False
13701372
```
13711373
1374+
### -LobbyChats
1375+
1376+
>[!NOTE]
1377+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
1378+
1379+
Determines whether chat messages are allowed in the lobby.
1380+
1381+
Possible values are:
1382+
1383+
- Enabled
1384+
- Disabled
1385+
1386+
```yaml
1387+
Type: String
1388+
Parameter Sets: (All)
1389+
Aliases:
1390+
1391+
Required: False
1392+
Position: Named
1393+
Default value: None
1394+
Accept pipeline input: False
1395+
Accept wildcard characters: False
1396+
```
1397+
13721398
### -MediaBitRateKb
13731399
Determines the media bit rate for audio/video/app sharing transmissions in meetings.
13741400
@@ -1433,6 +1459,31 @@ Type: Int32
14331459
Parameter Sets: (All)
14341460
Aliases:
14351461
1462+
Required: False
1463+
Position: Named
1464+
Default value: None
1465+
Accept pipeline input: False
1466+
Accept wildcard characters: False
1467+
```
1468+
### -NoiseSuppressionForDialInParticipants
1469+
1470+
>[!NOTE]
1471+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
1472+
1473+
Control Noises Supression Feature for PST legs joining a meeting.
1474+
1475+
Possible Values:
1476+
1477+
- MicrosoftDefault
1478+
- Enabled
1479+
- Disabled
1480+
1481+
```yaml
1482+
Type: String
1483+
Parameter Sets: (All)
1484+
Aliases:
1485+
Applicable: Microsoft Teams
1486+
14361487
Required: False
14371488
Position: Named
14381489
Default value: None
@@ -1837,6 +1888,7 @@ Possible values:
18371888
- Everyone
18381889
- EveryoneInCompany
18391890

1891+
18401892
```yaml
18411893
Type: String
18421894
Parameter Sets: (All)

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ Set-CsTeamsMessagingConfiguration [-Identity] <String>
2020
[-CustomEmojis <Boolean>]
2121
[-EnableInOrganizationChatControl <Boolean>]
2222
[-EnableVideoMessageCaptions <Boolean>]
23+
[-FileTypeCheck <string>]
2324
[-Force]
2425
[-MessagingNotes <String>]
26+
[-UrlReputationCheck <string>]
2527
[-WhatIf]
2628
[<CommonParameters>]
2729
```
@@ -125,6 +127,29 @@ Accept pipeline input: False
125127
Accept wildcard characters: False
126128
```
127129
130+
### -FileTypeCheck
131+
132+
>[!NOTE]
133+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
134+
135+
This setting determines if FileType check in teams messaging across the whole tenant
136+
137+
Possible Values:
138+
- Enabled
139+
- Disabled
140+
141+
```yaml
142+
Type: String
143+
Parameter Sets: (All)
144+
Aliases:
145+
146+
Required: False
147+
Position: Named
148+
Default value: Enabled
149+
Accept pipeline input: False
150+
Accept wildcard characters: False
151+
```
152+
128153
### -Force
129154
130155
The Force switch specifies whether to suppress warning and confirmation messages. It can be useful in scripting to suppress interactive prompts. If the Force switch isn't provided in the command, you're prompted for administrative input if required.
@@ -157,6 +182,29 @@ Accept pipeline input: False
157182
Accept wildcard characters: False
158183
```
159184
185+
### -UrlReputationCheck
186+
187+
>[!NOTE]
188+
>This feature has not been released yet and will have no changes if it is enabled or disabled.
189+
190+
This setting determines if UrlReputationCheck check in teams messaging across the whole tenant
191+
192+
Possible Values:
193+
- Enabled
194+
- Disabled
195+
196+
```yaml
197+
Type: String
198+
Parameter Sets: (All)
199+
Aliases:
200+
201+
Required: False
202+
Position: Named
203+
Default value: Enabled
204+
Accept pipeline input: False
205+
Accept wildcard characters: False
206+
```
207+
160208
### -WhatIf
161209
162210
Shows what would happen if the cmdlet runs.

0 commit comments

Comments
 (0)