Announcement ID | MC916990 | Published Date | 10-23-2024 | |
Service | Copilot | Last Updated | 12-16-2024 | |
Category | Stay informed | Expiration Date | 01-13-2025 | |
Roadmap ID | 411568 | Action Required by Date | ||
Tags | Admin impact, New feature, User impact |
Summary |
---|
The updated policy restricts Copilot in Teams meetings from making inferences or evaluations about people or groups. IT admins can enable or disable this feature for specific groups using Microsoft Graph API. Rollout begins in November 2024, with completion expected by early December 2024. |
More Information |
---|
This policy enables IT admins to block Copilot responses that might infer emotions, make evaluations, discuss personal traits, and use context to deduce answers. When this policy is applied it restricts Copilot's ability to make inferences or evaluations about people or groups when prompted to do so by users. Users cannot disable this policy. The policy applies to Copilot in Teams meetings. In-meeting Copilot experience UI When this will happen:General Availability (Worldwide): We will begin rolling out early November 2024 and expect to complete by early December 2024. How this will affect your organization:When Copilot inference and evaluation is set by the IT admin for a specific group, that group will not be able to get Copilot responses to sentiment related prompts. For that group, Copilot is blocked from answering inference and evaluation based prompts. What you need to do to prepare:An IT admin can set the policy for enabling or disabling Copilot limited mode for a group using Microsoft Graph API. Here are the steps: 1. Login to Microsoft Graph Explorer: The admin needs to log in to their tenant on Microsoft Graph Explorer. 2. Get Current Policy Value:
3. Update Policy Value:
{ "isEnabledForGroup": true //true or false. Default is false. False means regular copilot, true means inferences and evaluations are blocked. "groupId": "your-group-id" // Default is null. This should be provided when value for isEnabledForGroup is true. This should be null or when value for isEnabledForGroup is false. }
4. Run the Query: Execute the query to update the policy. This will save the new policy value. 5. Handling Multiple Groups: If the policy needs to be applied to multiple groups, create a single group that includes all the required subgroups and use its group ID. |