Enable Teams recognition setting for only one user or group

James James 20 Reputation points
2025-03-06T17:21:30.8766667+00:00

Hello,

Please i need your help on this issue.

We used Set-cCsTeamsAIPolicy to create a new policy to enable Face/Voice recognition and applied it to an account with Grant -CsTeamsAIPolicy command (screenshot attached).

It's been more than a week but the recognition setting still shows disable by Admin in Teams. What did we miss?

User's image

PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,853 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Daisy Zhou 30,726 Reputation points Microsoft External Staff
    2025-03-07T01:32:48.4733333+00:00

    Hello James James,

    Thank you for posting in Q&A forum.

    You can try the commands below:

    1.Set Teams AI policy "EnrollFace" value to "Enabled" for global as default.

    Set-CsTeamsAIPolicy -Identity Global -EnrollFace Enabled

    2.Set Teams AI policy "EnrollVoice" value to "Enabled" for global as default.

    Set-CsTeamsAIPolicy -Identity Global -EnrollVoice Enabled
    3.Set Teams AI policy "EnrollFace" value to "Enabled" for identity "Test".

    Set-CsTeamsAIPolicy -Identity Test -EnrollFace Enabled

    4.Set Teams AI policy "EnrollVoice" value to "Enabled" for identity "Test".

    Set-CsTeamsAIPolicy -Identity Test -EnrollVoice Enabled

    5.Here is an example to assigns a given policy to a user.

    **Grant-CsTeamsAIPolicy -PolicyName Test -Identity ****@test.onmicrosoft.com

    For more information, please read references below.

    Set-CsTeamsAIPolicy

    https://learn.microsoft.com/en-us/powershell/module/teams/set-csteamsaipolicy?view=teams-ps

    Grant-CsTeamsAIPolicy

    https://learn.microsoft.com/en-us/powershell/module/teams/grant-csteamsaipolicy?view=teams-ps

    Get-CsTeamsAIPolicy

    https://learn.microsoft.com/en-us/powershell/module/teams/get-csteamsaipolicy?view=teams-ps

    I hope the information above is helpful.

    If you have any questions or concerns, please feel free to let us know.

    Best Regards,

    Daisy Zhou

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.