Skip to content

Commit b4167b1

Browse files
Merge pull request #13492 from elaineho-msftservice/patch-1
Enhance Set-CsTeamsAIPolicy documentation for PassiveVoiceEnrollment rollout
2 parents 990c8c2 + f4ba2ba commit b4167b1

1 file changed

Lines changed: 30 additions & 3 deletions

File tree

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

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,21 @@ This cmdlet sets Teams AI policy value for users in the tenant.
2222
Set-CsTeamsAIPolicy [[-Identity] <string>]
2323
[-EnrollFace <string>]
2424
[-EnrollVoice <string>]
25+
[-PassiveVoiceEnrollment <string>]
2526
[-SpeakerAttributionBYOD <string>]
2627
[-Description <string>]
2728
[<CommonParameters>]
2829
```
2930

3031
## DESCRIPTION
3132

32-
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.
33+
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 the available biometric enrollment flows. Enabling these settings will allow your users in your organization the ability to enroll using active enrollment.
3334

34-
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". "
35+
Starting May 2026, there will be a new setting - _PassiveVoiceEnrollment_, which will allow users in your organization the ability to enroll their voice profile using their in-meeting audio. This is known as Express voice enrollment. This setting can also be individually set to Enabled or Disabled and operates independently of _EnrollVoice_. This setting is typically enabled by default; however any organization that previously had _EnrollVoice_ set to disabled will see a one-time manual state duplication so that both _EnrollVoice_ and _PassiveVoiceEnrollment_ will have the same state when launching this new functionality. As an organization, you have the option to Enable Active enrollment (via _EnrollVoice_) and/or Express enrollment (via _PassiveVoiceEnrollment_) for your users. To turn off voice enrollment completely, make sure to set both parameters to Disable.
36+
37+
_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.
38+
39+
This cmdlet sets the _EnrollFace_, _EnrollVoice_, _PassiveVoiceEnrollment_, and _SpeakerAttributionBYOD_ values within the csTeamsAIPolicy. These policies can be assigned to users, and each setting can be configured as "Enabled" or "Disabled".
3540

3641
## EXAMPLES
3742

@@ -98,6 +103,13 @@ PS C:\> Set-CsTeamsAIPolicy -Identity Test -SpeakerAttributionBYOD Disabled
98103

99104
Set Teams AI policy "SpeakerAttributionBYOD" value to "Disabled" for identity "Test".
100105

106+
### Example 10
107+
```powershell
108+
PS C:\> Set-CsTeamsAIPolicy -Identity Global -PassiveVoiceEnrollment Disabled
109+
```
110+
111+
Set Teams AI policy "PassiveVoiceEnrollment" value to "Disabled" for global as default.
112+
101113
## PARAMETERS
102114

103115
### -Description
@@ -131,7 +143,22 @@ Accept wildcard characters: False
131143
```
132144
133145
### -EnrollVoice
134-
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings.
146+
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to active voice enrollment in the Teams app settings.
147+
148+
```yaml
149+
Type: String
150+
Parameter Sets: ("Enabled","Disabled")
151+
Aliases:
152+
153+
Required: True
154+
Position: Named
155+
Default value: Enabled
156+
Accept pipeline input: False
157+
Accept wildcard characters: False
158+
```
159+
160+
### -PassiveVoiceEnrollment
161+
Policy value of the Teams AI PassiveVoiceEnrollment policy. PassiveVoiceEnrollment controls user access to express voice enrollment in the Teams app settings.
135162
136163
```yaml
137164
Type: String

0 commit comments

Comments
 (0)