← Back to articles Intune

Microsoft 365 Copilot App Gets a Chat-Centered Redesign

Microsoft 365 Copilot App Gets a Chat-Centered Redesign

What's Changing

Microsoft is redesigning the Microsoft 365 Copilot app into a unified, chat-first interface — simplifying navigation, consolidating the Work and Web grounding toggles, and introducing new ways for users to organise and continue conversations. The change is tracked under Message Center ID MC1325422.

The canonical URL for the app moves to https://m365.cloud.microsoft/chat. The legacy copilot.microsoft.com address is preserved as a redirect. On desktop, the update arrives via Microsoft 365 Apps Click-to-Run build 17628.20000+ (Version 2405 or later). Mobile gets it through normal iOS and Android store updates.

⚠ Heads-up for CA AdminsConditional Access policies scoped to the old copilot.microsoft.com resource may not automatically apply to m365.cloud.microsoft. Audit your CA policies before GA hits your tenant.

Who's Affected & When

ROLLOUT TIMELINE — MC1325422FrontierLate May 2026Opt-in GAJune 2026Full GALate June 2026StandardLate July 2026
The redesign rolls out in stages: Frontier preview in late May, opt-in GA in June, full auto-rollout by late July 2026.

The rollout phases are:

  • Frontier (Targeted Release): Late May 2026 — available now for Targeted Release tenants.
  • GA behind opt-in toggle: June 2026 — admins can enable early for all users.
  • General Availability (auto-enabled): Late June 2026.
  • Standard rollout complete: Expected late July 2026.

The change affects all commercial M365 tenants. Users with a full Microsoft_365_Copilot licence see the complete chat experience with Graph grounding (organisational data). Users on E3/E5 or Business tiers without the Copilot add-on get web-grounded chat with commercial data protection only — no access to emails, Teams chats, or files.

What This Means for Your Environment

ADMIN IMPACT MAPConditional AccessAudit for new URLm365.cloud.microsoftNetwork / FirewallAllow *.cloud.microsoft+ *.copilot.microsoft.comIntune MAM/APPUnblock new endpointsM365 Copilotm365.cloud.microsoft/chatNew canonical URLLicensing CheckCopilot add-on requiredfor Graph groundingEdge PolicyEnforceEnterpriseSignInfor dual-identity tenantsWeb GroundingDisable if data residency concern
Six admin control surfaces that need reviewing before the new Copilot app URL lands in your tenant.

The biggest immediate risks for production tenants:

  • CA policy gap: If you have a CA policy scoped to the Copilot Enterprise App registration and it uses copilot.microsoft.com as the cloud app target, it may not evaluate correctly against the new m365.cloud.microsoft host. Users could either gain unintended access or hit AADSTS53003 errors on compliant-device gates.
  • Network allow-lists: Proxy or firewall rules that don't yet include *.cloud.microsoft will silently break the app. The redirect from copilot.microsoft.com preserves the URL but the actual app content loads from the new domain.
  • Intune MAM policies: App Protection Policies with managed-browser restrictions need m365.cloud.microsoft added to allowed URLs alongside the existing copilot.microsoft.com entry.
  • Web grounding & compliance: The unified Work/Web toggle is more prominent in the new UI. If your compliance team has data-residency requirements, disable web grounding now before users discover the toggle themselves: Admin Center > Settings > Copilot > Web search for Copilot.
🔴 Silent Breakage RiskTenants using Compliant Device CA policies gated on the Copilot app will produce AADSTS53003 for non-compliant enrolled devices. Run your CA policies in Report-Only mode first against the new URL before GA.

Action Items

ActionPriorityWhere
Audit CA policies — add m365.cloud.microsoft as a covered resourceHigh — Do NowEntra ID > Conditional Access
Update firewall / proxy allow-lists to include *.cloud.microsoftHigh — Do NowNetwork team / O365 endpoints list
Add m365.cloud.microsoft to MAM App Protection Policy allowed URLsHigh — Do NowIntune > App Protection Policies
Validate Copilot licence assignments — confirm who has the full add-onMediumMicrosoft Graph PowerShell (see below)
Review web grounding setting with compliance / DPO teamMediumM365 Admin Center > Settings > Copilot
Deploy EnforceEnterpriseSignIn Edge policy for tenants with dual-identity usersMediumIntune > Settings Catalog > Edge
Pin updated Copilot app in Teams App Setup Policy if currently pinnedLow — Before GATeams Admin Center > App Setup Policies
Communicate UX change to end users; the chat layout is noticeably differentLow — Before GAInternal comms

Quick PowerShell Checks

Identify which users in your tenant hold the full Copilot licence before the rollout hits:

# Connect to Graph
Connect-MgGraph -Scopes "User.Read.All", "LicenseAssignment.Read.All"

# SKU GUID for Microsoft_365_Copilot add-on
$copilotSku = "639dec6b-bb19-468b-871c-c5c441c4b0cb"

# List licensed users
Get-MgUser -Filter "assignedLicenses/any(x:x/skuId eq $copilotSku)" `
  -ConsistencyLevel eventual -CountVariable count | 
  Select-Object DisplayName, UserPrincipalName

Verify tenant-level Copilot settings via Graph:

Connect-MgGraph -Scopes "TenantSettings.Read.All"
Get-MgAdminMicrosoft365CopilotSetting
💡 Targeted Release FirstIf your tenant is not already on Targeted Release, consider enrolling a pilot group now so you can validate CA policies, network rules, and the MAM allow-list before the June opt-in GA window opens. Go to Admin Center > Settings > Org settings > Release preferences.
✅ No Licence Changes RequiredThis is a UX and URL consolidation — not a new licence tier. Existing Microsoft_365_Copilot add-on holders automatically get the full redesigned experience. No re-assignment or new SKU purchase is needed.

Original announcement: MC1325422 in the Microsoft 365 Message Center.

Was this article helpful?

🎓 Ready to go deeper?

Practice real MD-102 exam questions, get AI feedback on your weak areas, and fast-track your Intune certification.

Start Free Practice → Book a Session
Souhaiel Morhag
Souhaiel Morhag
Microsoft Endpoint & Modern Workplace Engineer

Souhaiel Morhag is a Microsoft Intune and endpoint management specialist with hands-on experience deploying and securing enterprise environments across Microsoft 365. He founded MSEndpoint.com to share practical, real-world guides for IT admins navigating Microsoft technologies — and built the MSEndpoint Academy at app.msendpoint.com/academy, a dedicated learning platform for professionals preparing for the MD-102 (Microsoft 365 Endpoint Administrator) certification. Through in-depth articles and AI-powered practice exams, Souhaiel helps IT teams move faster and certify with confidence.

Related Articles

Popular on MSEndpoint