Microsoft enables Copilot in SharePoint by default on all SharePoint sites

As previously covered, Microsoft rebranded AI in SharePoint to Copilot in SharePoint after less than three months.

Read:  In memory: AI in SharePoint had a shorter lifespan than Bing Chat Enterprise

Copilot in SharePoint is soon transitioning from an opt-in to an opt-out preview, meaning it will appear automatically for licensed Copilot Premium users. Copilot in SharePoint brings AI-powered natural language capabilities across SharePoint sites, pages, document libraries, and lists.

SharePoint admins should review their SharePoint tenant settings if they haven’t already. Administrators can actively opt out or limit Copilot to selected sites. According to Microsoft, existing tenant-level and site-level opt-out settings should be honored at rollout.

Timeline

Opt-in for all SharePoint site collections should begin in mid-June 2026 (with no end date provided).

How does this affect your organization?

Users with a Microsoft 365 Copilot license will see a floating Copilot button in the lower-right corner of SharePoint pages, document libraries, and lists. Selecting the button opens a chat experience where users can issue natural language prompts.

Copilot in SharePoint as the floating Copilot button
Copilot in SharePoint as the floating Copilot button

Copilot in SharePoint respects the user’s existing SharePoint permissions and only accesses content the user is already authorized to view or edit.

  • The existing site agent and AI experience in SharePoint will be upgraded to Copilot for licensed Premium users.
  • Pay-as-you-go billing for the SharePoint Agents feature applies only to SharePoint custom agents and is not affected by this change.
  • OneDrive site collections have their own Copilot integrations, provided via the Copilot for SharePoint service plan. It is not clear whether the upcoming opt-in will affect OneDrive site collections.
Copilot in OneDrive is provided through the licensed service plan, not the former Knowledge Agent
Copilot in OneDrive is provided through the licensed service plan, not the former Knowledge Agent

Users with owner or edit permissions can use Copilot in SharePoint for the following:

  • Build, edit, and maintain SharePoint content using natural language, without requiring technical or design expertise.
  • Execute content tasks, including organizing libraries, building sites, and creating or updating documents, pages, and HTML-based reports.
  • Define shared skills and context to encode team standards, so Copilot follows a consistent approach across the team.
  • More information on the support page about AI in SharePoint


SharePoint administrators should now review their tenant settings.

PowerShell
Get-SPOTenant | select KnowledgeAgentScope,KnowledgeAgentSelectedSitesList | fl

KnowledgeAgentScope will be updated to "AllSites"
KnowledgeAgentScope will be updated to “AllSites”

The KnowledgeAgentScope setting “NoSites” is currently the default, allowing organizations to opt in. Microsoft will update this setting to “AllSites” starting mid-June 2026.

KnowledgeAgentScope
This parameter allows administrators to control which SharePoint sites the Knowledge Agent feature is available on.

The valid values are:

  • AllSites: Knowledge Agent is available on all sites. (This will be the default setting starting mid-June 2026 > Manual opt-out via ExcludeSelectedSites)
  • ExcludeSelectedSites: Knowledge Agent is available on all sites except those specified in KnowledgeAgentSelectedSitesList.
  • (Still missing in the documentation: IncludeSelectedSites: Knowledge Agent is available on the selected sites defined in the KnowledgeAgentSelectedSitesList.)
  • NoSites: Knowledge Agent isn’t available on any sites. (This is the default setting until mid-June 2026 > Manual opt-in via IncludeSelectedSites)

If the setting has never been updated manually, I recommend forcing the command to set NoSites again

PowerShell
# Connect to SharePoint Online admin center
Connect-SPOService https://yourtenant-admin.sharepoint.com

# Set Copilot in SharePoint to be not available by default
Set-SPOTenant -KnowledgeAgentScope NoSites


…or limiting the setting to demo sites to trigger a system-wide setting update.

PowerShell
# Connect to SharePoint Online admin center
Connect-SPOService https://yourtenant-admin.sharepoint.com

# Set Copilot in SharePoint to be available only on the included sites
Set-SPOTenant -KnowledgeAgentScope IncludeSelectedSites

# Specify sites to enable Copilot in SharePoint (initial inclusion list)
Set-SPOTenant -KnowledgeAgentSelectedSitesList @("https://yourtenant.sharepoint.com/sites/site5", "https://yourtenant.sharepoint.com/sites/site7")


I would also not trust the Microsoft rollout. Set a reminder to review the settings starting mid-June.

SharePoint administrators can also use the site-level setting to restrict Copilot content discovery, preventing Copilot (including the former Knowledge Agent) from being used on the site’s content.

Keep in mind:

Restrict this site’s content from appearing in Microsoft 365 Copilot, AI agents, and organization-wide search results. When this setting is on, content will only be discoverable through the site-level search by users who have access to the site.

PowerShell
Set-SPOSite –Identity <SiteURL> -RestrictContentOrgWideSearch $true

More information
Share
Avatar photo

Tobias Asböck

Tobias is a Senior System Engineer with more than 10 years of professional experience with Microsoft 365 products such as SharePoint Online, SharePoint Premium, OneDrive for Business, Teams Collaboration, Entra ID, Information Protection, Universal Print, and Microsoft 365 Licensing. He also has 15+ years of experience planning, administering, and operating SharePoint Server environments. Tobias is a PowerShell Scripter with certifications for Microsoft 365 products. In his spare time, Tobias is busy with updates in the Microsoft 365 world or on the road with his road bike and other sports activities. If you have additional questions, please contact me via LinkedIn or [email protected].

Leave a Reply

Your email address will not be published. Required fields are marked *