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 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"
29
+
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".
27
30
28
31
## EXAMPLES
29
32
30
33
### Example 1
31
34
```powershell
35
+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled
36
+
```
37
+
38
+
Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test".
39
+
40
+
### Example 2
41
+
```powershell
42
+
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled
43
+
```
44
+
45
+
Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test".
46
+
47
+
### Example 3
48
+
```powershell
32
49
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
33
50
```
34
51
35
52
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
36
53
37
-
### Example 2
54
+
### Example 4
38
55
```powershell
39
56
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
40
57
```
@@ -57,7 +74,7 @@ Accept pipeline input: False
57
74
Accept wildcard characters: False
58
75
```
59
76
### -EnrollFace
60
-
Policy value of the Teams AI EnrollFace policy.
77
+
Policy value of the Teams AI EnrollFace policy. EnrollFace controls user access to user face enrollment in the Teams app settings.
0 commit comments