← Back to articles Intune

OneNote Copilot Notebooks for Gov Clouds: Persistent AI Workspaces

Overview

As senior Microsoft 365 engineers operating in highly regulated environments, we understand the critical need for secure, compliant, and efficient tools. Today, we're diving deep into a significant enhancement for our US Government Cloud tenants: the new Copilot Notebooks design within the Microsoft 365 Copilot app, specifically tailored for DoD, GCC, and GCC High environments. This feature, tracked under Roadmap ID 569203, is designed to transform how users interact with Copilot, moving from ephemeral chat sessions to persistent, context-rich AI workspaces. It's about bringing the power of an AI-driven assistant into a structured, recallable format, ensuring your work continues seamlessly across sessions without losing valuable context.

KEY CLOUD FOCUS

This article focuses exclusively on the implementation and nuances of Copilot Notebooks within Microsoft's US Government Cloud offerings: DoD, GCC, and GCC High. Commercial tenants received this update in May 2026; government clouds typically follow due to rigorous compliance validation.

US GOVERNMENT CLOUD (DoD / GCC / GCC High) User (Work/School Account) M365 Copilot App (App ID: b26aadf8...) Copilot Notebooks (Persistent AI Workspace) Semantic Index (M365 Graph) M365 Data Sources (SharePoint, OneDrive, Teams, Email) Azure Gov AI Endpoints (IL4/IL5 Compliant)
Figure 1: High-Level Architecture of Copilot Notebooks in Government Clouds. Users interact with the M365 Copilot app, which leverages Copilot Notebooks for persistent context. Data flows through the Semantic Index to M365 data sources and is processed by Azure Government AI endpoints.

The Power of Persistent AI Workspaces: What are Copilot Notebooks?

At its core, Copilot Notebooks introduces a paradigm shift from transient AI interactions to a durable, evolving workspace. Unlike typical Copilot Chat sessions that reset context after a period of inactivity, Notebooks maintain a cumulative understanding of your project, topic, or task. This persistence is crucial for complex, multi-session workflows common in government operations.

Feature Description Benefit for Gov Users
Context Aggregation Gathers information from SharePoint, OneDrive, Teams, emails, and meetings within Microsoft 365. Single pane of glass for mission-critical data; reduces swivel-chair integration.
Iterative Interaction Engage with Copilot against a scoped, evolving context, refining prompts over time. Deepens AI understanding for complex analyses, policy drafting, or intelligence synthesis.
Structured Output Generation Produces formatted Excel workbooks, Word documents, summaries, and infographics. Accelerates report generation, briefing preparation, and data visualization for decision-makers.
Multimodal Input Capture Supports text, images, and (on mobile) camera-captured content as inputs. Enhances field data capture, incident response documentation, and visual analysis.
Persistent Sessions Maintains context across sessions, eliminating the need to restart or re-explain. Saves significant time and effort on long-running projects; ensures continuity for classified work.

Government Cloud Distinctions: Compliance and Architecture

The rollout of Copilot Notebooks to DoD, GCC, and GCC High is not a simple flip of a switch. These environments operate under stringent compliance mandates (FedRAMP, ITAR, DoD IL4/IL5) that necessitate dedicated infrastructure and rigorous validation. This is why government cloud features typically lag commercial availability.

Cloud Tier Data Boundary AI Model Boundary Authorization GCC US-based FedRAMP Moderate Shared Commercial AI Data Residency Controls FedRAMP Moderate GCC High US-based ITAR-compliant Sovereign AI Inference Azure Government FedRAMP High, DoD IL4 DoD US-based DoD Tenant DoD-dedicated AI Azure Government FedRAMP High, DoD IL5 Feature Lag: Commercial GA → GCC (1-3 mos) | GCC High (3-6 mos) | DoD (6-12 mos)
Figure 2: Government Cloud Compliance and AI Model Boundaries. This diagram highlights the distinct data and AI model boundaries for GCC, GCC High, and DoD, emphasizing the use of Azure Government AI endpoints for higher compliance tiers and the typical feature lag.
CRITICAL NOTE ON AI ENDPOINTS

Copilot features in GCC High and DoD utilize Microsoft Azure Government AI endpoints. This is a crucial distinction from commercial Azure OpenAI endpoints and means feature parity at simultaneous release is not guaranteed.

Prerequisites and Requirements

Before you can leverage Copilot Notebooks, several foundational elements must be in place. This includes proper licensing, tenant-wide enablement, and specific user-level configurations.

Licensing

The core requirement is a Microsoft 365 Copilot license, an add-on to eligible base plans.

Component Requirement Status
Microsoft 365 Copilot License Required for all users.
Eligible Base Plans M365 G3 + Copilot, M365 G5 + Copilot, or equivalent. (M365 E3/E5 Government, O365 G3/G5)
Agent 365 Licensing NOT required for baseline Notebooks functionality.

Tenant Configuration

Global Admins or Copilot Admins must ensure these settings are correctly configured at the tenant level:

  1. Microsoft 365 Copilot Enabled

    Ensure the core Microsoft 365 Copilot service is enabled for your tenant.

  2. Microsoft 365 Copilot App Enabled

    The specific application (App ID: b26aadf8-566f-4478-926f-589f601d9c74) must be enabled in Integrated Apps.

  3. Semantic Index for Copilot Provisioned

    This is automatic upon licensing but can take up to 30 days in government clouds. It's critical for Copilot's ability to ground responses in your organizational data.

  4. Microsoft Graph Connectors (Optional but Recommended)

    If integrating third-party data, these require additional setup. For GCC High/DoD, ensure connectors are tenant-approved and FedRAMP authorized.

  5. SharePoint & OneDrive Sharing Validation

    Verify that oversharing remediations or overly restrictive policies are not blocking Copilot's access to the Microsoft Graph. Use Microsoft Purview Copilot analytics for insights.

User-Level Requirements

  • User must have an active M365 Copilot license assigned.
  • User must access the Microsoft 365 Copilot app via the correct government cloud portal (e.g., https://portal.office365.us for GCC High, https://portal.apps.mil for DoD).
  • The OneNote account connected must be the organizational (work/school) account, not a personal Microsoft account.

Technical Implementation: Enabling & Configuring Copilot Notebooks

Here are the practical steps and PowerShell commands to verify and configure your environment for Copilot Notebooks. These steps are crucial for any M365/Intune engineer.

  1. Step 1: Verify Copilot Licensing in the Tenant

    Ensure the necessary Copilot SKUs are assigned and active.

    # Connect to Microsoft Graph (requires Global Admin or License Admin)
    Connect-MgGraph -Scopes "Directory.Read.All", "Organization.Read.All"
    
    # Check assigned Copilot SKUs
    Get-MgSubscribedSku | Where-Object { $_.SkuPartNumber -like "*COPILOT*" } |
      Select-Object SkuPartNumber, CapabilityStatus, ConsumedUnits, @{N='Available';E={$_.PrepaidUnits.Enabled - $_.ConsumedUnits}}
  2. Step 2: Validate Copilot App Availability

    Confirm the Microsoft 365 Copilot app is enabled in your tenant's integrated apps. This can be done via the Microsoft 365 Admin Center or Graph PowerShell.

    # Check if M365 Copilot app is enabled in Integrated Apps
    # Use Microsoft 365 Admin Center > Settings > Integrated Apps > Microsoft 365 Copilot
    # Alternatively via Graph:
    Get-MgServicePrincipal -Filter "appId eq 'b26aadf8-566f-4478-926f-589f601d9c74'" |
      Select-Object DisplayName, AppId, AccountEnabled
  3. Step 3: Confirm Semantic Index Provisioning

    While no direct PowerShell cmdlet exists to check provisioning status, you can infer it from service health. Provisioning is critical for Copilot's data grounding capabilities.

    # Semantic Index status is visible in M365 Admin Center > Search & Intelligence > Configurations
    # No direct PowerShell cmdlet; validate via:
    Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/admin/serviceAnnouncement/healthOverviews" |
      ConvertTo-Json -Depth 5
  4. Step 4: Check Intune App Protection / MAM Policies (if applicable)

    For GCC/GCC High/DoD environments utilizing Intune App Protection Policies (APP/MAM), ensure the Microsoft 365 Copilot app is not inadvertently blocked.

    # Connect to Intune via Graph
    Connect-MgGraph -Scopes "DeviceManagementApps.Read.All"
    
    # List App Protection Policies and check for Copilot app blocks
    Get-MgDeviceAppManagementManagedAppPolicy | Select-Object DisplayName, Id
    
    # Check if Microsoft 365 app is in approved/exempted list
    Get-MgDeviceAppManagementManagedAppRegistration |
      Where-Object { $_.AppIdentifier.BundleId -like "*microsoft365*" -or $_.AppIdentifier.PackageId -like "*copilot*" }
  5. Step 5: Configure Copilot Admin Controls (Notebook Data Access)

    In the Microsoft 365 Admin Center under Copilot > Settings, configure which data sources Copilot Notebooks can access. For GCC High/DoD, critically validate that Microsoft Graph connectors are limited to tenant-approved, FedRAMP authorized connectors only.

  6. Step 6: OneNote Integration Validation

    Copilot Notebooks integrates with OneNote but does not replace it. Ensure OneNote for the web is accessible and not blocked by Conditional Access or network proxies, especially for GCC High/DoD users where data resides in sovereign SharePoint Online infrastructure.

    # Verify OneNote service endpoints are reachable (run from client or jump box)
    Test-NetConnection -ComputerName "onenote.com" -Port 443
    Test-NetConnection -ComputerName "www.onenote.com" -Port 443
    # GCC High specific:
    Test-NetConnection -ComputerName "onenote.office365.us" -Port 443

Potential Gotchas and Common Errors

Even with careful planning, production environments can present unique challenges. Be aware of these common pitfalls when deploying Copilot Notebooks in government clouds.

1. Feature Not Visible After Licensing

Cause: The Semantic Index for Copilot can take up to 30 days to fully provision in government clouds. This is a common delay.

Fix: Patience is key. Monitor the M365 Admin Center > Health > Service Health for the Microsoft Copilot service. Ensure there are no active advisories or incidents.

2. GCC High / DoD Endpoint Mismatch

Cause: Users attempting to access the commercial Microsoft 365 Copilot app portal (https://m365.cloud.microsoft) instead of the government-specific portal.

Fix: Educate users and update organizational documentation. Ensure bookmarks, browser shortcuts, and Conditional Access Named Locations are configured for the correct portals:

  • GCC High Portal: https://portal.office365.us or https://m365.cloud.microsoft (Always verify current Microsoft guidance, as this endpoint can evolve.)
  • DoD Portal: https://portal.apps.mil
3. Conditional Access Blocking Copilot App

Cause: Conditional Access (CA) policies requiring compliant or hybrid-joined devices may implicitly block the Microsoft 365 Copilot app if it's treated as an unmanaged application or not explicitly included in policy scope.

Fix: Review your CA policies. Add the Microsoft 365 Copilot app (App ID: b26aadf8-566f-4478-926f-589f601d9c74) to the appropriate CA policy exclusions, or ensure your policies are designed to include it as a managed cloud app.

Recommendations

Based on our experience, here are some recommendations for a smooth deployment and adoption of Copilot Notebooks in your government cloud tenant:

  • Start with a Pilot Group: Begin with a small, technically savvy group of users to gather feedback and identify any tenant-specific issues before a broader rollout.
  • Educate End-Users: Provide clear guidance on how to access Copilot Notebooks (especially the correct portal URLs for GCC High/DoD) and its benefits for persistent work.
  • Review Data Governance: Leverage Microsoft Purview to review and refine data access policies. Copilot Notebooks relies heavily on the Microsoft Graph, so ensuring appropriate data sharing and access controls is paramount.
  • Monitor Service Health: Regularly check the Microsoft 365 Admin Center for service health updates, particularly for Copilot and Semantic Index provisioning.
  • Validate Graph Connectors: If using third-party data, meticulously validate all Microsoft Graph connectors for compliance and data residency requirements specific to your cloud tier.

Quick Reference: Copilot Notebooks for Gov Cloud

A concise summary of key considerations for quick lookups:

Aspect Key Detail Status / Note
Roadmap ID 569203 In Development for Gov Clouds
Core Function Persistent AI Workspace Context across sessions
Licensing M365 Copilot Add-on M365 G3/G5 + Copilot
AI Endpoints (DoD/GCC High) Azure Government Sovereign, IL4/IL5 compliant
Semantic Index Automatic provisioning (up to 30 days) Essential for data grounding
Access Portal (DoD) https://portal.apps.mil Critical for correct access
Access Portal (GCC High) https://portal.office365.us Or current M365 Copilot app URL for Gov
Intune App Protection Review policies; ensure Copilot app is not blocked App ID: b26aadf8-566f-4478-926f-589f601d9c74
Feature Lag Gov clouds lag commercial by 1-12 months Plan for phased rollout

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