Skip to content

Commit edd0642

Browse files
authored
Merge pull request #12552 from alejandramunozv/main
Update policy with new parameters
2 parents 92eddb8 + 1904f41 commit edd0642

File tree

4 files changed

+126
-6
lines changed

4 files changed

+126
-6
lines changed

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

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
manager: bulenteg
99
author: serdarsoysal
1010
ms.author: serdars
11-
ms.reviewer:
11+
ms.reviewer: alejandramu
1212
---
1313

1414
# New-CsTeamsCallingPolicy
@@ -52,6 +52,7 @@ New-CsTeamsCallingPolicy [-Identity] <string>
5252
[-PreventTollBypass <boolean>]
5353
[-SpamFilteringEnabledType <string>]
5454
[-VoiceSimulationInInterpreter <string>]
55+
[-RealTimeText <string>]
5556
[-WhatIf]
5657
[<CommonParameters>]
5758
```
@@ -669,6 +670,25 @@ Accept pipeline input: False
669670
Accept wildcard characters: False
670671
```
671672

673+
### -RealTimeText
674+
Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time.
675+
676+
Possible Values:
677+
- Enabled: User is allowed to turn on real time text.
678+
- Disabled: User is not allowed to turn on real time text.
679+
680+
```yaml
681+
Type: String
682+
Parameter Sets: (All)
683+
Aliases:
684+
685+
Required: False
686+
Position: Named
687+
Default value: Enabled
688+
Accept pipeline input: False
689+
Accept wildcard characters: False
690+
```
691+
672692
### -WhatIf
673693
Shows what would happen if the cmdlet runs.
674694
The cmdlet is not run.

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

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ applicable: Microsoft Teams
66
title: New-CsTeamsMeetingPolicy
77
schema: 2.0.0
88
manager: bulenteg
9-
ms.reviewer: wblocker
10-
ms.date: 11/12/2024
9+
ms.reviewer: alejandramu
10+
ms.date: 2/26/2025
1111
---
1212

1313
# New-CsTeamsMeetingPolicy
@@ -119,6 +119,8 @@ New-CsTeamsMeetingPolicy [-Identity] <XdsIdentity>
119119
[-WatermarkForCameraVideoPattern <String>]
120120
[-WatermarkForScreenSharingOpacity <Int64>]
121121
[-WatermarkForScreenSharingPattern <String>]
122+
[-AllowedUsersForMeetingDetails <String>]
123+
[-RealTimeText <String>]
122124
[-WhatIf]
123125
[-WhoCanRegister <Object>]
124126
[<CommonParameters>]
@@ -1868,6 +1870,44 @@ Accept pipeline input: False
18681870
Accept wildcard characters: False
18691871
```
18701872

1873+
### -AllowedUsersForMeetingDetails
1874+
Controls which users should have ability to see the meeting info details on join screen. 'None' option should disable the feature completely.
1875+
1876+
Possible Values:
1877+
- UsersAllowedToByPassTheLobby: Users who are able to bypass lobby can see the meeting info details.
1878+
- Everyone: All meeting participants can see the meeting info details.
1879+
1880+
```yaml
1881+
Type: String
1882+
Parameter Sets: (All)
1883+
Aliases:
1884+
1885+
Required: False
1886+
Position: Named
1887+
Default value: UsersAllowedToByPassTheLobby
1888+
Accept pipeline input: False
1889+
Accept wildcard characters: False
1890+
```
1891+
1892+
### -RealTimeText
1893+
Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time.
1894+
1895+
Possible Values:
1896+
- Enabled: User is allowed to turn on real time text.
1897+
- Disabled: User is not allowed to turn on real time text.
1898+
1899+
```yaml
1900+
Type: String
1901+
Parameter Sets: (All)
1902+
Aliases:
1903+
1904+
Required: False
1905+
Position: Named
1906+
Default value: Enabled
1907+
Accept pipeline input: False
1908+
Accept wildcard characters: False
1909+
```
1910+
18711911
### -WhatIf
18721912
Shows what would happen if the cmdlet runs.
18731913
The cmdlet is not run.

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

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
manager: bulenteg
99
author: serdarsoysal
1010
ms.author: serdars
11-
ms.reviewer:
11+
ms.reviewer: alejandramu
1212
---
1313

1414
# Set-CsTeamsCallingPolicy
@@ -51,6 +51,7 @@ Set-CsTeamsCallingPolicy [-Identity] <string>
5151
[-PreventTollBypass <boolean>]
5252
[-SpamFilteringEnabledType <string>]
5353
[-VoiceSimulationInInterpreter <string>]
54+
[-RealTimeText <string>]
5455
[-WhatIf]
5556
[<CommonParameters>]
5657
```
@@ -673,6 +674,25 @@ Accept pipeline input: False
673674
Accept wildcard characters: False
674675
```
675676

677+
### -RealTimeText
678+
Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time.
679+
680+
Possible Values:
681+
- Enabled: User is allowed to turn on real time text.
682+
- Disabled: User is not allowed to turn on real time text.
683+
684+
```yaml
685+
Type: String
686+
Parameter Sets: (All)
687+
Aliases:
688+
689+
Required: False
690+
Position: Named
691+
Default value: Enabled
692+
Accept pipeline input: False
693+
Accept wildcard characters: False
694+
```
695+
676696
### -WhatIf
677697
Shows what would happen if the cmdlet runs.
678698
The cmdlet is not run.

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

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ schema: 2.0.0
88
manager: bulenteg
99
author: tomkau
1010
ms.author: tomkau
11-
ms.reviewer: wblocker
12-
ms.date: 11/12/2024
11+
ms.reviewer: alejandramu
12+
ms.date: 2/26/2025
1313
---
1414

1515
# Set-CsTeamsMeetingPolicy
@@ -123,6 +123,8 @@ Set-CsTeamsMeetingPolicy [[-Identity] <XdsIdentity>]
123123
[-WatermarkForCameraVideoPattern <String>]
124124
[-WatermarkForScreenSharingOpacity <Int32>]
125125
[-WatermarkForScreenSharingPattern <String>]
126+
[-AllowedUsersForMeetingDetails <String>]
127+
[-RealTimeText <String>]
126128
[-WhatIf]
127129
[-WhoCanRegister <String>]
128130
[<CommonParameters>]
@@ -1938,6 +1940,44 @@ Accept pipeline input: False
19381940
Accept wildcard characters: False
19391941
```
19401942

1943+
### -AllowedUsersForMeetingDetails
1944+
Controls which users should have ability to see the meeting info details on join screen. 'None' option should disable the feature completely.
1945+
1946+
Possible Values:
1947+
- UsersAllowedToByPassTheLobby: Users who are able to bypass lobby can see the meeting info details.
1948+
- Everyone: All meeting participants can see the meeting info details.
1949+
1950+
```yaml
1951+
Type: String
1952+
Parameter Sets: (All)
1953+
Aliases:
1954+
1955+
Required: False
1956+
Position: Named
1957+
Default value: UsersAllowedToByPassTheLobby
1958+
Accept pipeline input: False
1959+
Accept wildcard characters: False
1960+
```
1961+
1962+
### -RealTimeText
1963+
Allows users to use real time text during a meeting, allowing them to communicate by typing their messages in real time.
1964+
1965+
Possible Values:
1966+
- Enabled: User is allowed to turn on real time text.
1967+
- Disabled: User is not allowed to turn on real time text.
1968+
1969+
```yaml
1970+
Type: String
1971+
Parameter Sets: (All)
1972+
Aliases:
1973+
1974+
Required: False
1975+
Position: Named
1976+
Default value: Enabled
1977+
Accept pipeline input: False
1978+
Accept wildcard characters: False
1979+
```
1980+
19411981
### -WhatIf
19421982
Shows what would happen if the cmdlet runs.
19431983
The cmdlet is not run.

0 commit comments

Comments
 (0)