Miscellaneous topics that do not fit into specific categories.
To disable the Read AI feature in Microsoft Teams, you will need to manage the voice and face enrollment settings through PowerShell. The feature you are referring to is likely related to the AI capabilities that can automatically generate notes and transcriptions during meetings.
You can disable this feature for specific users or groups by using the CsTeamsAIPolicy. Here’s a brief overview of how to do this:
- Connect to PowerShell and ensure you have the latest version installed.
- Use the following command to create a new policy that disables voice and face enrollment:
New-CsTeamsAIPolicy -Identity DisableEnrollment -EnrollVoice Disabled -EnrollFace Disabled - Assign this policy to the users you want to disable the feature for:
Grant-CsTeamsAIPolicy -Identity DisableEnrollment -Identity user@example.com
Make sure to replace user@example.com with the actual user’s email address. This will prevent the AI from sending notes automatically during meetings for those users.
For more detailed guidance on configuring these settings, you can refer to the Microsoft documentation.