From 44b02cc69f9fbd78021a8f2c27ab8493b583e409 Mon Sep 17 00:00:00 2001 From: Andy Wang Date: Tue, 15 Oct 2024 17:04:15 -0700 Subject: [PATCH 1/2] Add example for global disable for Set-CsTeamsAIPolicy.md --- teams/teams-ps/teams/Set-CsTeamsAIPolicy.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md b/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md index f0aef1d13b..3f50162a44 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md +++ b/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md @@ -34,26 +34,40 @@ This cmdlet sets the Teams AI policy EnrollFace and EnrollVoice value for the te ### Example 1 ```powershell +PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollFace Disabled +``` + +Set Teams AI policy "EnrollFace" value to "Disabled" for Global as default. + +### Example 2 +```powershell +PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollVoice Enabled +``` + +Set Teams AI policy "EnrollVoice" value to "Enabled" for Global as default. + +### Example 3 +```powershell PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled ``` Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test". -### Example 2 +### Example 4 ```powershell PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled ``` Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test". -### Example 3 +### Example 5 ```powershell PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollFace Disabled ``` Set Teams AI policy "EnrollFace" value to "Disabled" for identity "Test". -### Example 4 +### Example 6 ```powershell PS C:\> Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Disabled ``` From af58566b51b4514a50fa14b69073d88b14eac649 Mon Sep 17 00:00:00 2001 From: Andy Wang Date: Tue, 15 Oct 2024 17:25:03 -0700 Subject: [PATCH 2/2] Fix wording --- teams/teams-ps/teams/Set-CsTeamsAIPolicy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md b/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md index 3f50162a44..61224ea7dd 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md +++ b/teams/teams-ps/teams/Set-CsTeamsAIPolicy.md @@ -37,14 +37,14 @@ This cmdlet sets the Teams AI policy EnrollFace and EnrollVoice value for the te PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollFace Disabled ``` -Set Teams AI policy "EnrollFace" value to "Disabled" for Global as default. +Set Teams AI policy "EnrollFace" value to "Disabled" for global as default. ### Example 2 ```powershell -PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollVoice Enabled +PS C:\> Set-CsTeamsAIPolicy -Identity Global -EnrollVoice Disabled ``` -Set Teams AI policy "EnrollVoice" value to "Enabled" for Global as default. +Set Teams AI policy "EnrollVoice" value to "Disabled" for global as default. ### Example 3 ```powershell