Skip to content

Commit 2b755d1

Browse files
authored
Merge pull request #12121 from Andy447/update-teamsai-docs
Add more examples for Set-CsTeamsAiPolicy doc
2 parents bfbd0c9 + 2ace8b9 commit 2b755d1

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

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

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,40 @@ This cmdlet Set Teams AI policy value for current tenant.
1818
## SYNTAX
1919

2020
```
21-
Set-CsTeamsAIPolicy -Identity <string> -EnrollVoice <Enabled/Disabled>
21+
Set-CsTeamsAIPolicy
22+
[[-Identity] <string>]
23+
[-EnrollFace <Enabled/Disabled>]
24+
[-EnrollVoice <Enabled/Disabled>]
2225
```
2326

2427
## DESCRIPTION
2528

26-
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".
2730

2831
## EXAMPLES
2932

3033
### Example 1
3134
```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
3249
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled
3350
```
3451

3552
Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test".
3653

37-
### Example 2
54+
### Example 4
3855
```powershell
3956
PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled
4057
```
@@ -57,7 +74,7 @@ Accept pipeline input: False
5774
Accept wildcard characters: False
5875
```
5976
### -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.
6178
6279
```yaml
6380
Type: Boolean
@@ -72,7 +89,7 @@ Accept wildcard characters: False
7289
```
7390
7491
### -EnrollVoice
75-
Policy value of the Teams AI EnrollVoice policy.
92+
Policy value of the Teams AI EnrollVoice policy. EnrollVoice controls user access to user voice enrollment in the Teams app settings.
7693
7794
```yaml
7895
Type: Boolean

0 commit comments

Comments
 (0)