You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
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
31
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.
32
33
33
34
## EXAMPLES
34
35
@@ -48,32 +49,53 @@ Set Teams AI policy "EnrollVoice" value to "Disabled" for global as default.
48
49
49
50
### Example 3
50
51
```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
51
59
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled
52
60
```
53
61
54
62
Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test".
55
63
56
-
### Example 4
64
+
### Example 5
57
65
```powershell
58
66
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled
59
67
```
60
68
61
69
Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test".
62
70
63
-
### Example 5
71
+
### Example 6
64
72
```powershell
65
73
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
66
74
```
67
75
68
76
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
69
77
70
-
### Example 6
78
+
### Example 7
71
79
```powershell
72
80
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
73
81
```
74
82
75
83
Set Teams AI policy "EnrollVoice" value to "Disabled" for identity "Test".
76
84
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
+
77
99
## PARAMETERS
78
100
### -Identity
79
101
Identity of the Teams AI policy.
@@ -119,6 +141,21 @@ Accept pipeline input: False
119
141
Accept wildcard characters: False
120
142
```
121
143
144
+
### -SpeakerAttributionForBYOD
145
+
This setting allows tenant admins to enable or disable speaker attribution in BYOD environments.
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).
0 commit comments