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
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.
27
27
28
28
This cmdlet retrieves all Teams AI policies for the tenant.
29
29
@@ -34,7 +34,7 @@ This cmdlet retrieves all Teams AI policies for the tenant.
34
34
PS C:\> Get-CsTeamsAIPolicy
35
35
```
36
36
37
-
Retrieves Teams AI policies and shows "EnrollFace"and "EnrollVoice" values.
37
+
Retrieves Teams AI policies and shows "EnrollFace", "EnrollVoice" and "SpeakerAttributionBYOD" values.
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.
43
43
44
44
This cmdlet applies an instance of the Teams AI policy to users or groups in a tenant.
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.
26
31
27
32
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.
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings.
72
77
73
78
```yaml
74
-
Type: Boolean
79
+
Type: String
80
+
Parameter Sets: ("Enabled","Disabled")
81
+
Aliases:
82
+
83
+
Required: True
84
+
Position: Named
85
+
Default value: Enabled
86
+
Accept pipeline input: False
87
+
Accept wildcard characters: False
88
+
```
89
+
90
+
### -SpeakerAttributionBYOD
91
+
Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function.
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.
27
27
28
28
This cmdlet deletes a Teams AI policy with the specified identity string.
Copy file name to clipboardExpand all lines: teams/teams-ps/teams/Set-CsTeamsAIPolicy.md
+47-10Lines changed: 47 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -17,19 +17,20 @@ This cmdlet sets Teams AI policy value for users in the tenant.
17
17
18
18
## SYNTAX
19
19
20
-
```
20
+
```powershell
21
21
Set-CsTeamsAIPolicy [[-Identity] <string>]
22
-
[-EnrollFace <Boolean>]
23
-
[-EnrollVoice <Boolean>]
22
+
[-EnrollFace <string>]
23
+
[-EnrollVoice <string>]
24
+
[-SpeakerAttributionBYOD <string>]
24
25
[-Description <string>]
25
26
[<CommonParameters>]
26
27
```
27
28
28
29
## DESCRIPTION
29
30
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.
31
32
32
-
This cmdlet sets the Teams AI policy EnrollFaceand 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". "
33
34
34
35
## EXAMPLES
35
36
@@ -49,32 +50,53 @@ Set Teams AI policy "EnrollVoice" value to "Disabled" for global as default.
49
50
50
51
### Example 3
51
52
```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
52
60
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled
53
61
```
54
62
55
63
Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test".
56
64
57
-
### Example 4
65
+
### Example 5
58
66
```powershell
59
67
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled
60
68
```
61
69
62
70
Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test".
63
71
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
65
80
```powershell
66
81
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
67
82
```
68
83
69
84
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
70
85
71
-
### Example 6
86
+
### Example 8
72
87
```powershell
73
88
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
74
89
```
75
90
76
91
Set Teams AI policy "EnrollVoice" value to "Disabled" for identity "Test".
77
92
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".
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings.
112
134
113
135
```yaml
114
-
Type: Boolean
136
+
Type: String
137
+
Parameter Sets: ("Enabled","Disabled")
138
+
Aliases:
139
+
140
+
Required: True
141
+
Position: Named
142
+
Default value: Enabled
143
+
Accept pipeline input: False
144
+
Accept wildcard characters: False
145
+
```
146
+
147
+
### -SpeakerAttributionBYOD
148
+
Policy value of the Teams AI SpeakerAttributionBYOD policy. Setting to "Enabled" turns on speaker attribution in BYOD scenarios while "Disabled" will turn off the function.
0 commit comments