Skip to content

Commit 06e4bbd

Browse files
author
Andy Wang
committed
Include SpeakerAttributionForBYOD in Teams AI policy docs
1 parent aa2d20b commit 06e4bbd

File tree

3 files changed

+57
-5
lines changed

3 files changed

+57
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This cmdlet retrieves all Teams AI policies for current tenant.
3434
PS C:\> Get-CsTeamsAIPolicy
3535
```
3636

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

3939
## PARAMETERS
4040

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,21 @@ Accept pipeline input: False
8383
Accept wildcard characters: False
8484
```
8585
86+
### -SpeakerAttributionForBYOD
87+
This setting allows tenant admins to enable or disable speaker attribution in BYOD environments.
88+
89+
```yaml
90+
Type: Boolean
91+
Parameter Sets: ("Attribute","Disabled","Distinguish")
92+
Aliases:
93+
94+
Required: True
95+
Position: Named
96+
Default value: Disabled
97+
Accept pipeline input: False
98+
Accept wildcard characters: False
99+
```
100+
86101
### CommonParameters
87102
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).
88103

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

Lines changed: 41 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ Set-CsTeamsAIPolicy
2222
[[-Identity] <string>]
2323
[-EnrollFace <Enabled/Disabled>]
2424
[-EnrollVoice <Enabled/Disabled>]
25+
[-SpeakerAttributionForBYOD <Attribute/Disabled/Distinguish>]
2526
```
2627

2728
## DESCRIPTION
2829

2930
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.
3031

31-
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".
32+
This cmdlet sets the Teams AI policy values for the tenant.
3233

3334
## EXAMPLES
3435

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

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

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

56-
### Example 4
64+
### Example 5
5765
```powershell
5866
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled
5967
```
6068

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

63-
### Example 5
71+
### Example 6
6472
```powershell
6573
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
6674
```
6775

6876
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
6977

70-
### Example 6
78+
### Example 7
7179
```powershell
7280
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
7381
```
7482

7583
Set Teams AI policy "EnrollVoice" value to "Disabled" for identity "Test".
7684

85+
### Example 8
86+
```powershell
87+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionForBYOD Attribute
88+
```
89+
90+
Set Teams AI policy "SpeakerAttributionForBYOD" value to "Attribute" for identity "Test".
91+
92+
### Example 9
93+
```powershell
94+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionForBYOD Distinguish
95+
```
96+
97+
Set Teams AI policy "SpeakerAttributionForBYOD" value to "Distinguish" for identity "Test".
98+
7799
## PARAMETERS
78100
### -Identity
79101
Identity of the Teams AI policy.
@@ -119,6 +141,21 @@ Accept pipeline input: False
119141
Accept wildcard characters: False
120142
```
121143
144+
### -SpeakerAttributionForBYOD
145+
This setting allows tenant admins to enable or disable speaker attribution in BYOD environments.
146+
147+
```yaml
148+
Type: Boolean
149+
Parameter Sets: ("Attribute","Disabled","Distinguish")
150+
Aliases:
151+
152+
Required: True
153+
Position: Named
154+
Default value: Disabled
155+
Accept pipeline input: False
156+
Accept wildcard characters: False
157+
```
158+
122159
### CommonParameters
123160
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).
124161

0 commit comments

Comments
 (0)