← Back to articles Intune

Microsoft Copilot Pages: Streamlined Access via Slash Commands & Library Tab—September 2026 Rollout

Microsoft Copilot Pages: Streamlined Access via Slash Commands & Library Tab—September 2026 Rollout
Executive Snapshot (MC1466760)
Feature: Microsoft Copilot Pages (Loop collaborative canvas in Copilot Chat)
Rollout Timeline: Late August to Early September 2026 (Worldwide GA)
Admin Action Required: None (Client-side UX update)
Security & Compliance: 100% Unchanged (OneDrive/SharePoint storage, DLP & eDiscovery retained)

Microsoft Copilot Pages is a dynamic, collaborative canvas inside Microsoft 365 Copilot Chat that allows enterprise teams to transform transient AI chat answers into persistent, shareable Microsoft Loop components. Starting late August through early September 2026, Microsoft is updating how users create and reference these Pages across their workflow.

Microsoft is scoping the "Edit in Pages" control in Copilot Chat to creation only. As of the GA rollout window closing the first week of September 2026, browsing and re-opening an existing Copilot Page no longer happens through that dropdown — it happens through the "/" slash-command menu in the prompt box or the Library tab. This is Message Center post MC1466760, and it's a pure client UX change with zero admin toggles attached.

Bottom line No PowerShell, Graph API, Conditional Access, or Copilot Control System setting governs this. Your only lever is user communication — there is nothing to configure, block, or roll back.

What's Changing

Today, the "Edit in Pages" menu in Microsoft 365 Copilot and Copilot Chat does double duty: it creates a brand-new Page and it surfaces/edits existing Pages the user has previously generated. After the rollout described in MC1466760, that menu is scoped to net-new Page creation only. Discovery and insertion of existing Pages moves to two dedicated surfaces:

  • The Library tab — now the primary browse surface for all previously created Pages.
  • The "/" slash-command menu inside the Copilot prompt box — a fast inline picker to reference or re-open an existing Page mid-conversation.

Microsoft's stated wording is explicit that this is cosmetic/workflow-only: "No existing Pages, content, or sharing permissions will be affected." Pages remain Loop components physically backed by files in the creating user's OneDrive or the relevant SharePoint site, and every existing sharing link, sensitivity label, DLP policy, and eDiscovery hold continues to apply exactly as it does today.

CURRENT STATE "Edit in Pages" menu Create new Page + Browse existing Pages + Edit existing Pages Single overloaded entry point MC 1466760 TRANSITION GA rollout: late Aug → early Sep 2026 FUTURE STATE "Edit in Pages" Create new Page ONLY (browse capability removed) "/" menu Inline picker in prompt box Library tab Primary browse surface Permission Boundary Pages = Loop files backed by OneDrive / SharePoint Existing sharing links unchanged Sensitivity labels + DLP inherited eDiscovery holds unaffected No new consent / scopes required No admin toggle exists at any stage of this transition
Left: today's overloaded "Edit in Pages" menu. Center: the September 2026 GA transition (MC1466760). Right: the split future state — "/" for inline reference, Library tab for browsing — both still governed by unchanged OneDrive/SharePoint permissions and DLP inheritance.

Before vs. After Workflow Comparison

CapabilityToday (Before September 2026)Starting Rollout (After)
Creating New Pages"Edit in Pages" menu in chat"Edit in Pages" menu (Dedicated exclusively to creation)
Finding Existing Pages"Edit in Pages" dropdown menuLibrary Tab (Primary browsing hub)
Referencing Mid-ChatManual search or re-creating page"/" Slash Menu directly inside prompt box
Permissions & DLPInherited from OneDrive / SharePointUnchanged — identical security and retention policies

Who's Affected & When

This applies to every tenant with users licensed for Microsoft 365 Copilot or the Microsoft 365 Copilot Chat (pay-as-you-go / free) SKU, across Word, Teams, Outlook, and the standalone Copilot Chat experience at m365.cloud.microsoft. Per the roadmap entry, this is a straight General Availability, Worldwide rollout — there is no Targeted Release or preview ring gating it.

AttributeValue
Message Center IDMC1466760
Rollout start (UTC)2026-09-03T23:00:28Z
PhaseGA — Worldwide (no preview ring)
SeverityNormal / informational
Opt-out available✗ No
Admin toggle / policy✗ None exists
Impacts Pages content or permissions✗ No change
Rollout dates are provisional Microsoft frequently republishes Message Center posts with revised timestamps. Re-check MC1466760 in your own Message Center within the week before communicating a hard date to end users.

What This Means for Your Environment

Nothing changes at the tenant configuration layer — no Graph endpoint, no CSV/report schema, no Purview audit record structure is modified. The CopilotInteraction record type in the Unified Audit Log continues to log Page-related operations exactly as before. What breaks is tribal knowledge and documentation: any adoption deck, Viva Learning module, or intranet quick-reference screenshot showing "Edit in Pages > browse my existing Pages" is now factually wrong. If your organization has trained users to rely exclusively on that dropdown for reopening Pages, expect a spike in "where did my Page go?" help desk tickets in the first two weeks of September.

Third-party adoption-tracking browser extensions or governance tools that scrape Copilot UI text/DOM selectors for the old "Edit in Pages" browse flow may also silently stop matching — check with any vendor providing Copilot usage dashboards built on UI scraping rather than the Graph reporting API.

Action Items

  1. Pull a usage baseline before the cutover. Run a Unified Audit Log query for CopilotInteraction records with PageCreated/PageEdited operations to quantify how many users are actively creating Pages — this tells you who needs proactive comms.
  2. Confirm Message Center receipt. Validate that MC1466760 has posted to your tenant and hasn't had its dates revised.
  3. Update training artifacts. Any screenshot or SOP referencing "Edit in Pages" as a browse mechanism needs a Library tab / "/" menu correction.
  4. Push a short Copilot champion notice. One paragraph: "Edit in Pages now only creates new Pages. Use / or the Library tab to reopen an existing one."
  5. No technical remediation required. Confirm with your security/compliance team that no DLP, sensitivity label, or sharing-link review is triggered — this is UI-only.
Proactive IT Engineering Toolkit (Optional): Because Microsoft applies this update automatically with zero tenant toggles, running scripts is NOT mandatory. The following tools are provided to help change managers and IT teams baseline Copilot usage or notify affected users proactively.
# Required Scopes: AuditLog.Read.All (Graph) / View-Only Audit Logs (EXO RBAC)
# Requires Exchange Online Management module for Search-UnifiedAuditLog
# Run BEFORE the Sep 2026 cutover to baseline Copilot Pages usage

#region Connect
Connect-ExchangeOnline

#region Baseline audit pull - last 30 days of Page activity
$startDate = (Get-Date).AddDays(-30)
$endDate   = Get-Date
$results   = @()
$sessionId = "CopilotPagesAudit-$(Get-Date -Format yyyyMMddHHmm)"

try {
    do {
        $batch = Search-UnifiedAuditLog `
            -StartDate $startDate `
            -EndDate $endDate `
            -RecordType CopilotInteraction `
            -Operations "PageCreated","PageEdited" `
            -SessionId $sessionId `
            -SessionCommand ReturnLargeSet `
            -ResultSize 5000

        if ($batch) { $results += $batch }
    } while ($batch.Count -eq 5000)

    $results |
        Select-Object CreationDate, UserIds, Operations, AuditData |
        Export-Csv -Path .\CopilotPagesActivity_Baseline.csv -NoTypeInformation

    Write-Output "Exported $($results.Count) Copilot Pages events to CSV."
    exit 0
}
catch {
    Write-Error "Audit pull failed: $($_.Exception.Message)"
    exit 1
}
# Required Scopes: User.Read.All, Organization.Read.All (Microsoft Graph)
# Enumerate users assigned a Copilot license SKU to scope comms distribution list

#region Connect via Microsoft.Graph v2 (NOT AzureAD/MSOnline - deprecated)
Connect-MgGraph -Scopes "User.Read.All","Organization.Read.All" -NoWelcome

try {
    # Common SKU part numbers: Microsoft_365_Copilot, Copilot_Chat
    $copilotSkuNames = @("Microsoft_365_Copilot", "Copilot_Chat")

    $licensedUsers = Get-MgUser -All -Property Id,DisplayName,UserPrincipalName,AssignedLicenses |
        Where-Object {
            $_.AssignedLicenses.SkuId | ForEach-Object {
                (Get-MgSubscribedSku -All | Where-Object SkuId -eq $_).SkuPartNumber -in $copilotSkuNames
            }
        }

    $licensedUsers |
        Select-Object DisplayName, UserPrincipalName |
        Export-Csv -Path .\CopilotLicensedUsers_ForComms.csv -NoTypeInformation

    Write-Output "Exported $($licensedUsers.Count) Copilot-licensed users."
    exit 0
}
catch {
    Write-Error "Graph enumeration failed: $($_.Exception.Message)"
    exit 1
}
# Change-management validation helper (no Graph/EXO dependency)
# Confirms MC1466760 acknowledgement + produces adoption report stub

function Test-MC1466760Readiness {
    [CmdletBinding(SupportsShouldProcess)]
    param(
        [Parameter(Mandatory)][string]$MessageCenterId = "MC1466760",
        [Parameter(Mandatory)][string]$OutputPath = ".\MC1466760_AdoptionReport.md"
    )

    try {
        $checklist = [ordered]@{
            "MessageCenterPostReviewed"      = $false
            "TrainingDocsAudited"            = $false
            "ChampionNoticeSent"             = $false
            "UsageBaselineCaptured"          = $false
            "ThirdPartyToolsValidated"       = $false
        }

        if ($PSCmdlet.ShouldProcess($OutputPath, "Generate adoption report")) {
            $report = @"
# Copilot Pages UX Change - Adoption Readiness Report
**Message Center ID:** $MessageCenterId
**Generated:** $(Get-Date -Format u)

| Checklist Item | Status |
|---|---|
$(($checklist.GetEnumerator() | ForEach-Object { "| $($_.Key) | $($_.Value) |" }) -join "`n")

**Next review date:** $((Get-Date).AddDays(7).ToString('yyyy-MM-dd'))
"@
            $report | Out-File -FilePath $OutputPath -Encoding utf8
            Write-Output "Report generated at $OutputPath"
        }
        exit 0
    }
    catch {
        Write-Error "Report generation failed: $($_.Exception.Message)"
        exit 1
    }
}

# Test-MC1466760Readiness -WhatIf
Confirmed working pattern Treat this purely as a comms task. No CA policy, no Copilot Control System setting, no DLP rule needs review specifically for this change — audit logging and permissions are already covered by your existing Copilot governance baseline.

Original announcement: Microsoft 365 admin center → Health → Message Center → MC1466760.

Was this article helpful?

🎁 Free Community Automation Hub

Functional Automation & Blueprints

Production-ready scripts, GitHub repositories, and architectural blueprints created for this technical guide.

PowerShell, Microsoft Graph, Exchange Online Management, PHP
AUTOMATION TOOLKIT

Copilot Pages MC1466760 - UX Change Readiness Toolkit

PowerShell toolkit and SaaS dashboard to baseline Copilot Pages usage, identify licensed users, and track adoption readiness ahead of the September 2026 'Edit in Pages' UX change (MC1466760).

Star on GitHub Download .ps1
💡 Enterprise Blueprint
MEDIUM IMPACT

Copilot Adoption Nudge

Helps M365 admins proactively communicate Copilot UX changes to end users before confusion floods the helpdesk.

🤝 Custom Build

🎓 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