The AI week, distilled.
Week 31 · 2026
MS Docs Watch

Azure AI and Copilot Studio documentation led the week with major updates around agents, tools, telemetry, and Foundry models.

The most active areas were Azure AI (hosted agents, Foundry Models, guardrails, and GPT Realtime API) and Copilot Studio (new tooling options and Application Insights telemetry in preview). The biggest change was expanded agent tooling and observability, including Model Context Protocol (MCP) tooling and environment-level telemetry guidance.

Azure AI 46

  • This new page documents how to connect a hosted agent in Microsoft Foundry Agent Service to a toolbox, enabling the agent to discover and invoke toolbox tools via a Model Context Protocol (MCP) endpoint. It covers prerequisites, endpoint selection, authentication, integration with Python (Agent Framework, LangGraph), .NET, and Visual Studio Code, as well as tool approval enforcement and troubleshooting.

    • Explains how to connect a hosted agent to a toolbox using MCP endpoints
    • Details authentication requirements and best practices for securing credentials
    • Provides step-by-step integration guides for Python (Agent Framework, LangGraph), .NET, and Visual Studio Code
  • The documentation now includes a new model, gpt-5.6-luna, with its own throughput and deployment parameters. The long context threshold for latency targets has also been updated to include this model. This is a significant update as it introduces a new model option for users and provides its operational parameters.

    • Added gpt-5.6-luna as a supported model with deployment and throughput parameters
    • Updated long context threshold note to include gpt-5.6-luna
    • Provided input TPM per PTU and output-to-input ratio for gpt-5.6-luna
  • The documentation now introduces network egress controls (in preview) for hosted agents, allowing administrators to govern outbound network connections using RAI policy rules. This expands guardrail capabilities beyond content safety to include network-level restrictions and transformations.

    • Added support for network egress controls (preview) to restrict or modify outbound connections from hosted agents.
    • Explained how to configure egress rules in the RAI policy using a new API version.
    • Clarified that both content safety and egress controls are referenced and attached similarly.
  • The page now documents upcoming retirements for several major model families, including new entries for GPT-5 series models, xAI Grok models, and additional Meta, DeepSeek, Cohere, and Mistral models. This provides critical information for users planning future Copilot and Azure OpenAI deployments, as it signals which models will be deprecated and when, along with suggested replacements.

    • Added retirement dates for GPT-5, GPT-5.1, GPT-5.2, and GPT-5.3 chat models in Azure OpenAI, with 'gpt-chat-latest' as the suggested replacement.
    • Introduced a new xAI section listing retirement dates for grok-3, grok-3-mini, and grok-4-fast models, with grok-4 and grok-4-1 variants as replacements.
    • Listed new Meta models (e.g., Llama-3.2-11B-Vision-Instruct, Meta-Llama-3.1-405B-Instruct) with June 2026 retirement dates.
  • The tutorial now requires updated package versions, including a new dependency (azure-identity), and changes the format of the Foundry project endpoint in the environment configuration. These updates are important for users to ensure compatibility and successful setup of the enterprise agent.

    • Updated required package versions to azure-ai-projects>=2.3.0 and added azure-identity
    • Changed the format of FOUNDRY_PROJECT_ENDPOINT in .env to a new URL structure
    • No changes to the assistant implementation section content
  • The code example for using Microsoft Entra ID authentication with Azure OpenAI has been updated to use the new 'Responses API' instead of the previous chat completions endpoint. This reflects a change in the recommended API usage pattern and may require users to update their integration code.

    • Code sample now uses 'client.responses.create' instead of 'client.chat.completions.create'
    • Model deployment name example changed from 'DeepSeek-V3.1' to 'deepseek-v3-0324'
    • Instructions and variable names updated to match the new API usage
  • The region availability table for Foundry Models in Azure OpenAI has been updated, notably expanding the availability of the 'gpt-5.1-codex-max' model to all listed regions. This change increases deployment options for customers using this model.

    • 'gpt-5.1-codex-max' model now available in all listed Azure regions (previously only in eastus2)
    • No removals or reductions in regional availability for other models
  • The documentation now clarifies endpoint usage for Foundry Models, adds a prerequisites section, and expands on API usage, especially for the OpenAI v1 API and the Responses API. However, the dedicated section on keyless authentication using Microsoft Entra ID has been removed, reducing guidance on secure, keyless access.

    • Clarified endpoint structure and usage for OpenAI v1 API and deployment mapping
    • Added details about the Responses API and its compatibility with various models
    • Introduced a new prerequisites section outlining setup requirements
  • The documentation now describes a new capability: connecting a Foundry IQ knowledge base to a Microsoft Copilot Studio agent. This enables Copilot Studio agents to access enterprise knowledge with grounded retrieval and source attribution.

    • Added support for integrating Foundry IQ knowledge bases with Copilot Studio agents
    • Enables grounded retrieval and source attribution for Copilot Studio agents using enterprise knowledge
    • Provides a link to configuration instructions for this integration
  • The quickstart now requires and documents integration with the Microsoft Foundry Toolkit for Visual Studio Code and GitHub Copilot in agent mode, and adds new dependencies and setup steps. The Python SDK path now uses a new import for optimization, and the sample project and workflow descriptions are more detailed. These changes reflect a significant expansion of prerequisites and supported tooling for optimizing hosted agents.

    • Added requirement for Microsoft Foundry Toolkit for Visual Studio Code (v1.6.4+) and GitHub Copilot in agent mode
    • New dependency on 'azure-ai-agentserver-optimization' Python package
    • Expanded setup instructions for Azure CLI, Azure Developer CLI (AZD), and the 'microsoft.foundry' AZD extension
  • The page now recommends and demonstrates using toolboxes for OpenAPI tools, enabling tool reuse, centralized credential management, versioning, and policy enforcement. The main code samples have been updated, including a new Python example and revised guidance for authenticated scenarios.

    • Added recommendation to use toolboxes for OpenAPI tools, with benefits like reuse and centralized management
    • Updated introductory guidance to mention toolboxes and link to toolbox quickstart
    • Replaced the main code sample with a Python example instead of C#
  • The documentation now introduces and details the use of Foundry Toolboxes as MCP endpoints, including support for long-running operations via MCP tasks (in preview), and provides step-by-step guidance for toolbox authentication and configuration. This enables more scalable, reusable, and manageable integration of MCP tools across agents.

    • Added recommendation and instructions for using Foundry Toolboxes to centralize and reuse MCP tool integrations
    • Documented support for long-running operations through MCP tasks (preview feature)
    • Provided detailed steps for authenticating and configuring toolbox MCP endpoints, including multiple authentication types
  • The documentation now includes guidance on adding the Browser Automation tool to a toolbox using the Azure Developer CLI, and clarifies the use of toolboxes for centralized management. This enables more flexible and reusable integration of browser automation across agents and runtimes.

    • Added instructions for adding Browser Automation to a toolbox using Azure Developer CLI
    • Introduced a tip recommending use of toolboxes for reuse, credential management, and policy enforcement
    • Clarified agent creation options in the C# example (Prompt Agents vs Hosted Agents)
  • The documentation now strongly recommends and demonstrates using the 'toolbox' approach for integrating Azure AI Search with Foundry agents, including new code and REST API examples for toolbox creation, usage, and management. This clarifies best practices and introduces a more scalable, reusable, and manageable way to add tools to agents.

    • Introduces and recommends the 'toolbox' pattern for tool management and reuse across agents.
    • Adds detailed code and REST API examples for creating and using toolboxes with Azure AI Search.
    • Explains benefits of toolboxes: centralized credential management, versioning, and policy enforcement.
  • A new model, 'gpt-live-transcribe', has been added to the list of supported GPT real-time models available via the WebSockets API. This expands the capabilities available to users, particularly for live transcription scenarios.

    • Added 'gpt-live-transcribe' model with a version date of 2026-07-29
  • A new model, 'gpt-live-transcribe' (version 2026-07-29), has been added to the list of supported models for the GPT Realtime API via WebRTC. This expands the available capabilities for real-time transcription use cases.

    • Added 'gpt-live-transcribe' (version 2026-07-29) to supported models
  • A new model, 'gpt-live-transcribe', has been added to the list of supported GPT real-time models for use via the SIP API. This expands the available capabilities for real-time transcription scenarios.

    • Added 'gpt-live-transcribe' model with availability date of 2026-07-29
  • A new model, gpt-live-transcribe, has been added to the list of supported GPT real-time models for speech and audio. Pricing guidance now includes this model, and instructions for using it in real-time transcription scenarios have been updated.

    • Added new model: gpt-live-transcribe (version 2026-07-29)
    • Pricing note updated to include gpt-live-transcribe, now priced by duration
    • Quickstart instructions updated to reference gpt-live-transcribe for transcription scenarios
  • The documentation now describes new Azure Policy capabilities for model router deployments, including support for management group scope, compliance monitoring, drift detection, and new preview policy definitions for routing standards beyond approved models.

    • Model router policy enforcement now supports management group scope in addition to subscription and resource group.
    • Added section on compliance monitoring and drift detection, explaining how Azure Policy tracks and surfaces noncompliant deployments.
    • Clarified policy assignment effects: Deny blocks new noncompliant deployments, Audit logs but does not block.
  • The documentation now introduces network egress controls (in preview) for hosted agents, allowing administrators to govern outbound connections made by agents. This expands the scope of guardrails beyond content safety to include network-level restrictions.

    • Network egress controls (preview) added for hosted agents
    • Egress controls are configured in the same guardrail (RAI policy) as content safety controls
    • Egress controls apply only to hosted agents
  • The tutorial has been updated to use the DeepSeek-V4-Pro reasoning model instead of DeepSeek-R1 throughout all steps, reflecting a shift to a newer, more advanced model for deployment and usage in Microsoft Foundry Models.

    • All instructions now reference DeepSeek-V4-Pro instead of DeepSeek-R1
    • Prerequisites and model capabilities updated to describe DeepSeek-V4-Pro
    • Deployment and code usage sections now guide users to deploy and interact with DeepSeek-V4-Pro
  • The documentation now reflects a major expansion of the Foundry Models catalog, increasing from over 1,900 to over 10,000 models, and highlights the addition of new model providers such as Anthropic, Mistral, and Cohere. These changes indicate significantly broader model availability and more frequent updates, which directly impact Copilot builders and users.

    • Catalog size increased from 1,900+ to 10,000+ models, with ~50 new models added monthly
    • New model providers listed: Anthropic, Mistral, Cohere, and expanded Azure OpenAI
    • Clarified support and integration details for models sold by Azure
  • Support for new image generation models (FLUX.2-pro and FLUX.2-flex) from Black Forest Labs has been added to the Images playground, while support for Stable Diffusion 3.5 Large, Stable Image Core, and Stable Image Ultra from Stability AI has been removed. This changes the set of available models for users experimenting with image generation in Foundry.

    • Added FLUX.2-pro and FLUX.2-flex models to Images playground
    • Removed Stable Diffusion 3.5 Large, Stable Image Core, and Stable Image Ultra models
    • Updated highlights to reflect new and removed model support
  • The retirement dates and lifecycle statuses for Fireworks partner models have been updated, extending their GA status and retirement to July 1, 2027. This means these models will remain available for a year longer than previously documented, which is important for customers planning long-term deployments.

    • Fireworks models previously marked as 'Retired' in 2026 are now 'GA' with retirement in 2027
    • Retirement date for multiple Fireworks models extended from July 1, 2026 to July 1, 2027
  • The documentation now introduces 'agent templates' as a new way to start building agents in Microsoft Foundry, alongside existing solution templates. This addition provides users with ready-to-deploy agent manifests, making it easier to experiment and build custom agents.

    • Added instructions for accessing 'Agents' in the Foundry portal
    • Introduced 'agent templates' as deployable starter manifests
    • Clarified that agent templates can be used to quickly create and adapt agents
  • Tool search is now generally available (no longer preview), with updated configuration and implementation details. The search mechanism is clarified as using BM25 ranking, and the configuration and SDK code samples have changed to reflect the new stable API and class names.

    • Tool search is now enabled with {"type": "toolbox_search"} instead of the previous preview directive.
    • The search algorithm is explicitly described as BM25, providing transparency into how tool matching works.
    • SDK code samples updated to use ToolSearchToolboxTool instead of ToolboxSearchPreviewTool.
  • The documentation now clarifies that generally available models from Anthropic, DeepSeek, Fireworks, and Mistral AI have a shorter 12-month lifecycle, rather than the standard 18 months. This helps customers plan migrations and understand support timelines for these specific providers.

    • Explicitly states 12-month lifecycle for Anthropic, DeepSeek, Fireworks, and Mistral AI models
    • Directs users to the Model retirement schedule for specific dates
  • Several model retirement and GA dates for Azure OpenAI models have been updated, extending support for some models and changing end-of-life planning for others. This affects when Copilot and other Azure OpenAI users must plan migrations or expect model deprecation.

    • Retirement date for gpt-4o-mini-transcribe (2025-12-15) extended from 2026-12-15 to 2027-06-15
    • Retirement date for gpt-4o-mini-tts (2025-12-15) extended from 2026-12-15 to 2027-06-15
    • Retirement date for gpt-4o-transcribe-diarize (2025-10-15) extended from 2026-10-15 to 2027-04-15
  • The instructions for constructing the MCP endpoint URL in the toolbox creation script were updated to use the newly created toolbox version and name, rather than retrieving the default version and toolbox name from a separate API call. This clarifies the endpoint construction process and reduces ambiguity for users following the quickstart.

    • MCP endpoint URL now built directly from the created toolbox's name and version
    • Removed extra API call to retrieve toolbox and default version
    • Clarifies which version and name to use for endpoint construction
  • The documentation clarifies the order and placement of warnings and notes, updates the required Python package version for connecting agents to Work IQ, and distinguishes between using Prompt Agents and Hosted Agents when integrating via code. These changes help developers understand prerequisites, compliance warnings, and technical steps more clearly.

    • Warning about compliance boundaries and responsible AI moved after introductory content for better context.
    • Virtual network (VNet) integration prerequisite moved for clarity.
    • Python package requirement updated from 'azure-ai-projects>=2.2.0' to 'azure-ai-projects>=2.3.0'.
  • Updated Web search tool

    The documentation now recommends using a toolbox to add the web search tool for better reusability, centralized management, and policy enforcement. The TypeScript and Java examples have been updated to reflect this best practice, clarifying that Java SDK users must create toolboxes via other SDKs or the portal.

    • Added guidance to use a toolbox for the web search tool for reuse and management benefits
    • TypeScript example now demonstrates creating and using a toolbox for the web search tool
    • Java section clarifies toolbox usage is recommended, but must be created via other SDKs or portal
  • The page was updated to clarify the process for creating and managing toolboxes in Foundry, including clearer prerequisites, improved feature support tables, and more explicit instructions for verifying tool availability. The introduction now points to conceptual and configuration documentation, and the feature support section is split to distinguish toolbox operations from individual tool support and VNet compatibility.

    • Introduction now references conceptual and configuration docs for toolboxes
    • Feature support table split into toolbox operations and individual tool support, with added VNet compatibility details
    • Prerequisites section clarifies agent identity requirements and links to permission assignment instructions
  • A new tip was added recommending the use of a toolbox to manage custom code interpreter tools, highlighting benefits like reusability, centralized credential management, versioning, and policy enforcement. This guidance helps users better manage and scale their custom tools.

    • Added tip to consider adding the tool using a toolbox for reusability and centralized management
    • Emphasized benefits such as credential management, versioning, and policy enforcement via managed MCP endpoint
    • Linked to the toolbox quickstart for further guidance
  • The documentation now clarifies the distinction between validated and unvalidated connectors, introduces the concept of using a toolbox for connector reuse and governance, and adds explicit warnings and best practices regarding third-party tools and security considerations.

    • Added explanation that only validated connectors appear in the managed MCP server experience in the portal
    • Clarified that unvalidated connectors are still available via previous experience or code-first paths
    • Introduced the recommendation to use a toolbox for connector reuse, centralized credential management, and policy enforcement
  • The documentation now recommends and demonstrates using a toolbox to add the Code Interpreter tool, highlighting benefits like reuse, centralized management, and policy enforcement. Sample code in Python and C# has been updated to reflect this approach, clarifying best practices for integrating the tool.

    • Added guidance to use a toolbox for Code Interpreter integration
    • Explained benefits of toolboxes: reuse, centralized credentials, versioning, policy enforcement
    • Updated Python and C# code samples to show toolbox-based integration
  • The documentation now clarifies how to configure A2A connections when targeting another Foundry agent, adds guidance on using toolboxes for reuse and management, and updates the Python example to use a newer model and a simpler, more focused code sample. These changes improve accuracy and usability for developers integrating A2A endpoints.

    • Clarifies A2A connection setup for targeting Foundry agents, including endpoint and audience details
    • Adds recommendation to use toolboxes for tool reuse and centralized management
    • Updates Python example to use 'gpt-5-mini' and simplifies the code flow
  • The authentication type for creating an A2A connection was clarified from 'AgenticIdentity' to 'AgenticIdentityToken', which may affect users configuring connections between Foundry agents. Additionally, a minor formatting change was made in the introduction.

    • Authentication type in A2A connection JSON changed from 'AgenticIdentity' to 'AgenticIdentityToken'
    • Formatting change: introductory note about A2A protocol versions is no longer in a callout box
  • The documentation now emphasizes using toolboxes as the recommended method for managing and attaching tools to agents in Foundry Agent Service, replacing previous guidance that focused on attaching tools directly to agents. This clarifies best practices for tool management, credential handling, and tool reuse.

    • Introduces toolboxes as the preferred way to expose tools to agents
    • Explains benefits of toolboxes: centralized management, versioning, and reuse
    • Updates example code to show toolbox creation and attachment via MCP endpoint
  • The documentation clarifies the handling of the agent version cap error, specifying that the error is terminal and retries will continue to fail until old versions are deleted. It also adds best practices for managing agent versions proactively to avoid hitting this limit.

    • Clarifies that exceeding the agent version cap returns a terminal error and retries will not succeed until versions are deleted
    • Adds a best practice to proactively manage and rotate agent versions as part of deployment pipelines
  • The documentation now clarifies how to reference agents in code using a stable get-or-create pattern and explains the behavior when reusing deleted agent IDs, including the handling of 404 errors. These updates help developers avoid common pitfalls and ensure robust agent management.

    • Added guidance on referencing agents in code with a stable get-or-create pattern
    • Clarified that deleted agent IDs are invalid and referencing them returns a 404 Not Found error
    • Advised that repeated calls to deleted agent IDs are futile and should be avoided
  • The documentation now lists a new 'Transcribe' model group in the table of Azure OpenAI models, indicating support for a new model type focused on transcription capabilities. No other material changes were made.

    • Added 'Transcribe' as a model group in the Azure OpenAI models table
  • The documentation was updated to refer to the 'transcription model' instead of 'Whisper model,' clarifying that the model uses the Audio API transcription path and is not a Realtime API model. It also clarifies the file upload flow and updates terminology throughout the quickstart, but does not introduce new features.

    • Replaced references to 'Whisper model' with 'transcription model' throughout the page
    • Clarified that the model uses the Audio API transcription path and is not a Realtime API model
    • Emphasized that the quickstart uses a file upload (not streaming) workflow
  • The documentation now notes the availability of dedicated built-in policy definitions for model router deployments in public preview, extending governance to aspects like deployment regions, routing rules, and logging. This expands policy-based governance beyond just model selection.

    • Announces public preview of dedicated built-in policy definitions for model router deployments
    • New governance capabilities include deployment regions, required routing rules, and logging configurations
    • References additional documentation for governing model router deployments
  • A new Troubleshooting section was added, providing guidance on resolving common deployment errors when using a Bicep file to deploy a Microsoft Foundry resource. This helps users address specific issues that may block successful deployment.

    • Added troubleshooting steps for errors like `ServiceModelDeprecating`, `The content for this response was already consumed`, and `AccountNameInvalid`.
    • Explained causes and resolutions for model version deprecation, Azure CLI bugs, and naming constraints.
    • Clarified how to ensure resources deploy to the intended region by setting the `location` parameter.
  • The documentation clarifies that the maximum number of concurrent agent sessions per subscription per region is not always fixed at 50, but varies by region and can be increased by Azure support (up to a 1:10 IP-to-session mapping). This provides more flexibility for customers needing higher concurrency without increasing subnet size.

    • Concurrent session limits now described as region-dependent, not always capped at 50.
    • Default mapping is 1:1 (IP:session), but can be increased (up to 1:10) via Azure support request.
    • Quick reference table updated to reflect the option to request higher session density per IP.
  • The documentation clarifies the required role for enabling Microsoft Purview integration in Foundry, changing it from 'Foundry Account Owner' to 'Azure AI Account Owner.' It also adds detail about what happens to interaction data when the integration is enabled.

    • Role required to enable Purview changed from 'Foundry Account Owner' to 'Azure AI Account Owner'
    • Clarifies that interaction data from Foundry models is sent to the tenant's Microsoft Purview account upon integration

Copilot Studio 15

  • This new documentation introduces the ability to add a Model Context Protocol (MCP) server as a tool to agents in Microsoft Copilot Studio's new experience, enabling agents to access and invoke tools exposed by MCP servers during conversations. It details prerequisites, setup, testing, management, and operational limits for this integration.

    • Describes how to connect an MCP server to an agent in the new Copilot Studio experience
    • Explains that all tools exposed by the MCP server become available for agent invocation
    • Outlines prerequisites, including agent creation and MCP server setup
  • This new documentation introduces the ability for users to attach files to conversations with agents in Microsoft Copilot Studio's new experience, allowing agents to read, summarize, or reason over user-provided files per turn. It details supported file types, processing behavior, retention policies, and differences from knowledge sources.

    • Users can attach images, PDFs, text documents, and URLs for agents to process per message.
    • Attachments are distinct from persistent knowledge sources and are only available for the current conversation turn unless referenced again.
    • Agents process attachments using vision-capable models or text extraction, and skip unprocessable files without blocking the message.
  • This new documentation introduces the ability to export and monitor Copilot Studio agent telemetry at the environment level using Azure Application Insights. It details configuration steps, data schema, query examples, and known limitations, enabling operational monitoring and analysis of Copilot Studio agents in managed environments.

    • Describes how to configure environment-level export of Copilot Studio agent traces to Application Insights
    • Explains the trace and span model for agent telemetry, including OpenTelemetry alignment
    • Provides detailed schema mapping for exported telemetry fields and custom dimensions
  • This new page documents how to add a workflow as a tool to an agent in the new Copilot Studio experience, enabling agents to execute automated, multi-step processes. It covers prerequisites, step-by-step instructions for creation, testing, and management of workflows within agents.

    • Introduces ability to add workflows as tools to agents in the new Copilot Studio experience
    • Details step-by-step process for creating, saving, publishing, and testing workflows
    • Explains workflow management, including removal and temporary disabling
  • This new page documents the capability for agents in Microsoft Copilot Studio to create files (such as reports, images, or code) during conversations, and explains how these files are surfaced to users, referenced in follow-up turns, and subject to size and retention limits. This is a significant new feature for agent interactions.

    • Agents can now generate and return files (documents, images, code, etc.) as part of a conversation.
    • Created files are shown to users via a 'created file card' with download options across all supported channels.
    • Users and agents can reference created files in subsequent conversation turns.
  • This new documentation introduces the ability to send Copilot Studio telemetry data to Application Insights, detailing both agent-level and environment-level (preview) telemetry options. It explains the differences in configuration, ownership, and observability, including support for OpenTelemetry-aligned data at the environment level.

    • Copilot Studio telemetry can now be exported to Application Insights for monitoring and diagnostics.
    • Two telemetry scopes are supported: agent-level (per agent, event-based) and environment-level (centralized, OpenTelemetry-aligned, in preview).
    • Environment-level telemetry enables centralized, cross-agent observability using industry-standard OpenTelemetry conventions.
  • A new section describes the 'agent viewer' role, allowing agent owners to share access specifically to the Evaluation page, enabling users to manage evaluations without broader agent permissions. This introduces more granular access control for evaluation management.

    • Introduces the 'agent viewer' sharing role for evaluations
    • Allows users to view, run, rename, cancel, and delete evaluations without full agent access
    • Clarifies that agent viewers cannot create or update evaluation test sets or manage agent settings
  • A new section describes the 'Agent Viewer' role in Copilot Studio, allowing agent owners to share access to agent evaluations without granting full agent permissions. This enables subject matter experts and reviewers to participate in testing while maintaining agent security.

    • Introduction of the 'Agent Viewer' role for sharing evaluation access
    • Agent viewers can view and run evaluations, and manage evaluation test sets
    • Agent owners retain control over agent content and configuration
  • A new section was added describing how to view and update an MCP server configuration within Copilot Studio agents, including toggling individual tools and updating server credentials. This expands management capabilities for users working with MCP servers as tools.

    • Added instructions for managing MCP server configurations in agents
    • Users can now toggle individual MCP server tools on or off
    • Guidance provided for updating MCP server authentication credentials
  • A new section explains that you can now edit your agent in the Build tab while an active conversation is ongoing in the Preview tab, and those changes will apply to the next turn without restarting the conversation. This enables faster iteration and testing of agent modifications.

    • You can edit agent configuration during an active test conversation.
    • Changes take effect on the next turn without needing to restart.
    • Structural changes like adding tools or changing models are supported mid-conversation.
  • A new section was added explaining how administrators can disable agent-level Application Insights telemetry in Copilot Studio by blocking the relevant connector via a data policy. This gives organizations more control over telemetry data collection and compliance.

    • Added instructions for disabling agent-level Application Insights telemetry via Power Platform admin center
    • Clarified that blocking the 'Application Insights in Copilot Studio' connector prevents makers from enabling telemetry
    • Specified required admin roles and steps for policy enforcement
  • A new section details specific limits on file sizes and the number of Model Context Protocol (MCP) servers for agent tools, clarifying operational constraints for users and developers.

    • Introduces a 10 MB per-file cap on files created by agents during a turn.
    • Clarifies that files exceeding this size are not returned to the user.
    • Explains that MCP servers count toward the total tool limit and have a cap on concurrent instances per conversation.
  • The documentation now clarifies that both MCP tools and custom workflows can be added as custom tools, and provides a more concise overview of these options. The section on tool descriptions was also slightly reworded for clarity.

    • Explicitly lists both MCP tools and workflows as supported custom tool types
    • Removes step-by-step instructions for adding MCP servers and workflows, focusing on the types of tools supported
    • Minor wording change in tips for naming tools
  • The page clarifies the capabilities and workflow benefits of the Copilot Studio Visual Studio Code extension, with minor rewording for accuracy and readability. The section explaining what Copilot Studio is has been removed, which may affect new users' understanding of the broader platform context.

    • Refined descriptions of developer workflow and collaboration features
    • Clarified language around local development and agent editing
    • Removed the introductory section explaining Copilot Studio's core capabilities
  • The documentation now clarifies that activity transcripts can be shared with other users if enabled by a system admin, rather than being strictly limited to the user's own interactions. This impacts how agent activity data may be accessed and reviewed within an organization.

    • Admins can enable sharing of activity transcripts with other users
    • Activity transcript visibility is no longer strictly limited to the user's own interactions

Microsoft 365 Copilot 12

  • New Copilot features were introduced, including inline display of rich images in Copilot responses and a redesigned Overview experience in Copilot notebooks for OneNote. These updates enhance the visual and interactive capabilities of Copilot, improving user comprehension and productivity.

    • Copilot now surfaces rich images inline within responses from files and meetings
    • Users can click images in Copilot responses to access source files or meeting content
    • OneNote Copilot Notebooks receive a redesigned Overview with improved summaries and actionable artifacts
  • A new enhancement allows plugin connector tools in Copilot Cowork to accept files from the workspace as input, enabling more advanced automation and integration scenarios. This expands the capabilities for plugin authors and users to process and manipulate files directly within Cowork sessions.

    • Plugin connector tools can now accept files from the Cowork workspace as input
    • Plugin authors can declare a tool parameter with contentEncoding: base64
    • Cowork resolves workspace files to content before calling the tool, enabling actions like document conversion or file attachment
    Microsoft Learn · 2026-07-23
  • Copilot now supports automatic inference of citation metadata from common field names when explicit response semantics are not provided. This enables zero-config clickable citations, especially useful for dynamic tool discovery scenarios.

    • Copilot can infer citation fields (URL, title, subtitle, thumbnail) from well-known aliases in plugin responses.
    • Explicit response_semantics mappings still take precedence if provided.
    • Automatic inference is especially useful for dynamic tool discovery where the tool surface changes at runtime.
  • Support for adding OneNote pages as knowledge sources in declarative agents has been introduced. This allows agents to leverage content from individual OneNote pages, expanding the range of knowledge sources available to Copilot agents.

    • New capability: Add individual OneNote pages as knowledge sources via file picker in Agent Builder
    • Cannot select entire OneNote notebooks, only individual pages
    • Table updated to reflect OneNote pages as a supported knowledge source (no license required)
  • The documentation now describes new capabilities for scoping Copilot agents to specific Teams meetings and for adding individual OneNote pages as knowledge sources. These enhancements allow for more precise and relevant knowledge grounding in agents.

    • Agents can now be scoped to specific Teams meetings, not just chats.
    • Users can add individual OneNote pages as knowledge sources via the file picker.
    • Clarification that entire OneNote notebooks cannot be selected, only pages.
  • The documentation now requires and explains the use of 'mcpToolDescription' files for connectors, updates packaging patterns to include a 'tools/' directory, and adds a new section detailing how to test connectors against a local MCP server using dev tunnels. These changes are important for developers building and validating connectors for Copilot Cowork.

    • Connectors must now include 'mcpToolDescription' with a file present in the ZIP
    • Packaging patterns updated to show 'tools/' directory and tool-description files for connectors
    • New section added explaining how to test connectors against a local MCP server using dev tunnels
    Microsoft Learn · 2026-07-21
  • The section now clarifies that plugin connectors in Copilot Cowork can interact with files from your session, such as converting documents or attaching files to external systems, and that user approval is required before a file is sent. This provides important context for users about how file handling works with connectors.

    • Added explanation that connectors can process files from the user's session
    • Clarified that user approval is required before a file is sent to a connector tool
    • Linked to further information about accepting files from the Cowork workspace
    Microsoft Learn · 2026-07-23
  • A new FAQ clarifies that plugin tools can accept files from the Cowork workspace by declaring a parameter with contentEncoding: base64, and explains how file handling works in this context. This enables plugin developers to support file input in their tools.

    • Added FAQ: Plugin tools can accept files from the Cowork workspace using contentEncoding: base64
    • Explained that Cowork resolves workspace files to base64 before calling the plugin server
    • Clarified that file paths, not file content, are passed to the model, preserving model context
    Microsoft Learn · 2026-07-30
  • A new section explains that plugins in Copilot Cowork can now interact with user files, such as converting documents or analyzing images, with user approval. This expands plugin capabilities and clarifies how file access is managed.

    • Added section describing plugin ability to act on user files within Cowork sessions
    • Clarifies that user approval is required before a plugin tool runs on a file
    • Mentions developer guidance for building plugins that accept files
    Microsoft Learn · 2026-07-23
  • Updated Known issues

    The documentation now clarifies that custom engine agents do not support file or image attachments in chats, and that images uploaded in chat are not passed to the agent for processing. This provides more specific guidance on unsupported scenarios, such as image extraction.

    • Clarified that file or image attachments are not supported in custom engine agent chats
    • Explicitly stated that images uploaded in chat are not passed to the agent
    • Added example scenario: extracting text from uploaded images is not supported
  • The documentation now clarifies how plugin authors can directly test their own Copilot Cowork plugins within the app, and distinguishes this from tenant-wide or group testing via the admin center. Additionally, the MCP server manifest example now includes an optional mcpToolDescription property.

    • Added instructions for plugin authors to test plugins privately in Cowork before wider distribution
    • Clarified the process for tenant-wide or group testing of plugins before App Store publication
    • Manifest example for MCP server plugins now includes mcpToolDescription property
    Microsoft Learn · 2026-07-22
  • A new subsection explains how Copilot Cowork processes user data during a task, clarifying that files are handled in a temporary, isolated environment within the Microsoft 365 service boundary and are not accessible after the task completes. This provides important transparency about data handling and security.

    • Added explanation of temporary, isolated data processing environment for Cowork tasks
    • Clarified that files are only used for the duration of the task and the environment is removed afterward
    • Defined the Microsoft 365 service boundary in the context of Cowork
    Microsoft Learn · 2026-07-17

MS AI SDKs 14

  • The documentation for the Pinecone connector has shifted from .NET to Python, reflecting a major change in supported platforms and usage patterns. The .NET SDK is no longer supported, and the guide now focuses on Python installation, usage, and features such as GRPC and integrated embeddings. Several sections related to .NET-specific data mapping and usage have been removed or replaced.

    • Pinecone .NET SDK is no longer supported; documentation now focuses on Python usage.
    • Installation and code examples are now Python-based, replacing previous .NET/C# instructions.
    • Feature table updated: new supported data types, filter clauses, and GRPC/integrated embeddings support.
    Microsoft Learn · 2024-07-08
  • The documentation now lists new CommunityToolkit.VectorData packages as the recommended connectors for several vector stores, replacing previous Microsoft.SemanticKernel.Connectors.* packages. This signals a shift in supported or preferred libraries for vector store integration in C# Semantic Kernel projects.

    • CommunityToolkit.VectorData packages added for Azure AI Search, CosmosDB MongoDB, CosmosDB NoSQL, Qdrant, Redis, Sqlite, and Weaviate
    • MongoDB.VectorData now listed for MongoDB vector store integration
    • Previous Microsoft.SemanticKernel.Connectors.* vector store packages removed from the list
    Microsoft Learn · 2023-07-11
  • The documentation now instructs users to install the Weaviate Vector Store connector from the CommunityToolkit.VectorData.Weaviate NuGet package instead of the Microsoft.SemanticKernel.Connectors.Weaviate package. This indicates a significant change in the recommended package for integrating Weaviate with Semantic Kernel.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.Weaviate to CommunityToolkit.VectorData.Weaviate
    • Dependency injection extension methods are now provided by the connector package, not Semantic Kernel
    Microsoft Learn · 2024-09-23
  • The documentation now instructs users to use the CommunityToolkit.VectorData.SqlServer package instead of the Microsoft.SemanticKernel.Connectors.SqlServer package for the SQL Server Vector Store connector, reflecting a major change in the recommended library and associated namespaces.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.SqlServer to CommunityToolkit.VectorData.SqlServer
    • Namespace usage updated throughout code samples to CommunityToolkit.VectorData.SqlServer
    • Dependency injection and direct instantiation examples updated to use the new package
    Microsoft Learn · 2024-03-21
  • The documentation now instructs users to use the CommunityToolkit.VectorData.SqliteVec package instead of Microsoft.SemanticKernel.Connectors.SqliteVec for the SQLite Vector Store connector, and updates all code samples to use the new namespace. This indicates a significant change in the recommended library and API surface for integrating SQLite vector storage with Copilot-related solutions.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.SqliteVec to CommunityToolkit.VectorData.SqliteVec
    • All code samples updated to use CommunityToolkit.VectorData.SqliteVec namespace
    • Dependency injection and direct instantiation examples now reference the new package
    Microsoft Learn · 2024-10-24
  • The Redis connector integration for Copilot has switched from the Microsoft.SemanticKernel.Connectors.Redis package to CommunityToolkit.VectorData.Redis, affecting both NuGet package installation and code usage. All code samples and direct instantiation references have been updated to use the new package, which may impact existing implementations.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.Redis to CommunityToolkit.VectorData.Redis
    • Code samples updated to use new namespaces and types from CommunityToolkit.VectorData.Redis
    • Dependency injection and direct instantiation examples revised for new package
    Microsoft Learn · 2024-07-08
  • The documentation now instructs users to use the CommunityToolkit.VectorData.Qdrant NuGet package instead of the Microsoft.SemanticKernel.Connectors.Qdrant package, and updates code samples to reflect this change. This signals a major shift in the recommended connector package for Qdrant integration with Copilot and Semantic Kernel.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.Qdrant to CommunityToolkit.VectorData.Qdrant
    • Code samples updated to use new namespaces and package references
    • Dependency injection instructions now reference the connector package's extension methods
    Microsoft Learn · 2024-07-08
  • The documentation now instructs users to use the CommunityToolkit.VectorData.PgVector NuGet package instead of the previous Microsoft.SemanticKernel.Connectors.PgVector package, and updates code samples accordingly. This reflects a significant change in the recommended library for integrating Postgres Vector Store with Copilot and Semantic Kernel solutions.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.PgVector to CommunityToolkit.VectorData.PgVector
    • All code samples updated to use the new package and namespaces
    • Dependency injection and direct instantiation examples revised for new package
    Microsoft Learn · 2024-10-24
  • The documentation now instructs users to use the CommunityToolkit.VectorData.InMemory package instead of Microsoft.SemanticKernel.Connectors.InMemory for the In-Memory connector, and updates code samples accordingly. This reflects a significant change in the recommended package and namespaces for implementation.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.InMemory to CommunityToolkit.VectorData.InMemory
    • Updated code samples to use CommunityToolkit.VectorData.InMemory namespace
    • Clarified that extension methods are provided by the connector package, not Semantic Kernel
    Microsoft Learn · 2024-11-10
  • The documentation now instructs users to use the CommunityToolkit.VectorData.CosmosNoSql package instead of the Microsoft.SemanticKernel.Connectors.CosmosNoSql package for the Azure CosmosDB NoSQL Vector Store connector. This reflects a significant change in the recommended NuGet package and associated namespaces, which impacts how developers integrate and use the connector.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.CosmosNoSql to CommunityToolkit.VectorData.CosmosNoSql
    • Namespace references updated to CommunityToolkit.VectorData.CosmosNoSql in code samples
    • Dependency injection extension methods are now provided by the connector package instead of Semantic Kernel
    Microsoft Learn · 2024-09-23
  • The NuGet package required for the Azure AI Search Vector Store connector has changed from a Microsoft-provided prerelease package to a CommunityToolkit package. This alters how developers obtain and reference the connector, which may impact compatibility and support.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.AzureAISearch (prerelease) to CommunityToolkit.VectorData.AzureAISearch
    • Dependency injection examples updated to use the new package
    • Clarifies that extension methods are now provided by the connector package, not Semantic Kernel
    Microsoft Learn · 2024-07-08
  • The NuGet package for the Azure CosmosDB MongoDB Vector Store connector has changed from a Microsoft-branded prerelease to a CommunityToolkit-branded package, and the code samples have been updated to reflect this. This is a significant change for developers integrating the connector, as it affects package management and potentially support channels.

    • NuGet package changed from Microsoft.SemanticKernel.Connectors.CosmosMongoDB to CommunityToolkit.VectorData.CosmosMongoDB
    • Code samples updated to use the new package and namespaces
    • Dependency injection examples now reference the connector package's extension methods
    Microsoft Learn · 2024-09-23
  • A note was added clarifying that the Copilot Studio client library currently only supports agents created with the classic authoring experience, and not those created with the new experience. This is important for developers to avoid compatibility issues.

    • Added limitation: client library only works with classic authoring experience agents
    • New experience agents are not yet officially supported
    Microsoft Learn · 2026-07-27
  • The instructions for adding the Redis connector package have changed from using the Semantic Kernel Redis connector to the CommunityToolkit.VectorData.Redis package, which may reflect a shift in recommended tooling for vector store integration.

    • Replaced Microsoft.SemanticKernel.Connectors.Redis with CommunityToolkit.VectorData.Redis in setup instructions
    Microsoft Learn · 2024-07-08

SharePoint 2

  • The page has been significantly expanded to provide detailed guidance on Microsoft account support, technical support, and sales support, including a comprehensive list of regional sales support contact numbers. This makes it much easier for users to find the appropriate support channel for their specific needs.

    • Added section on Microsoft account support with a sign-in helper tool
    • Added section on Microsoft technical support with guidance on self-help and contacting support
    • Added extensive Microsoft sales support section with country-specific contact numbers
    Microsoft Learn · 2026-07-30
  • The page has been significantly expanded to provide detailed guidance on Microsoft account support, technical support, and sales support, including a comprehensive list of sales support contact numbers by country/region. This makes it much easier for users to find the right support channel for their needs.

    • Added section on Microsoft account support with a sign-in helper tool
    • Added section on Microsoft technical support with guidance on self-help and contacting support
    • Added extensive Microsoft sales support section with country/region-specific contact numbers
    Microsoft Learn · 2026-07-30

Microsoft Learn 204

  • Page removed or relocated. The documentation page for generating images with Copilot in Word has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on using Copilot to create images in Word.

    • Official instructions for generating images with Copilot in Word are no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to draft and add content with Copilot in Word has been removed. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on using Copilot for content creation in Word.

    • Loss of instructions for drafting and adding content with Copilot in Word
    • Uncertainty whether the feature is deprecated or documentation is relocated
  • Page removed or relocated. The documentation page explaining how to use Copilot in Word to create a summary of your document has been removed. It is unclear if this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Guidance for generating document summaries with Copilot in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for using Copilot in Word on mobile devices has been removed. It is unclear whether this indicates deprecation of the feature or a relocation of the documentation, but users now lack official guidance on Copilot's mobile Word capabilities.

    • Official documentation for Copilot in Word on mobile devices is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for using Copilot in PowerPoint on mobile devices has been removed. It is unclear if this reflects a deprecation of the feature or a restructuring of documentation, but users now lack official guidance on Copilot's mobile PowerPoint capabilities.

    • Official documentation for Copilot in PowerPoint on mobile devices is no longer available
    • Uncertainty whether the feature is deprecated or the content was relocated
  • Page removed or relocated. The documentation page for 'Chat with Copilot in Outlook' has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation/restructuring of the documentation. Users now lack official guidance on how to use Copilot's chat capabilities within Outlook.

    • Documentation for 'Chat with Copilot in Outlook' is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for visualizing data with Copilot in Excel has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on using Copilot for data visualization in Excel.

    • Page covering Copilot's data visualization capabilities in Excel is no longer available
    • Uncertainty whether this reflects feature removal or documentation reorganization
  • Page removed or relocated. Documentation for using Copilot in Excel to import data from another Excel file is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this scenario.

    • Page explaining how to import data from another Excel file using Copilot in Excel is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for getting started with Copilot in Excel has been removed. It is unclear if this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on how to begin using Copilot in Excel.

    • Removal of the 'Get started with Copilot in Excel' documentation
    • No longer provides onboarding or setup instructions for Copilot in Excel
  • Page removed or relocated. The documentation page for using Copilot to gain data insights in Excel has been removed. It is unclear whether this indicates a feature deprecation or a restructuring of documentation, but users now lack official guidance on this capability.

    • Official documentation for Copilot's data insights features in Excel is no longer available
    • Uncertainty whether the feature is deprecated or the documentation has been relocated
  • Page removed or relocated. Documentation for Copilot in Excel and Power BI is no longer available at this URL. It is unclear if the content was removed, relocated, or consolidated, but users now lack direct access to guidance on Copilot capabilities within Excel and Power BI from this page.

    • Copilot in Excel and Power BI documentation is missing
    • Uncertainty whether this reflects deprecation or restructuring
  • Page removed or relocated. The documentation page for Copilot in Excel (Microsoft Skills) has been removed. It is unclear if this indicates deprecation of the feature or a relocation of the documentation, but users now lack official guidance on this capability.

    • Copilot in Excel (Microsoft Skills) documentation is no longer available at this URL
    • Uncertainty whether this reflects feature removal or documentation restructuring
  • Page removed or relocated. Documentation about Copilot in Excel data sources is now missing. It is unclear if this reflects a feature deprecation or a restructuring of the documentation, but users now lack official guidance on how Copilot interacts with Excel data sources.

    • Page covering Copilot in Excel data sources has been removed
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. The documentation page for using Copilot in the SharePoint rich text editor has been removed. It is unclear whether this indicates a feature deprecation or a documentation restructure, but guidance on this specific Copilot capability is now missing.

    • Page describing Copilot usage in SharePoint's rich text editor is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for creating pages with AI in SharePoint is no longer available. It is unclear if this indicates a feature deprecation or a documentation restructure, but information about using AI to create SharePoint pages is now missing.

    • Documentation for AI-powered page creation in SharePoint is no longer accessible
    • Uncertainty whether this reflects feature removal or just a doc move
  • Page removed or relocated. The documentation page for generating images with Copilot in Word has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Official documentation for generating images in Word with Copilot is no longer available
    • Uncertainty whether the feature is deprecated or the content was relocated
  • Page removed or relocated. The documentation page explaining how to draft and add content with Copilot in Word has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on using Copilot for content creation in Word.

    • Page detailing Copilot's drafting and content addition features in Word is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page explaining how to use Copilot in Word to create a summary of your document has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Missing instructions for generating document summaries with Copilot in Word
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for using Copilot in Word on mobile devices has been removed. It is unclear whether this indicates a deprecation of the feature or a restructuring of documentation, but users now lack official guidance on Copilot's mobile Word capabilities.

    • Official documentation for Copilot in Word on mobile devices is no longer available
    • Uncertainty whether this reflects feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for using Copilot in PowerPoint on mobile devices has been removed. It is unclear whether this indicates a feature deprecation or a restructuring of documentation, but users now lack official guidance on Copilot capabilities for PowerPoint mobile.

    • Official documentation for Copilot in PowerPoint on mobile devices is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for 'Chat with Copilot in Outlook' has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack official guidance on using Copilot's chat capabilities within Outlook.

    • Official documentation for chatting with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to use Copilot in Excel to import data from the web and internal sources is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Loss of instructions for importing data from web/internal sources with Copilot in Excel
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for using Copilot to gain data insights in Excel has been removed. It is unclear whether this indicates a deprecation of the feature or a restructuring of the documentation, but users now lack official guidance on this capability.

    • Documentation for Copilot's data insights features in Excel is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. Documentation for Copilot in Excel and Power BI is no longer available at this URL. It is unclear if the content was removed, relocated, or consolidated, but users now lack direct access to guidance on Copilot capabilities in these products from this page.

    • Copilot in Excel and Power BI documentation is missing
    • Uncertainty whether this reflects deprecation or restructuring
  • Page removed or relocated. The documentation page for Copilot in Excel (Microsoft Skills) has been removed. It is unclear whether this indicates deprecation of the feature or a relocation/consolidation of the documentation, but users now lack direct access to guidance on this capability.

    • Entire documentation for Copilot in Excel (Microsoft Skills) is no longer accessible
    • Uncertainty whether this reflects feature deprecation or documentation restructuring
  • Page removed or relocated. Documentation about Copilot in Excel data sources is now missing. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack official guidance on how Copilot interacts with Excel data sources.

    • Page covering Copilot in Excel data sources has been removed
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. Documentation for using Copilot to write in the SharePoint rich text editor is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users currently lack official guidance on this capability.

    • Page describing Copilot integration with SharePoint's rich text editor is no longer available
    • Uncertainty whether the feature is deprecated or documentation was moved
  • Page removed or relocated. The documentation page for creating pages with AI in SharePoint is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on using AI to create SharePoint pages.

    • Documentation for AI-powered page creation in SharePoint is missing
    • Uncertainty whether the feature is deprecated or the content was relocated
  • Page removed or relocated. The documentation page for generating images with Copilot in Word has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to generate images in Word with Copilot is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page explaining how to draft and add content with Copilot in Word is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this Copilot capability in Word.

    • Loss of step-by-step instructions for drafting and adding content with Copilot in Word
    • Uncertainty about whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to use Copilot in Word to create a summary of your document has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Loss of instructions for generating document summaries with Copilot in Word
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for using Copilot in Word on mobile devices has been removed. It is unclear whether this indicates a feature deprecation or a documentation restructure, but users now lack official guidance on Copilot's mobile Word capabilities.

    • Official documentation for Copilot in Word on mobile devices is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for Copilot in PowerPoint has been removed. This means users no longer have access to a centralized resource for common questions and answers about Copilot's features and usage in PowerPoint, though it is unclear if this is due to deprecation or documentation restructuring.

    • FAQ documentation for Copilot in PowerPoint is no longer available
    • Potential loss of guidance on common user questions and troubleshooting
  • Page removed or relocated. A documentation page about Copilot in PowerPoint skills has been removed. It is unclear if this reflects a deprecation of features or a restructuring of documentation, but information about Copilot's capabilities in PowerPoint is now missing from this location.

    • Documentation for Copilot in PowerPoint skills is no longer available at this URL
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for using Copilot in PowerPoint on mobile devices has been removed. It is unclear whether this indicates a deprecation of the feature, a relocation of the documentation, or a restructuring of content. Users now lack official guidance on Copilot capabilities in PowerPoint for mobile.

    • Official documentation for Copilot in PowerPoint on mobile devices is no longer available
    • Uncertainty whether the feature is deprecated or the documentation has moved
  • Page removed or relocated. The documentation page for 'Chat with Copilot in Outlook' has been removed. It is unclear whether this indicates feature deprecation or a restructuring/relocation of the documentation, but users now lack official guidance on using Copilot's chat capabilities within Outlook.

    • Official documentation for chatting with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. Documentation for using Copilot in Excel to import data from the web and internal sources is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users lose guidance on this specific capability.

    • Page describing how to import data from web/internal sources with Copilot in Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for using Copilot to gain data insights in Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack official guidance on this capability.

    • Page covering Copilot's data insights features in Excel is no longer available
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. The documentation page detailing Copilot's skills or capabilities in Excel has been removed. It is unclear whether this indicates deprecation of features or a restructuring of documentation, but users now lack direct reference material for Copilot's Excel-specific functionalities.

    • Loss of documentation outlining Copilot's skills in Excel
    • Uncertainty whether this is due to feature removal or doc reorganization
  • Page removed or relocated. The documentation page about Copilot in Excel personalization is no longer available. It is unclear whether this reflects a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on personalizing Copilot in Excel.

    • Documentation for Copilot in Excel personalization is missing
    • Uncertainty whether feature is deprecated or documentation was moved
  • Page removed or relocated. The documentation page for Copilot in Excel (Microsoft skills) has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on this capability.

    • Copilot in Excel (Microsoft skills) documentation is no longer available
    • Uncertainty whether this is due to deprecation or restructuring
  • Page removed or relocated. The documentation page about Copilot in Excel data sources is no longer available. It is unclear if this reflects a deprecation of the feature or a restructuring of the documentation, but users now lack official guidance on how Copilot in Excel interacts with data sources.

    • Loss of documentation on Copilot in Excel data sources
    • Uncertainty whether this is a feature removal or a doc reorganization
  • Page removed or relocated. The documentation page for using Copilot to write in the SharePoint rich text editor has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but guidance on this specific Copilot capability is now missing.

    • Page describing Copilot use in SharePoint rich text editor is no longer available
    • Uncertainty whether feature is deprecated or documentation was relocated
  • Page removed or relocated. The documentation page for creating pages with AI in SharePoint is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this Copilot capability.

    • Official documentation for AI-powered page creation in SharePoint is missing
    • Uncertainty whether the feature is deprecated or the content was relocated
  • Page removed or relocated. The documentation page for generating images with Copilot in Word has been removed. It is unclear whether this indicates deprecation of the feature or a relocation of the documentation, but users now lack official guidance on using Copilot to generate images in Word.

    • Documentation for generating images with Copilot in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. Documentation for drafting and adding content with Copilot in Word is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users lose access to guidance on using Copilot for content creation in Word.

    • Page covering Copilot's drafting and content addition features in Word is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page explaining how to use Copilot in Word to create a summary of your document has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Official instructions for generating document summaries with Copilot in Word are no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for using Copilot in Word on mobile devices has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on Copilot capabilities in Word for mobile.

    • Official documentation for Copilot in Word on mobile devices is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. A documentation page detailing Copilot's skills in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack direct access to information about Copilot's PowerPoint capabilities.

    • Loss of a dedicated page on Copilot skills in PowerPoint
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for using Copilot in PowerPoint on mobile devices has been removed. It is unclear whether this indicates a feature deprecation or a documentation restructure, but information about Copilot's mobile capabilities is now missing.

    • Page detailing Copilot in PowerPoint for mobile devices is no longer available
    • Uncertainty whether this reflects a feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for 'Chat with Copilot in Outlook' has been removed. It is unclear whether this indicates deprecation of the feature or a relocation/consolidation of the documentation, but users now lack direct guidance on using Copilot's chat capabilities within Outlook.

    • Loss of documentation for using Copilot's chat feature in Outlook
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for visualizing data with Copilot in Excel has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on using Copilot for data visualization in Excel.

    • Page on visualizing data with Copilot in Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
    • Users lose access to instructions or details on Copilot's data visualization capabilities in Excel
  • Page removed or relocated. The documentation page explaining how to use Copilot in Excel to import data from the web and internal sources is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Loss of instructions for importing data from web/internal sources using Copilot in Excel
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for Copilot in Excel has been removed. This means users no longer have access to a centralized resource for common questions and troubleshooting about Copilot in Excel, but it is unclear if the content was deprecated or simply relocated.

    • Loss of FAQ resource for Copilot in Excel
    • Potential gap in user support and self-service troubleshooting
  • Page removed or relocated. Documentation for Copilot in Excel rules is now missing. It is unclear if this is due to deprecation of the feature or a restructuring of the documentation, but users now lack official guidance on this capability.

    • Page covering Copilot in Excel rules has been removed
    • Uncertainty whether the feature is deprecated or documentation was relocated
  • Page removed or relocated. The documentation page for Copilot in Excel personalization is now missing. It is unclear whether this indicates a feature deprecation or a relocation of the documentation, but users currently lack official guidance on personalizing Copilot in Excel.

    • Loss of documentation on Copilot in Excel personalization
    • Uncertainty whether feature is deprecated or documentation is relocated
  • Page removed or relocated. The documentation page for Copilot in Excel (Microsoft Skills) has been removed. It is unclear if this reflects a deprecation of the feature or a restructuring of documentation, but users now lack official guidance on this capability.

    • Copilot in Excel (Microsoft Skills) documentation is no longer available
    • Uncertainty whether this is due to deprecation or doc reorganization
  • Page removed or relocated. Documentation about Copilot in Excel data sources is now missing. It is unclear if this reflects a feature deprecation or a restructuring/relocation of the content, but users lose access to guidance on how Copilot interacts with Excel data sources.

    • Page covering Copilot in Excel data sources has been removed
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. Documentation for using Copilot to write in the SharePoint rich text editor is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing Copilot usage in SharePoint's rich text editor is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for creating pages with AI in SharePoint is no longer available. It is unclear whether this reflects a deprecation of the feature or a restructuring of the documentation, but information about using AI to create SharePoint pages is now missing.

    • Documentation for AI-powered page creation in SharePoint has been removed
    • Uncertainty whether the feature is deprecated or the content was relocated
  • Page removed or relocated. Documentation for generating images with Copilot in Word is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users currently lack official guidance on this capability.

    • Page describing how to generate images in Word with Copilot has been removed
    • Uncertainty whether the feature is deprecated or documentation was relocated
  • Page removed or relocated. The documentation page explaining how to draft and add content with Copilot in Word has been removed. It is unclear if this indicates a feature deprecation or a restructuring of documentation, but users now lack official guidance on using Copilot for content creation in Word.

    • Loss of instructions for drafting and adding content with Copilot in Word
    • Uncertainty whether this is a feature removal or documentation reorganization
  • Page removed or relocated. The documentation page explaining how to use Copilot in Word to create a summary of your document has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Loss of instructions for generating document summaries with Copilot in Word
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for using Copilot in Word on mobile devices has been removed. It is unclear whether this indicates deprecation of the feature or a restructuring of documentation, but information about Copilot's mobile capabilities in Word is now missing.

    • Page covering Copilot in Word on mobile devices is no longer available
    • Uncertainty whether this reflects feature removal or documentation reorganization
  • Page removed or relocated. The FAQ page for Copilot in PowerPoint has been removed. This means users no longer have access to a centralized resource for common questions and answers about Copilot's features and usage in PowerPoint, which could impact their ability to quickly resolve issues or understand capabilities.

    • FAQ documentation for Copilot in PowerPoint is no longer available
    • Users may have difficulty finding answers to common questions about Copilot features in PowerPoint
  • Page removed or relocated. A documentation page about Copilot in PowerPoint skills has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but information about Copilot's capabilities in PowerPoint is now missing from this location.

    • Documentation for Copilot in PowerPoint skills is no longer available at this URL
    • Uncertainty whether this is due to deprecation or content reorganization
  • Page removed or relocated. The documentation page for using Copilot in PowerPoint on mobile devices has been removed. It is unclear if this reflects a deprecation of the feature or a restructuring of documentation, but information about Copilot's mobile capabilities in PowerPoint is now missing.

    • Documentation for Copilot in PowerPoint on mobile devices is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for 'Chat with Copilot in Outlook' has been removed. It is unclear whether this indicates a feature deprecation or a restructuring/relocation of the documentation, but users now lack official guidance on using Copilot's chat capabilities within Outlook.

    • Documentation for 'Chat with Copilot in Outlook' is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for visualizing data with Copilot in Excel has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack official guidance on using Copilot for data visualization in Excel.

    • Official documentation for using Copilot to visualize data in Excel is no longer available
    • Uncertainty remains whether the feature is deprecated or the content has been relocated
  • Page removed or relocated. Documentation for importing data from the web and internal sources into Excel using Copilot is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page on importing data from web/internal sources with Copilot in Excel is no longer available
    • Uncertainty whether the feature is deprecated or documentation was moved
  • Page removed or relocated. The documentation page for getting started with Copilot in Excel has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on how to begin using Copilot in Excel.

    • Removal of introductory/getting started guidance for Copilot in Excel
    • Uncertainty about whether the feature is deprecated or documentation is relocated
  • Page removed or relocated. The documentation page for using Copilot to gain data insights in Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack official guidance on this capability.

    • Page covering Copilot's data insights features in Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page detailing Copilot's skills in Excel has been removed. It is unclear whether this indicates deprecation of features or a restructuring of documentation, but users now lack direct reference material for Copilot's Excel-specific capabilities.

    • Loss of documentation outlining Copilot's skills in Excel
    • Uncertainty whether features are deprecated or documentation is relocated
  • Page removed or relocated. The documentation page for Copilot in Excel (Microsoft Skills) has been removed. It is unclear if this reflects a deprecation of the feature or a restructuring/relocation of the documentation, but users now lack direct guidance on this capability.

    • Copilot in Excel (Microsoft Skills) documentation is no longer available at this URL
    • Uncertainty whether the feature is deprecated or the documentation has moved
  • Page removed or relocated. Documentation about Copilot in Excel data sources is now missing. It is unclear if this reflects a feature deprecation or a restructuring of the documentation, but users now lack guidance on how Copilot interacts with Excel data sources.

    • Page covering Copilot in Excel data sources has been removed
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. Documentation for using Copilot to write in the SharePoint rich text editor is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page describing Copilot integration with SharePoint's rich text editor is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for creating pages with AI in SharePoint is no longer available. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on this Copilot capability.

    • Documentation for AI-powered page creation in SharePoint is missing
    • Uncertainty whether the feature is deprecated or the doc was moved
  • Page removed or relocated. The documentation page for generating images with Copilot in Word has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to generate images in Word with Copilot is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to draft and add content with Copilot in Word has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Loss of instructions for drafting and adding content with Copilot in Word
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page explaining how to use Copilot in Word to create document summaries has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Missing instructions for generating summaries with Copilot in Word
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for using Copilot in Word on mobile devices has been removed. It is unclear whether this indicates a feature deprecation or a restructuring of documentation, but users now lack official guidance on Copilot's mobile Word capabilities.

    • Official documentation for Copilot in Word on mobile devices is no longer available
    • Uncertainty whether this reflects feature removal or documentation reorganization
  • Page removed or relocated. The FAQ page for Copilot in PowerPoint has been removed, resulting in the loss of a resource that addressed common user questions about Copilot's features and usage in PowerPoint. It is unclear whether this information has been relocated or consolidated elsewhere.

    • FAQ documentation for Copilot in PowerPoint is no longer available
    • Users lose access to answers for common questions about Copilot's PowerPoint integration
  • Page removed or relocated. A documentation page about Copilot in PowerPoint skills is now missing. It is unclear if this indicates feature deprecation or simply a restructuring or relocation of the documentation, but users currently lose access to information about Copilot's capabilities in PowerPoint.

    • Documentation for Copilot in PowerPoint skills is no longer accessible
    • Uncertainty whether this is due to deprecation or doc reorganization
  • Page removed or relocated. The documentation page for using Copilot in PowerPoint on mobile devices has been removed. It is unclear if this indicates a feature deprecation or a documentation restructure, but users now lack official guidance on Copilot's mobile PowerPoint capabilities.

    • Official documentation for Copilot in PowerPoint on mobile devices is no longer available
    • Uncertainty whether this reflects a feature removal or a documentation move
  • Page removed or relocated. The documentation page for 'Chat with Copilot in Outlook' has been removed. It is unclear whether this indicates deprecation of the feature or a relocation of the documentation, but users now lack official guidance on using Copilot's chat capabilities within Outlook.

    • Official documentation for chatting with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for using Copilot to visualize data in Excel has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but guidance on this specific Copilot capability is now missing.

    • Page detailing how to visualize data with Copilot in Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page covering how to import data from the web and internal sources into Excel using Copilot is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page on importing data from web/internal sources with Copilot in Excel is missing
    • Uncertainty whether feature is deprecated or documentation was moved
  • Page removed or relocated. Documentation for using Copilot in Excel to import data from another Excel file is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page explaining how to import data from another Excel file using Copilot is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for getting started with Copilot in Excel has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on how to begin using Copilot in Excel.

    • Removal of introductory/getting started guidance for Copilot in Excel
    • Uncertainty whether this is a deprecation or a documentation restructure
  • Page removed or relocated. The documentation page for using Copilot to gain data insights in Excel has been removed. It is unclear if this indicates feature deprecation or a restructuring of documentation, but users now lack official guidance on this capability.

    • Page covering Copilot's data insights features in Excel is no longer available
    • Uncertainty whether this reflects feature removal or documentation reorganization
  • Page removed or relocated. The documentation page detailing Copilot's skills in Excel has been removed. It is unclear whether this indicates a deprecation of features or a restructuring of documentation, but users now lack direct reference material for Copilot's Excel-specific capabilities.

    • Loss of documentation outlining Copilot's skills in Excel
    • Uncertainty whether features are deprecated or documentation is relocated
  • Page removed or relocated. The documentation page for Copilot in Excel and Power BI is no longer available. It is unclear whether this reflects a deprecation of the feature or a relocation/restructuring of the documentation, but users now lack official guidance on using Copilot with Excel and Power BI.

    • Documentation for Copilot integration with Excel and Power BI is missing
    • Uncertainty whether this is due to feature deprecation or documentation restructuring
  • Page removed or relocated. The documentation page about Copilot in Excel personalization is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on personalizing Copilot in Excel.

    • Loss of documentation on Copilot in Excel personalization
    • Uncertainty whether feature is deprecated or documentation was moved
  • Page removed or relocated. The documentation page for Copilot in Excel (Microsoft Skills) has been removed. It is unclear whether this indicates a deprecation of the feature or a restructuring of the documentation, but users now lack official guidance on this capability.

    • Copilot in Excel (Microsoft Skills) documentation is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. Documentation about Copilot in Excel data sources is now missing. It is unclear if this indicates a feature deprecation or a relocation of the content, but users now lack official guidance on how Copilot in Excel interacts with data sources.

    • Page covering Copilot in Excel data sources has been removed
    • Uncertainty whether this is due to deprecation or documentation restructuring
  • Page removed or relocated. The documentation page for using Copilot to write in the SharePoint rich text editor has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but guidance on this specific Copilot capability is now missing.

    • Page detailing Copilot use in SharePoint's rich text editor is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for creating pages with AI in SharePoint is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but information about using AI to create SharePoint pages is now missing.

    • Documentation for AI-powered page creation in SharePoint is no longer accessible
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The introductory documentation page for Copilot in Word has been removed. It is unclear if this reflects a deprecation, a move, or a restructuring of documentation, but users now lack a central overview or welcome guide for Copilot in Word.

    • Removal of the main welcome/overview page for Copilot in Word
    • Potential loss of introductory guidance for new users
  • Page removed or relocated. The documentation page explaining how to rewrite text with Copilot in Word has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to use Copilot to rewrite text in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation has moved
  • Page removed or relocated. The introductory documentation page for Copilot in PowerPoint has been removed. It is unclear if this indicates deprecation, relocation, or restructuring of the content. Users may temporarily lose access to basic orientation or onboarding information for Copilot in PowerPoint.

    • Removal of the welcome/introductory page for Copilot in PowerPoint
    • Potential loss of guidance for new users on getting started
  • Page removed or relocated. The documentation page for summarizing presentations with Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page explaining how to summarize presentations with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or documentation was relocated
  • Page removed or relocated. The FAQ page for Copilot in PowerPoint has been removed. It is unclear whether the content has been deprecated, relocated, or consolidated elsewhere, but users now lack a centralized resource for common questions about Copilot in PowerPoint.

    • FAQ documentation for Copilot in PowerPoint is no longer available at this URL
    • Potential loss of quick answers to common user questions
  • Page removed or relocated. The documentation page explaining how to create a new presentation with Copilot in PowerPoint has been removed. It is unclear if this indicates a feature deprecation or a restructuring of documentation, but users now lack direct guidance on this capability.

    • Step-by-step instructions for creating presentations with Copilot in PowerPoint are no longer available
    • Potential loss of onboarding or usage guidance for new Copilot users in PowerPoint
  • Page removed or relocated. A documentation page about Copilot skills in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but information about Copilot's specific capabilities in PowerPoint is now missing from this location.

    • Page detailing Copilot skills in PowerPoint is no longer available
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. The documentation page explaining how to add an image to a PowerPoint presentation using Copilot is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Step-by-step instructions for adding images with Copilot in PowerPoint are missing
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to add a slide from a file using Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to add a slide from a file with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for creating a meeting agenda with Copilot in Outlook has been removed. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page explaining how to create a meeting agenda with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for the Office Agent (Copilot Office Frontier) is no longer available. It is unclear if this indicates deprecation of the feature or simply a documentation restructure, but users now lack access to official answers about this capability.

    • FAQ documentation for Copilot Office Agent is missing
    • Potential loss of guidance on usage, troubleshooting, or feature details
  • Page removed or relocated. The documentation page for importing data from the web and internal sources into Excel using Copilot is no longer available. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Missing guidance on using Copilot to import data into Excel from web/internal sources
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for Copilot in Excel has been removed, resulting in the loss of a resource that addressed common user questions. It is unclear whether this indicates a deprecation, relocation, or restructuring of the documentation.

    • FAQ content for Copilot in Excel is no longer available at this URL
    • Users lose access to previously documented answers to common questions
  • Page removed or relocated. A documentation page providing tips for using Copilot in Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack access to these specific tips.

    • Removal of Copilot in Excel tips documentation
    • Potential loss of guidance for effective Copilot usage in Excel
  • Page removed or relocated. The documentation page for Copilot in Excel skills is no longer available. It is unclear whether this indicates deprecation of the feature or a relocation/restructuring of the documentation, but users currently lose access to guidance on Copilot's capabilities within Excel.

    • Copilot in Excel skills documentation is missing
    • Uncertainty whether this is due to deprecation or restructuring
  • Page removed or relocated. The documentation page for Copilot in Excel rules has been removed. It is unclear if this indicates deprecation of the feature or a restructuring of the documentation. Users now lack direct access to guidance or information about Copilot's rule-based capabilities in Excel.

    • Copilot in Excel rules documentation is no longer available
    • Uncertainty whether this is due to deprecation or doc reorganization
  • Page removed or relocated. Documentation for Copilot in Excel personalization is now missing. It is unclear if this reflects a feature deprecation, a move, or a restructure, but users currently lack official guidance on personalizing Copilot in Excel.

    • Copilot in Excel personalization documentation no longer accessible
    • Uncertainty whether this is due to deprecation or documentation restructuring
  • Page removed or relocated. A documentation page about getting started with editing prompts in Copilot for Excel has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack this specific guidance.

    • Page on getting started with editing prompts in Copilot for Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page describing how to refine SharePoint pages with AI is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but information about using AI in SharePoint page refinement is now missing.

    • Page detailing AI-powered refinement of SharePoint pages has been removed
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The introductory documentation page for Copilot in Word has been removed. It is unclear if this indicates a feature deprecation or a restructuring of documentation, but users now lack an official overview or welcome guide for Copilot in Word.

    • Removal of the welcome/introductory page for Copilot in Word
    • Potential loss of onboarding or overview information for new users
  • Page removed or relocated. The documentation page explaining how to rewrite text with Copilot in Word has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to use Copilot to rewrite text in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page 'Welcome to Copilot in PowerPoint' has been removed. It is unclear whether this indicates a deprecation of the feature, a relocation of the content, or a restructuring of documentation. Users now lack an introductory resource for Copilot in PowerPoint.

    • Removal of introductory documentation for Copilot in PowerPoint
    • Potential loss of onboarding or overview information for new users
  • Page removed or relocated. The documentation page for summarizing presentations with Copilot in PowerPoint has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack official guidance on this specific Copilot capability.

    • Official instructions for using Copilot to summarize PowerPoint presentations are no longer available
    • Uncertainty whether the feature is deprecated or the documentation has been relocated
  • Page removed or relocated. The FAQ page for Copilot in PowerPoint has been removed. It is unclear if this indicates a deprecation, relocation, or restructuring of the documentation, but users now lack a centralized source for common questions and answers about Copilot in PowerPoint.

    • FAQ content for Copilot in PowerPoint is no longer available at this URL
    • Potential loss of quick reference for common user questions
  • Page removed or relocated. The documentation page explaining how to create a new presentation with Copilot in PowerPoint has been removed. It is unclear if this indicates a feature deprecation or a restructuring of documentation, but users now lack direct guidance on this capability.

    • Step-by-step instructions for creating presentations with Copilot in PowerPoint are no longer available
    • Potential loss of onboarding or feature discovery information for new users
  • Page removed or relocated. A documentation page about Copilot in PowerPoint skills has been removed. It is unclear if this indicates a feature deprecation or a restructuring of the documentation, but information about Copilot's capabilities in PowerPoint is now missing from this location.

    • Documentation for Copilot in PowerPoint skills is no longer available at this URL
    • Uncertainty whether this reflects deprecation or a move/merge of content
  • Page removed or relocated. The documentation page explaining how to add an image to a PowerPoint presentation using Copilot is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Step-by-step instructions for adding images with Copilot in PowerPoint are missing
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for adding a slide from a file with Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page explaining how to add a slide from a file using Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for creating a meeting agenda with Copilot in Outlook has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to create a meeting agenda with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for the Office Agent in Copilot for Office Frontier is no longer available. It is unclear whether this indicates feature deprecation or simply a documentation restructure, but users now lack access to official answers about this capability.

    • FAQ documentation for Copilot Office Agent is missing
    • Potential loss of guidance on usage, troubleshooting, or feature details
  • Page removed or relocated. The documentation page for visualizing data with Copilot in Excel has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack official guidance on using Copilot for data visualization in Excel.

    • Page on visualizing data with Copilot in Excel is no longer available
    • Uncertainty whether feature is deprecated or documentation is relocated
  • Page removed or relocated. The documentation page explaining how to use Copilot in Excel to import data from another Excel file has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Guidance for importing data from another Excel file with Copilot is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for getting started with Copilot in Excel has been removed. It is unclear if this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on how to begin using Copilot in Excel.

    • Removal of introductory/getting started guidance for Copilot in Excel
    • Potential gap in onboarding or feature discovery for new users
  • Page removed or relocated. The FAQ page for Copilot in Excel has been removed. This means users no longer have access to a centralized resource for common questions and answers about Copilot's features and usage in Excel, but it is unclear if this indicates feature deprecation or simply a documentation restructure.

    • FAQ content for Copilot in Excel is no longer available at this URL
    • Potential loss of quick-reference answers for users
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. A documentation page offering tips for using Copilot in Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack direct access to these usage tips.

    • Removal of a page dedicated to Copilot in Excel tips
    • Potential loss of guidance for effective Copilot use in Excel
  • Page removed or relocated. The documentation page detailing Copilot's skills in Excel has been removed. It is unclear if this reflects a deprecation of features or a restructuring of documentation, but users now lack a dedicated reference for Copilot's Excel-specific capabilities.

    • Loss of a page focused on Copilot's skills in Excel
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for Copilot in Excel rules is no longer available. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack official guidance on Copilot rules in Excel.

    • Documentation for Copilot in Excel rules is missing
    • Uncertainty if this is due to deprecation or doc reorganization
  • Page removed or relocated. Documentation about Copilot personalization features in Excel is now missing. It is unclear if this reflects a feature deprecation or a restructuring of the documentation, but users lose access to guidance on personalizing Copilot in Excel.

    • Page covering Copilot in Excel personalization is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. A documentation page about getting started with editing prompts in Copilot for Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack direct guidance on this topic.

    • Page on getting started with editing prompts in Copilot for Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page about refining SharePoint pages with AI is no longer available. It is unclear whether this reflects a deprecation of the feature, a relocation of the documentation, or a restructuring of content.

    • Documentation for AI-powered refinement of SharePoint pages is missing
    • Uncertainty whether the feature is deprecated or the content was moved
  • Page removed or relocated. The documentation page 'Welcome to Copilot in Word' has been removed. It is unclear whether this indicates a deprecation of the feature, a relocation of the content, or a restructuring of the documentation. Users may temporarily lose access to introductory or onboarding information about Copilot in Word.

    • Removal of the 'Welcome to Copilot in Word' page
    • Potential loss of introductory guidance for Copilot in Word
  • Page removed or relocated. The documentation page for rewriting text with Copilot in Word has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack direct guidance on this specific Copilot capability.

    • Page explaining how to rewrite text with Copilot in Word is no longer available
    • Uncertainty whether the feature is deprecated or documentation is relocated
  • Page removed or relocated. The introductory documentation page for Copilot in PowerPoint is no longer available at its previous URL. It is unclear whether this indicates deprecation, relocation, or restructuring of the documentation. Users now lack a central overview or welcome page for Copilot in PowerPoint.

    • Removal of the main welcome/overview page for Copilot in PowerPoint
    • Potential loss of introductory guidance for new users
  • Page removed or relocated. The documentation page for summarizing presentations with Copilot in PowerPoint has been removed. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page explaining how to summarize presentations with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or documentation has moved
  • Page removed or relocated. The documentation page explaining how to create a new presentation with Copilot in PowerPoint has been removed. It is unclear if this indicates a feature deprecation or a restructuring of documentation, but users now lack direct guidance on this capability.

    • Step-by-step instructions for creating presentations with Copilot in PowerPoint are no longer available
    • Potential gap in user guidance for leveraging Copilot's presentation creation features
  • Page removed or relocated. The documentation page explaining how to add an image to a PowerPoint presentation using Copilot is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to add images to PowerPoint with Copilot is missing
    • Uncertainty whether the feature is deprecated or documentation was moved
  • Page removed or relocated. The documentation page explaining how to add a slide from a file using Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing 'add a slide from a file with Copilot in PowerPoint' is no longer available
    • Uncertainty whether the feature is deprecated or documentation was moved
  • Page removed or relocated. The documentation page for creating a meeting agenda with Copilot in Outlook has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but guidance on this specific Copilot capability is now missing.

    • Page detailing how to use Copilot in Outlook to create meeting agendas is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for Copilot Office Frontier (Office Agent) has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack access to frequently asked questions about this capability.

    • FAQ content for Copilot Office Frontier (Office Agent) is no longer available
    • Potential loss of answers to common user questions about this feature
  • Page removed or relocated. The documentation page for visualizing data with Copilot in Excel is no longer available. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on using Copilot for data visualization in Excel.

    • Page covering Copilot's data visualization capabilities in Excel has been removed
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page explaining how to use Copilot in Excel to import data from another Excel file has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing Copilot-assisted data import between Excel files is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for getting started with Copilot in Excel has been removed. It is unclear if this indicates a deprecation of the feature or a restructuring of the documentation. Users now lack direct guidance on how to begin using Copilot in Excel.

    • Removal of 'Get started with Copilot in Excel' documentation
    • Uncertainty whether feature is deprecated or documentation is relocated
  • Page removed or relocated. The FAQ page for Copilot in Excel has been removed. It is unclear whether this indicates deprecation of features, relocation of content, or a documentation restructure, but users now lack a centralized source for common questions about Copilot in Excel.

    • FAQ content for Copilot in Excel is no longer available at this URL
    • Potential loss of answers to common user questions and troubleshooting guidance
  • Page removed or relocated. A documentation page offering tips for using Copilot in Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack direct access to these usage tips.

    • Removal of a page dedicated to Copilot in Excel tips
    • Potential loss of guidance for effective Copilot usage in Excel
  • Page removed or relocated. The documentation page for Copilot in Excel rules is no longer available. It is unclear whether this indicates a feature deprecation or a restructuring/relocation of the content, but users now lack direct documentation on this topic.

    • Page on Copilot in Excel rules removed
    • Uncertainty whether feature is deprecated or documentation is relocated
  • Page removed or relocated. The documentation page for Copilot in Excel and Power BI is no longer available at its previous URL. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack direct guidance on Copilot integration with Excel and Power BI.

    • Documentation for Copilot in Excel and Power BI is missing
    • Uncertainty whether this is due to deprecation or reorganization
  • Page removed or relocated. A documentation page about getting started with editing prompts in Copilot for Excel has been removed. It is unclear if this is due to feature deprecation or documentation restructuring, but users now lack direct guidance on this topic.

    • Page on getting started with editing prompts in Copilot for Excel is no longer available
    • Uncertainty whether the removal indicates feature deprecation or documentation reorganization
  • Page removed or relocated. The documentation page describing how to refine SharePoint pages with AI is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but guidance on using AI in SharePoint is now missing.

    • Page detailing AI-powered refinement of SharePoint pages has been removed
    • Uncertainty whether the feature is deprecated or documentation has moved
  • Page removed or relocated. The introductory documentation page for Copilot in Word has been removed. It is unclear if this indicates deprecation, relocation, or restructuring of the documentation, but users now lack a central overview or welcome guide for Copilot in Word.

    • Removal of the welcome/overview page for Copilot in Word
    • Potential loss of introductory guidance for new users
  • Page removed or relocated. The documentation page for rewriting text with Copilot in Word has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack direct guidance on this specific Copilot capability in Word.

    • Page explaining how to rewrite text with Copilot in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The introductory documentation page for Copilot in PowerPoint has been removed. It is unclear if this indicates a feature deprecation or a restructuring of documentation, but users now lack a central overview or onboarding resource for Copilot in PowerPoint.

    • Removal of the welcome/overview page for Copilot in PowerPoint
    • Potential loss of introductory guidance for new users
  • Page removed or relocated. The documentation page for summarizing presentations with Copilot in PowerPoint has been removed. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to summarize presentations with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The FAQ page for Copilot in PowerPoint has been removed. This means users no longer have access to a centralized set of frequently asked questions and answers about Copilot's features and usage in PowerPoint, which could impact their ability to quickly resolve common issues or understand capabilities.

    • FAQ documentation for Copilot in PowerPoint is no longer available
    • Users may lose quick reference to common questions and troubleshooting
  • Page removed or relocated. The documentation page explaining how to create a new presentation with Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Loss of step-by-step instructions for creating presentations with Copilot in PowerPoint
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to add an image to a PowerPoint presentation using Copilot is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing Copilot-assisted image insertion in PowerPoint is missing
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to add a slide from a file using Copilot in PowerPoint has been removed. It is unclear if this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to add a slide from a file with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for creating a meeting agenda with Copilot in Outlook has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to create a meeting agenda with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for the Office Agent component of Copilot is no longer available. It is unclear whether this indicates deprecation, relocation, or restructuring of the documentation, but users now lack direct access to frequently asked questions about this feature.

    • FAQ content for Copilot Office Agent is missing
    • Uncertainty about whether the feature is deprecated or documentation is moved
  • Page removed or relocated. Documentation for using Copilot in Excel to import data from another Excel file is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users lose direct guidance on this scenario.

    • Page on importing data from another Excel file with Copilot is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page for getting started with Copilot in Excel has been removed. It is unclear whether this indicates a deprecation of the feature or a restructuring of documentation, but users now lack a dedicated guide for initial setup and use of Copilot in Excel.

    • Removal of the 'Get started with Copilot in Excel' guide
    • Potential loss of onboarding and setup instructions for Copilot in Excel
  • Page removed or relocated. The documentation page for using Copilot to gain data insights in Excel has been removed. It is unclear if this reflects a feature deprecation or a restructuring of documentation, but users now lack official guidance on this capability.

    • Page covering Copilot's data insights features in Excel is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. A page providing tips for using Copilot in Excel has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack direct access to these usage tips.

    • Removal of documentation offering tips for Copilot in Excel
    • Potential loss of guidance for effective Copilot usage in Excel
  • Page removed or relocated. A documentation page detailing Copilot's skills in Excel has been removed. It is unclear whether this indicates feature deprecation or a restructuring of documentation, but users now lack direct access to information about Copilot's Excel capabilities.

    • Page describing Copilot's skills in Excel is no longer available
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. The documentation page for Copilot in Excel and Power BI is no longer available at its previous URL. It is unclear if this indicates a feature deprecation or a documentation restructure, but users now lack direct access to guidance on Copilot capabilities in these products.

    • Copilot in Excel and Power BI documentation is missing
    • Uncertainty whether this is due to deprecation or relocation
  • Page removed or relocated. A documentation page about getting started with editing prompts in Copilot for Excel has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack direct guidance on this topic.

    • Page on getting started with editing prompts in Copilot for Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page describing how to refine SharePoint pages with AI is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but guidance on using AI within SharePoint is now missing.

    • Page detailing AI refinement features for SharePoint pages has been removed
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The introductory documentation page for Copilot in Word has been removed. It is unclear if this indicates a deprecation, relocation, or restructuring of the content. Users may temporarily lose access to basic orientation or onboarding information for Copilot in Word.

    • Removal of the 'Welcome to Copilot in Word' page
    • Potential loss of introductory or onboarding guidance for Copilot in Word
  • Page removed or relocated. The documentation page explaining how to rewrite text with Copilot in Word has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to use Copilot to rewrite text in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The introductory documentation page for Copilot in PowerPoint has been removed. It is unclear if this indicates deprecation, relocation, or restructuring of the content, but users now lack a central overview or welcome guide for Copilot in PowerPoint.

    • Removal of the welcome/overview page for Copilot in PowerPoint
    • Potential loss of introductory guidance for new users
  • Page removed or relocated. The documentation page for summarizing presentations with Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Official instructions for using Copilot to summarize PowerPoint presentations are no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to create a new presentation with Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to create new presentations with Copilot in PowerPoint is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page explaining how to add an image to a PowerPoint presentation using Copilot is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance for this specific Copilot capability.

    • Step-by-step instructions for adding images with Copilot in PowerPoint are missing
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page explaining how to add a slide from a file using Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to add a slide from a file with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for creating a meeting agenda with Copilot in Outlook has been removed. It is unclear if this indicates feature deprecation or simply a restructuring or relocation of the documentation.

    • Page detailing how to create a meeting agenda with Copilot in Outlook is no longer available
    • Uncertainty whether the feature is deprecated or the documentation has moved
  • Page removed or relocated. The FAQ page for the Office Agent in Copilot for Office Frontier has been removed. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack access to official answers to common questions about this capability.

    • FAQ documentation for Office Agent in Copilot for Office Frontier is no longer available
    • Potential loss of guidance and troubleshooting information for users
  • Page removed or relocated. Documentation for using Copilot in Excel to import data from another Excel file is now missing. It is unclear if this reflects a feature deprecation or a documentation restructure, but users lose direct guidance on this scenario.

    • Page explaining how to import data from another Excel file with Copilot is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The FAQ page for Copilot in Excel has been removed. It is unclear whether this indicates deprecation, relocation, or restructuring of the documentation, but users now lack a dedicated FAQ resource for Copilot in Excel.

    • FAQ content for Copilot in Excel is no longer available at this URL
    • Potential loss of answers to common user questions about Copilot in Excel
  • Page removed or relocated. A documentation page providing tips for using Copilot in Excel has been removed. It is unclear whether this reflects a feature deprecation or a restructuring of documentation, but users now lack direct access to these usage tips.

    • Removal of a page focused on Copilot in Excel tips
    • Potential loss of guidance for effective use of Copilot in Excel
  • Page removed or relocated. Documentation for Copilot in Excel rules is no longer available at this URL. It is unclear if the content was removed, relocated, or consolidated, but users now lack direct access to guidance on Copilot's rule-based features in Excel.

    • Copilot in Excel rules documentation missing
    • Uncertainty whether feature is deprecated or content moved
  • Page removed or relocated. The documentation page for Copilot in Excel and Power BI is no longer available at this URL. It is unclear if the content has been deprecated or simply relocated, but users currently lose access to guidance on Copilot integration with Excel and Power BI.

    • Documentation for Copilot in Excel and Power BI is missing
    • Uncertainty whether this reflects deprecation or restructuring
  • Page removed or relocated. The documentation page about Copilot in Excel personalization is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but information on personalizing Copilot in Excel is now missing.

    • Page covering Copilot in Excel personalization removed
    • Uncertainty whether this is due to deprecation or documentation reorganization
  • Page removed or relocated. A documentation page about getting started with editing prompts in Copilot for Excel has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack direct guidance on this topic.

    • Page on getting started with editing prompts in Copilot for Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page for refining SharePoint pages with AI is no longer available. It is unclear if this reflects a feature deprecation or a documentation restructure, but information about using AI in SharePoint page refinement is now missing.

    • Page detailing AI-powered refinement of SharePoint pages has been removed
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The introductory documentation page for Copilot in Word has been removed. It is unclear if this indicates a deprecation, a move, or a restructuring of the documentation. Users may temporarily lose access to basic orientation or onboarding information for Copilot in Word.

    • Removal of the welcome/introduction page for Copilot in Word
    • Potential loss of overview or getting started guidance
  • Page removed or relocated. The documentation page explaining how to rewrite text with Copilot in Word has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Page detailing how to use Copilot to rewrite text in Word is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The introductory documentation page for Copilot in PowerPoint is no longer available at this URL. It is unclear if this indicates deprecation, relocation, or restructuring of the documentation, but users now lack a central overview or welcome guide for Copilot in PowerPoint.

    • Removal of the 'Welcome to Copilot in PowerPoint' page
    • Loss of introductory or overview information for Copilot in PowerPoint
  • Page removed or relocated. The documentation page for summarizing presentations with Copilot in PowerPoint has been removed. It is unclear whether this indicates feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Official instructions for using Copilot to summarize PowerPoint presentations are no longer available
    • Uncertainty whether the feature is deprecated or the documentation has been relocated
  • Page removed or relocated. The documentation page explaining how to create a new presentation with Copilot in PowerPoint has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this capability.

    • Step-by-step instructions for creating presentations with Copilot in PowerPoint are no longer available
    • Potential loss of troubleshooting or usage tips specific to this workflow
  • Page removed or relocated. The documentation page explaining how to add an image to a PowerPoint presentation using Copilot is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing Copilot-assisted image insertion in PowerPoint is missing
    • Uncertainty whether the feature is deprecated or the documentation was moved
  • Page removed or relocated. The documentation page explaining how to add a slide from a file using Copilot in PowerPoint has been removed. It is unclear whether this reflects a feature deprecation or a documentation restructure, but users now lack official guidance on this specific Copilot capability.

    • Page detailing how to add a slide from a file with Copilot in PowerPoint is no longer available
    • Uncertainty whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The documentation page for creating a meeting agenda with Copilot in Outlook has been removed. It is unclear whether this reflects a feature deprecation or a restructuring of documentation, but users now lack official guidance on this specific Copilot capability.

    • Official instructions for using Copilot to create meeting agendas in Outlook are no longer available
    • Uncertainty remains whether the feature is deprecated or the documentation was relocated
  • Page removed or relocated. The FAQ page for the Office Agent (Copilot Office Frontier) is no longer available. It is unclear if this indicates feature deprecation or simply a documentation restructure, but users now lack access to official answers about this Copilot capability.

    • FAQ documentation for Copilot Office Agent is missing
    • Potential loss of guidance on usage, limitations, or troubleshooting
  • Page removed or relocated. The FAQ page for Copilot in Excel has been removed, resulting in the loss of a resource that addressed common user questions about Copilot's features and usage in Excel. It is unclear if this content has been relocated or consolidated elsewhere.

    • FAQ documentation for Copilot in Excel is no longer available at this URL
    • Potential loss of answers to common user questions and troubleshooting guidance
  • Page removed or relocated. A documentation page containing tips for using Copilot in Excel has been removed. It is unclear if this reflects a deprecation, a move, or a consolidation of content, but users now lack direct access to these tips from this URL.

    • Removal of a page specifically offering tips for Copilot in Excel
    • Potential loss of guidance for optimizing Copilot usage in Excel
  • Page removed or relocated. The documentation page for Copilot in Excel rules is no longer available. It is unclear whether this indicates a deprecation of the feature or a relocation of the documentation, but users now lack official guidance on Copilot rules in Excel.

    • Copilot in Excel rules documentation is missing
    • Uncertainty whether feature is deprecated or doc is relocated
  • Page removed or relocated. A documentation page about getting started with editing prompts in Copilot for Excel has been removed. It is unclear if this reflects a feature deprecation or a documentation restructure, but users now lack direct guidance on this topic.

    • Page on getting started with editing prompts in Copilot for Excel is no longer available
    • Uncertainty whether this is due to feature removal or documentation reorganization
  • Page removed or relocated. The documentation page describing how to refine SharePoint pages with AI is no longer available. It is unclear whether this reflects a feature deprecation or a documentation restructure, but information about using AI in SharePoint page refinement is now missing.

    • Page detailing AI-powered refinement of SharePoint pages has been removed
    • Uncertainty whether this is due to feature removal or documentation reorganization