Skip to content

Commit 4d32c0a

Browse files
author
Andy Wang
committed
Update Teams AI Policy cmdlets docs with SpeakerAttributionBYOD
1 parent 88ed2a9 commit 4d32c0a

File tree

5 files changed

+69
-12
lines changed

5 files changed

+69
-12
lines changed

teams/teams-ps/teams/Get-CsTeamsAIPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Get-CsTeamsAIPolicy [[-Identity] <String>] [-Filter <String>] [<CommonParameters
2323

2424
## DESCRIPTION
2525

26-
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
26+
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
2727

2828
This cmdlet retrieves all Teams AI policies for the tenant.
2929

@@ -34,7 +34,7 @@ This cmdlet retrieves all Teams AI policies for the tenant.
3434
PS C:\> Get-CsTeamsAIPolicy
3535
```
3636

37-
Retrieves Teams AI policies and shows "EnrollFace" and "EnrollVoice" values.
37+
Retrieves Teams AI policies and shows "EnrollFace", "EnrollVoice" and "SpeakerAttributionBYOD" values.
3838

3939
## PARAMETERS
4040

teams/teams-ps/teams/Grant-CsTeamsAIPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Grant-CsTeamsAIPolicy [[-PolicyName] <String>] [-Global] [-Force] [<CommonParame
3939

4040
## DESCRIPTION
4141

42-
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
42+
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
4343

4444
This cmdlet applies an instance of the Teams AI policy to users or groups in a tenant.
4545

teams/teams-ps/teams/New-CsTeamsAIPolicy.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ This cmdlet creates a Teams AI policy.
1717
## SYNTAX
1818

1919
```powershell
20-
New-CsTeamsAIPolicy -Identity <String> [-EnrollFace <boolean>] [-EnrollVoice <boolean>] [-Description <string>] [<CommonParameters>]
20+
New-CsTeamsAIPolicy -Identity <String>
21+
[-EnrollFace <boolean>]
22+
[-EnrollVoice <boolean>]
23+
[-SpeakerAttributionBYOD <boolean>]
24+
[-Description <string>]
25+
[<CommonParameters>]
2126
```
2227

2328
## DESCRIPTION
2429

25-
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
30+
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
2631

2732
This cmdlet creates a Teams AI policy. If you get an error that the policy already exists, it means that the policy already exists for your tenant. In this case, run Get-CsTeamsAIPolicy.
2833

@@ -82,6 +87,21 @@ Accept pipeline input: False
8287
Accept wildcard characters: False
8388
```
8489
90+
### -SpeakerAttributionBYOD
91+
Policy value of the Teams AI SpeakerAttributionBYOD policy. SpeakerAttributionBYOD controls usage of speaker attribution in BYOD scenarios in Teams.
92+
93+
```yaml
94+
Type: Boolean
95+
Parameter Sets: ("Enabled","Disabled")
96+
Aliases:
97+
98+
Required: True
99+
Position: Named
100+
Default value: Enabled
101+
Accept pipeline input: False
102+
Accept wildcard characters: False
103+
```
104+
85105
### -Description
86106
Enables administrators to provide explanatory text about the Teams AI policy.
87107
For example, the Description might indicate the users the policy should be assigned to.

teams/teams-ps/teams/Remove-CsTeamsAIPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Remove-CsTeamsAIPolicy -Identity <String> [<CommonParameters>]
2323

2424
## DESCRIPTION
2525

26-
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
26+
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
2727

2828
This cmdlet deletes a Teams AI policy with the specified identity string.
2929

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

Lines changed: 43 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@ This cmdlet sets Teams AI policy value for users in the tenant.
1717

1818
## SYNTAX
1919

20-
```
20+
```powershell
2121
Set-CsTeamsAIPolicy [[-Identity] <string>]
2222
[-EnrollFace <Boolean>]
2323
[-EnrollVoice <Boolean>]
24+
[-SpeakerAttributionBYOD <Boolean>]
2425
[-Description <string>]
2526
[<CommonParameters>]
2627
```
2728

2829
## DESCRIPTION
2930

30-
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
31+
The new csTeamsAIPolicy will replace the existing enrollment settings in csTeamsMeetingPolicy, providing enhanced flexibility and control for Teams meeting administrators. Unlike the current single setting, EnrollUserOverride, which applies to both face and voice enrollment, the new policy introduces two distinct settings: EnrollFace and EnrollVoice. These can be individually set to Enabled or Disabled, offering more granular control over biometric enrollments. A new setting, SpeakerAttributionBYOD, is also being added to csTeamsAIPolicy. This allows IT admins to turn off speaker attribution in BYOD scenarios, giving them greater control over how voice data is managed in such environments. This setting can be set to Enabled or Disabled, and will be Enabled by default. In addition to improving the management of face and voice data, the csTeamsAIPolicy is designed to support future AI-related settings in Teams, making it a scalable solution for evolving needs.
3132

32-
This cmdlet sets the Teams AI policy EnrollFace and EnrollVoice value for the tenant. The values of EnrollFace and EnrollVoice can be set to "Enabled" or "Disabled".
33+
This cmdlet sets the EnrollFace, EnrollVoice, and SpeakerAttributionBYOD values within the csTeamsAIPolicy. These policies can be assigned to users, and each setting can be configured as "Enabled" or "Disabled". "
3334

3435
## EXAMPLES
3536

@@ -49,32 +50,53 @@ Set Teams AI policy "EnrollVoice" value to "Disabled" for global as default.
4950

5051
### Example 3
5152
```powershell
53+
PS C:\> Set-CsTeamsAIPolicy -Identity Global -SpeakerAttributionBYOD Disabled
54+
```
55+
56+
Set Teams AI policy "SpeakerAttributionBYOD" value to "Disabled" for global as default.
57+
58+
### Example 4
59+
```powershell
5260
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled
5361
```
5462

5563
Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test".
5664

57-
### Example 4
65+
### Example 5
5866
```powershell
5967
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled
6068
```
6169

6270
Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test".
6371

64-
### Example 5
72+
### Example 6
73+
```powershell
74+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionBYOD Enabled
75+
```
76+
77+
Set Teams AI policy "SpeakerAttributionBYOD" value to "Enabled" for identity "Test".
78+
79+
### Example 7
6580
```powershell
6681
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
6782
```
6883

6984
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
7085

71-
### Example 6
86+
### Example 8
7287
```powershell
7388
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
7489
```
7590

7691
Set Teams AI policy "EnrollVoice" value to "Disabled" for identity "Test".
7792

93+
### Example 9
94+
```powershell
95+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionBYOD Disabled
96+
```
97+
98+
Set Teams AI policy "SpeakerAttributionBYOD" value to "Disabled" for identity "Test".
99+
78100
## PARAMETERS
79101

80102
### -Identity
@@ -122,6 +144,21 @@ Accept pipeline input: False
122144
Accept wildcard characters: False
123145
```
124146
147+
### -SpeakerAttributionBYOD
148+
Policy value of the Teams AI SpeakerAttributionBYOD policy. SpeakerAttributionBYOD controls usage of speaker attribution in BYOD scenarios in Teams.
149+
150+
```yaml
151+
Type: Boolean
152+
Parameter Sets: ("Enabled","Disabled")
153+
Aliases:
154+
155+
Required: True
156+
Position: Named
157+
Default value: Enabled
158+
Accept pipeline input: False
159+
Accept wildcard characters: False
160+
```
161+
125162
### -Description
126163
Enables administrators to provide explanatory text about the Teams AI policy.
127164
For example, the Description might indicate the users the policy should be assigned to.

0 commit comments

Comments
 (0)