diff --git a/.github/workflows/AutoLabelAssign.yml b/.github/workflows/AutoLabelAssign.yml
index 374cf10ace1..dff3a64e9ea 100644
--- a/.github/workflows/AutoLabelAssign.yml
+++ b/.github/workflows/AutoLabelAssign.yml
@@ -14,6 +14,7 @@ on:
jobs:
download-payload:
name: Download and extract payload artifact
+ if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
with:
WorkflowId: ${{ github.event.workflow_run.id }}
@@ -23,6 +24,7 @@ jobs:
label-assign:
name: Run assign and label
+ if: github.repository_owner == 'MicrosoftDocs'
needs: [download-payload]
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelAssign.yml@workflows-prod
with:
@@ -32,4 +34,4 @@ jobs:
ExcludedUserList: '["user1", "user2"]'
ExcludedBranchList: '["branch1", "branch2"]'
secrets:
- AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/AutoLabelMsftContributor.yml b/.github/workflows/AutoLabelMsftContributor.yml
index 51a7204ca3b..98f597ebd59 100644
--- a/.github/workflows/AutoLabelMsftContributor.yml
+++ b/.github/workflows/AutoLabelMsftContributor.yml
@@ -13,7 +13,7 @@ on:
jobs:
download-payload:
- if: github.repository_visibility == 'public'
+ if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public'
name: Download and extract payload artifact
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ExtractPayload.yml@workflows-prod
with:
@@ -24,11 +24,12 @@ jobs:
label-msft:
name: Label Microsoft contributors
- if: github.repository_visibility == 'public'
+ if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'public'
needs: [download-payload]
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-AutoLabelMsftContributor.yml@workflows-prod
with:
PayloadJson: ${{ needs.download-payload.outputs.WorkflowPayload }}
secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }}
- TeamReadAccessToken: ${{ secrets.ORG_READTEAMS_TOKEN }}
+ ClientId: ${{ secrets.M365_APP_CLIENT_ID }}
+ PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }}
\ No newline at end of file
diff --git a/.github/workflows/BackgroundTasks.yml b/.github/workflows/BackgroundTasks.yml
index df47453615e..c4182fdaa8d 100644
--- a/.github/workflows/BackgroundTasks.yml
+++ b/.github/workflows/BackgroundTasks.yml
@@ -9,6 +9,7 @@ on:
jobs:
upload:
+ if: github.repository_owner == 'MicrosoftDocs'
runs-on: ubuntu-latest
steps:
@@ -23,4 +24,4 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: PayloadJson
- path: pr/
+ path: pr/
\ No newline at end of file
diff --git a/.github/workflows/BuildValidation.yml b/.github/workflows/BuildValidation.yml
index e57844b453a..dadccacbef7 100644
--- a/.github/workflows/BuildValidation.yml
+++ b/.github/workflows/BuildValidation.yml
@@ -11,11 +11,9 @@ on:
jobs:
build-status:
+ if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-BuildValidation.yml@workflows-prod
with:
PayloadJson: ${{ toJSON(github) }}
secrets:
AccessToken: ${{ secrets.GITHUB_TOKEN }}
-
-
-
diff --git a/.github/workflows/LiveMergeCheck.yml b/.github/workflows/LiveMergeCheck.yml
index fa3b1bbccc4..08bc84c1834 100644
--- a/.github/workflows/LiveMergeCheck.yml
+++ b/.github/workflows/LiveMergeCheck.yml
@@ -12,8 +12,9 @@ on:
jobs:
live-merge:
+ if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-LiveMergeCheck.yml@workflows-prod
with:
PayloadJson: ${{ toJSON(github) }}
secrets:
- AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/M365Endpoints.yml b/.github/workflows/M365Endpoints.yml
index 51de507779f..346fcace898 100644
--- a/.github/workflows/M365Endpoints.yml
+++ b/.github/workflows/M365Endpoints.yml
@@ -14,7 +14,7 @@ on:
jobs:
get-previous-run:
- if: github.repository_visibility == 'private'
+ if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'private'
name: Get previous run ID
runs-on: ubuntu-latest
continue-on-error: true
@@ -42,7 +42,7 @@ jobs:
echo "Previous run ID: ${{ steps.previous_run.outputs.previous_run_id }}"
update-includes:
- if: github.repository_visibility == 'private'
+ if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'private'
needs: get-previous-run
name: Update includes
runs-on: ubuntu-latest
diff --git a/.github/workflows/PrFileCount.yml b/.github/workflows/PrFileCount.yml
index 2e3823333d9..8f3a17c24c1 100644
--- a/.github/workflows/PrFileCount.yml
+++ b/.github/workflows/PrFileCount.yml
@@ -12,8 +12,9 @@ on:
jobs:
file-count:
+ if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-PrFileCount.yml@workflows-prod
with:
PayloadJson: ${{ toJSON(github) }}
secrets:
- AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/ProtectedFiles.yml b/.github/workflows/ProtectedFiles.yml
index 35fd5e19e91..42c4b0ad286 100644
--- a/.github/workflows/ProtectedFiles.yml
+++ b/.github/workflows/ProtectedFiles.yml
@@ -10,8 +10,9 @@ on: [pull_request_target]
jobs:
protected-files:
+ if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-ProtectedFiles.yml@workflows-prod
with:
PayloadJson: ${{ toJSON(github) }}
secrets:
- AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/Publish.yml b/.github/workflows/Publish.yml
new file mode 100644
index 00000000000..e1d6aa38502
--- /dev/null
+++ b/.github/workflows/Publish.yml
@@ -0,0 +1,25 @@
+name: (Scheduled) Publish to live
+
+permissions:
+ contents: write
+ pull-requests: write
+
+on:
+ schedule:
+ - cron: "25 5,11,17,22 * * *" # Times are UTC based on Daylight Saving Time. Need to be adjusted for Standard Time. Scheduling at :25 to account for queuing lag.
+
+ workflow_dispatch:
+
+jobs:
+
+ auto-publish:
+ if: github.repository_owner == 'MicrosoftDocs' && contains(github.event.repository.topics, 'build')
+ uses: MicrosoftDocs/max-cpub-test/.github/workflows/Shared-Publish.yml@main
+ with:
+ PayloadJson: ${{ toJSON(github) }}
+ EnableAutoPublish: true
+
+ secrets:
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ PrivateKey: ${{ secrets.M365_APP_PRIVATE_KEY }}
+ ClientId: ${{ secrets.M365_APP_CLIENT_ID }}
diff --git a/.github/workflows/Stale.yml b/.github/workflows/Stale.yml
index bd9c8c1abaf..17997539340 100644
--- a/.github/workflows/Stale.yml
+++ b/.github/workflows/Stale.yml
@@ -11,9 +11,10 @@ on:
jobs:
stale:
+ if: github.repository_owner == 'MicrosoftDocs'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-Stale.yml@workflows-prod
with:
RunDebug: false
RepoVisibility: ${{ github.repository_visibility }}
secrets:
- AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/StaleBranch.yml b/.github/workflows/StaleBranch.yml
new file mode 100644
index 00000000000..eb6b63edb0d
--- /dev/null
+++ b/.github/workflows/StaleBranch.yml
@@ -0,0 +1,26 @@
+name: (Scheduled) Stale branch removal
+
+permissions:
+ contents: write
+
+on:
+ schedule:
+ - cron: "0 9 1 * *"
+
+ # workflow_dispatch:
+
+
+jobs:
+
+ stale-branch:
+ if: github.repository_owner == 'MicrosoftDocs'
+ uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-StaleBranch.yml@workflows-prod
+ with:
+ PayloadJson: ${{ toJSON(github) }}
+ RepoBranchSkipList: '[
+ "ExampleBranch1",
+ "ExampleBranch2"
+ ]'
+ ReportOnly: false
+ secrets:
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/TierManagement.yml b/.github/workflows/TierManagement.yml
index 4078a48fda4..47baf0be658 100644
--- a/.github/workflows/TierManagement.yml
+++ b/.github/workflows/TierManagement.yml
@@ -11,11 +11,11 @@ on:
jobs:
tier-mgmt:
- if: github.repository_visibility == 'private'
+ if: github.repository_owner == 'MicrosoftDocs' && github.repository_visibility == 'private'
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod
with:
PayloadJson: ${{ toJSON(github) }}
EnableWriteSignOff: 1
- EnableReadOnlySignoff: 0
+ EnableReadOnlySignoff: 1
secrets:
- AccessToken: ${{ secrets.GITHUB_TOKEN }}
+ AccessToken: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.openpublishing.redirection.admin.json b/.openpublishing.redirection.admin.json
index c983b7bdc51..d5f2b44afb5 100644
--- a/.openpublishing.redirection.admin.json
+++ b/.openpublishing.redirection.admin.json
@@ -5,7 +5,7 @@
"redirect_url": "/microsoft-365/admin/manage/manage-copilot-agents-integrated-apps",
"redirect_document_id": false
},
- {
+ {
"source_path": "microsoft-365/admin/manage/servicenow-aad-oauth-token.md",
"redirect_url": "/microsoft-365/admin/manage/servicenow-authentication",
"redirect_document_id": false
@@ -1315,6 +1315,11 @@
"redirect_url": "/microsoft-365/admin/support-contact-info",
"redirect_document_id": false
},
+ {
+ "source_path": "microsoft-365/admin/support-contact-info.md",
+ "redirect_url": "https://support.microsoft.com/topic/customer-service-phone-numbers-c0389ade-5640-e588-8b0e-28de8afeb3f2#ID0EBBD=signinorgid",
+ "redirect_document_id": false
+ },
{
"source_path": "microsoft-365/admin/misc/sign-up-for-online-services.md",
"redirect_url": "/microsoft-365/admin/misc/remove-a-domain-from-another-account",
@@ -1681,9 +1686,9 @@
"redirect_document_id": false
},
{
- "source_path": "microsoft-365/admin/dns/create-dns-records-at-1-1-internet.md",
- "redirect_url": "/microsoft-365/admin/dns/create-dns-records-at-ionos-com",
- "redirect_document_id": true
+ "source_path": "microsoft-365/admin/dns/create-dns-records-at-1-1-internet.md",
+ "redirect_url": "/microsoft-365/admin/dns/create-dns-records-at-ionos-com",
+ "redirect_document_id": true
},
{
"source_path": "microsoft-365/admin/dns/change-nameservers-at-aws.md",
@@ -2124,86 +2129,96 @@
"source_path": "microsoft-365/admin/misc/move-email-and-data-to-office-365-business-premium.md",
"redirect_url": "https://support.microsoft.com/office/move-your-old-email-calendars-and-contacts-to-microsoft-365-2c37f0b7-2915-423c-b35e-9e03267f23dc",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/manage/servicenow-testing-the-configuration-v1.md",
"redirect_url": "/microsoft-365/manage/servicenow-testing-the-configuration",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/manage/servicenow-troubleshooting-v1.md",
"redirect_url": "/microsoft-365/admin/manage/servicenow-troubleshooting",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/manage/servicenow-basic-authentication-v1.md",
"redirect_url": "/microsoft-365/admin/manage/servicenow-authentication",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/manage/servicenow-overview-v1.md",
"redirect_url": "/microsoft-365/admin/manage/servicenow-overview",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/services-in-china/parity-between-azure-information-protection.md",
"redirect_url": "/azure/information-protection/parity-between-azure-information-protection",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/email/access-email-from-a-mobile-device.md",
"redirect_url": "/microsoft-365/admin/setup/set-up-mobile-devices",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/add-users/admin-roles-page.md",
"redirect_url": "/microsoft-365/admin/add-users/assign-admin-roles",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/admin/misc/account-disabled-error.md",
"redirect_url": "/exchange/recipients-in-exchange-online/manage-user-mailboxes/enable-or-disable-outlook-web-app",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/enterprise/identity-sync.md",
"redirect_url": "/microsoft-365/enterprise/deploy-identity-solution-identity-model",
"redirect_document_id": false
- },
- {
+ },
+ {
"source_path": "microsoft-365/enterprise/google-groups-migration.md",
"redirect_url": "/microsoft-365/enterprise/deploy-identity-solution-identity-model",
"redirect_document_id": false
- },
- {
- "source_path": "microsoft-365/admin/misc/experience-insights-help-articles.md",
- "redirect_url": "/microsoft-365/admin/misc/experience-insights-dashboard",
- "redirect_document_id": false
- },
- {
- "source_path": "microsoft-365/admin/email/remove-license-from-shared-mailbox.md",
- "redirect_url": "/microsoft-365/admin/email/create-a-shared-mailbox",
- "redirect_document_id": false
- },
- {
- "source_path": "microsoft-365/admin/admin-overview/what-is-microsoft-365.md",
- "redirect_url": "/microsoft-365/business-premium/m365bp-overview",
- "redirect_document_id": false
- },
- {
- "source_path": "microsoft-365/admin/activity-reports/agent-usage.md",
- "redirect_url": "/microsoft-365/admin/activity-reports/microsoft-365-copilot-agents",
- "redirect_document_id": true
- },
- {
- "source_path": "microsoft-365/admin/misc/places-ios-mobile.md",
- "redirect_url": "/microsoft-365/admin/",
- "redirect_document_id": false
- },
- {
- "source_path": "microsoft-365/admin/misc/admin-controls-profile-videos.md",
- "redirect_url": "/microsoft-365/admin/add-users/change-user-profile-photos.md",
- "redirect_document_id": false
- }
+ },
+ {
+ "source_path": "microsoft-365/admin/misc/experience-insights-help-articles.md",
+ "redirect_url": "/microsoft-365/admin/misc/experience-insights-dashboard",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/admin/email/remove-license-from-shared-mailbox.md",
+ "redirect_url": "/microsoft-365/admin/email/create-a-shared-mailbox",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/admin/admin-overview/what-is-microsoft-365.md",
+ "redirect_url": "/microsoft-365/business-premium/m365bp-overview",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/admin/activity-reports/agent-usage.md",
+ "redirect_url": "/microsoft-365/admin/activity-reports/microsoft-365-copilot-agents",
+ "redirect_document_id": true
+ },
+ {
+ "source_path": "microsoft-365/admin/misc/places-ios-mobile.md",
+ "redirect_url": "/microsoft-365/admin/",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/admin/misc/admin-controls-profile-videos.md",
+ "redirect_url": "/microsoft-365/admin/add-users/change-user-profile-photos",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/admin/manage/change-contact-preferences.md",
+ "redirect_url": "/microsoft-365/admin/manage/change-address-contact-and-more",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/admin/manage/use-qr-code-download-outlook.md",
+ "redirect_url": "https://go.microsoft.com/fwlink/?linkid=2309759",
+ "redirect_document_id": false
+ }
]
}
\ No newline at end of file
diff --git a/.openpublishing.redirection.enterprise.json b/.openpublishing.redirection.enterprise.json
index e95f3a05d9f..423993926ab 100644
--- a/.openpublishing.redirection.enterprise.json
+++ b/.openpublishing.redirection.enterprise.json
@@ -1052,22 +1052,22 @@
},
{
"source_path":"microsoft-365/enterprise/routing-with-expressroute.md",
- "redirect_url":"/microsoft-365/eenterprise/azure-expressroute",
+ "redirect_url":"/microsoft-365/enterprise/azure-expressroute",
"redirect_document_id":false
},
{
"source_path":"microsoft-365/enterprise/managing-expressroute-for-connectivity.md",
- "redirect_url":"/microsoft-365/eenterprise/azure-expressroute",
+ "redirect_url":"/microsoft-365/enterprise/azure-expressroute",
"redirect_document_id":false
},
{
"source_path":"microsoft-365/enterprise/bgp-communities-in-expressroute.md",
- "redirect_url":"/microsoft-365/eenterprise/azure-expressroute",
+ "redirect_url":"/microsoft-365/enterprise/azure-expressroute",
"redirect_document_id":false
},
{
"source_path":"microsoft-365/enterprise/network-planning-with-expressroute.md",
- "redirect_url":"/microsoft-365/eenterprise/azure-expressroute",
+ "redirect_url":"/microsoft-365/enterprise/azure-expressroute",
"redirect_document_id":false
},
{
@@ -1424,6 +1424,26 @@
"source_path": "microsoft-365/enterprise/tune-microsoft-365-performance.md",
"redirect_url": "/microsoft-365/enterprise/index",
"redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/enterprise/contoso-win10.md",
+ "redirect_url": "/microsoft-365/enterprise/contoso-win11",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/enterprise/office-365-network-mac-perf-nppux.md",
+ "redirect_url": "/microsoft-365/enterprise/office-365-network-mac-perf-nppdetails",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/enterprise/manage-skype-for-business-online-with-microsoft-365-powershell.md",
+ "redirect_url": "/microsoftteams/teams-powershell-managing-teams",
+ "redirect_document_id": false
+ },
+ {
+ "source_path": "microsoft-365/enterprise/manage-skype-for-business-online-policies-with-microsoft-365-powershell.md",
+ "redirect_url": "/microsoftteams/assign-policies-users-and-groups",
+ "redirect_document_id": false
}
]
}
diff --git a/.openpublishing.redirection.lighthouse.json b/.openpublishing.redirection.lighthouse.json
index cdfeee897e7..606c68d4276 100644
--- a/.openpublishing.redirection.lighthouse.json
+++ b/.openpublishing.redirection.lighthouse.json
@@ -15,11 +15,6 @@
"redirect_url":"/microsoft-365/lighthouse/m365-lighthouse-deploy-standard-tenant-configurations-overview",
"redirect_document_id":false
},
- {
- "source_path":"microsoft-365/lighthouse/m365-lighthouse-create-customer-report.md",
- "redirect_url":"/microsoft-365/lighthouse/m365-lighthouse-tenants-page-overview",
- "redirect_document_id":false
- },
{
"source_path":"microsoft-365/lighthouse/m365-lighthouse-get-access-to-sales-advisor.md",
"redirect_url":"/microsoft-365/lighthouse/m365-lighthouse-sales-advisor-overview",
diff --git a/copilot/TOC.yml b/copilot/TOC.yml
index 85c49ba5c33..26b7fe33123 100644
--- a/copilot/TOC.yml
+++ b/copilot/TOC.yml
@@ -44,6 +44,16 @@ items:
href: copilot-prompt-gallery.md
- name: Adoption resources
href: microsoft-365-copilot-enablement-resources.md
+- name: Pay-as-you-go for Microsoft 365 Copilot
+ items:
+ - name: Microsoft 365 Copilot pay-as-you-go overview
+ href: pay-as-you-go/overview.md
+ - name: Set up pay-as-you-go for Microsoft 365 Copilot Chat
+ href: pay-as-you-go/setup.md
+ - name: Meters for Microsoft 365 Copilot Chat pay-as-you-go
+ href: pay-as-you-go/meters.md
+ - name: View costs and billing for Microsoft 365 Copilot Chat pay-as-you-go
+ href: pay-as-you-go/view-cost.md
- name: Manage Microsoft 365 Copilot
items:
- name: Manage Microsoft 365 Copilot scenarios
diff --git a/copilot/enterprise-data-protection.md b/copilot/enterprise-data-protection.md
index 83750b1159c..67d46d084ad 100644
--- a/copilot/enterprise-data-protection.md
+++ b/copilot/enterprise-data-protection.md
@@ -13,7 +13,7 @@ ms.collection:
- m365copilot
- magic-ai-copilot
hideEdit: true
-ms.date: 02/25/2025
+ms.date: 03/13/2025
---
# Enterprise data protection in Microsoft 365 Copilot and Microsoft 365 Copilot Chat
@@ -32,7 +32,7 @@ Use of Microsoft 365 Copilot and Microsoft 365 Copilot Chat involves prompts (en
- **We secure your data:** We help protect your data with [encryption](/purview/office-365-encryption-in-the-microsoft-cloud-overview) at rest and in transit, rigorous physical security controls, and data [isolation](/compliance/assurance/assurance-microsoft-365-isolation-controls) between tenants.
-- **Your data is private:** We won’t use your data except as you instruct. Our commitments to [privacy](https://www.microsoft.com/trust-center/privacy) include support for [GDPR](/compliance/regulatory/gdpr), [ISO/IEC 27018](/compliance/regulatory/offering-ISO-27018), and our [Data Protection Addendum](https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA).
+- **Your data is private:** We won’t use your data except as you instruct. Our commitments to [privacy](https://www.microsoft.com/trust-center/privacy) include support for [GDPR](/compliance/regulatory/gdpr), the [EU Data Boundary](/privacy/eudb/eu-data-boundary-learn)[3], [ISO/IEC 27018](/compliance/regulatory/offering-ISO-27018), and our [Data Protection Addendum](https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA).
- **Your access controls and policies apply to Copilot:** Copilot respects your [identity model](microsoft-365-copilot-privacy.md#how-does-microsoft-365-copilot-protect-organizational-data) and [permissions](microsoft-365-copilot-privacy.md#how-does-microsoft-365-copilot-use-your-proprietary-organizational-data), inherits your [sensitivity labels](/purview/sensitivity-labels#sensitivity-labels-and-microsoft-365-copilot), applies your [retention](/purview/retention-policies-copilot) policies, supports [audit](/purview/audit-search?tabs=microsoft-purview-portal) of interactions, and follows your administrative settings. The specific controls and policies will vary depending on the underlying subscription plan.
@@ -57,7 +57,7 @@ In addition to prompts and responses, web search queries (different from Microso
- The Bing search service operates separately from Microsoft 365 and has different data-handling practices covered by the [Microsoft Services Agreement](https://www.microsoft.com/servicesagreement) between each user and Microsoft, together with the [Microsoft Privacy Statement](https://www.microsoft.com/privacy/privacystatement). The means that Microsoft acts as an independent data controller responsible for complying with all applicable laws and controller obligations. This approach is consistent with other [optional connected experiences that rely on Bing](/microsoft-365-apps/privacy/optional-connected-experiences#experiences-that-rely-on-bing).
-- [Learn more about data, privacy, and security of web queries in Microsoft 365 Copilot and Microsoft 365 Copilot Chat](manage-public-web-access.md)
+- The [Product Terms](https://www.microsoft.com/licensing/terms/product/PrivacyandSecurityTerms/all) provide additional commitments about the web queries sent to the Bing search service. For more information, see [Data, privacy, and security for web search in Microsoft 365 Copilot and Microsoft 365 Copilot Chat](manage-public-web-access.md#how-microsoft-handles-generated-search-queries).
## Agents in Microsoft 365 Copilot
@@ -67,4 +67,6 @@ When you’re using agents in Microsoft 365 Copilot, check the privacy statement
[1] The specific controls will vary depending on a customer's Microsoft subscription plans.
-[2] Microsoft 365 Copilot and Microsoft 365 Copilot Chat support HIPAA compliance for properly configured implementations. HIPAA compliance doesn't apply to web search queries as they aren't covered by the DPA and BAA.
\ No newline at end of file
+[2] Microsoft 365 Copilot and Microsoft 365 Copilot Chat support HIPAA compliance for properly configured implementations. HIPAA compliance doesn't apply to web search queries as they aren't covered by the DPA and BAA.
+
+[3] The EU Data Boundary doesn’t apply to web search queries.
\ No newline at end of file
diff --git a/copilot/includes/copilot-e5-e3-create-default-sensitivity-labels.md b/copilot/includes/copilot-e5-e3-create-default-sensitivity-labels.md
index a58d5031bcb..fced8534e6d 100644
--- a/copilot/includes/copilot-e5-e3-create-default-sensitivity-labels.md
+++ b/copilot/includes/copilot-e5-e3-create-default-sensitivity-labels.md
@@ -6,13 +6,13 @@ ms.reviewer: cabailey
ms.service: microsoft-365-copilot
ms.topic: include
description: Create default Microsoft Purview sensitivity labels for Microsoft 365 Copilot.
-ms.date: 03/06/2025
+ms.date: 03/24/2025
---
1. Sign into the [Microsoft Purview portal](https://purview.microsoft.com/) as an admin in one of the groups listed at [Sensitivity labels - permissions](/purview/get-started-with-sensitivity-labels#permissions-required-to-create-and-manage-sensitivity-labels).
2. Select **Solutions** > **DSPM for AI** > **Overview**.
-3. In the **Recommendations** section, select **Information Protection Policy for Sensitivity Labels**. This step creates the default labels and their policies.
+3. In the **Recommendations** section, select **Protect your data with sensitivity labels**. This step creates the default labels and their policies.
4. To see or edit the default labels, or to create your own labels, select **Information protection** > **Sensitivity labels**. You might have to select **Refresh**.
When you have the default sensitivity labels:
diff --git a/copilot/manage-public-web-access.md b/copilot/manage-public-web-access.md
index 7ee22169f7e..df9a9e1115c 100644
--- a/copilot/manage-public-web-access.md
+++ b/copilot/manage-public-web-access.md
@@ -13,7 +13,7 @@ ms.collection:
- m365copilot
- magic-ai-copilot
hideEdit: true
-ms.date: 02/19/2025
+ms.date: 03/13/2025
---
# Data, privacy, and security for web search in Microsoft 365 Copilot and Microsoft 365 Copilot Chat
@@ -44,7 +44,7 @@ When using Microsoft 365 Copilot, the generated search query doesn't include the
- When the user explicitly references a specific document in their prompt.
-The user's prompts and Copilot's responses are stored within Microsoft 365 and never leave the service boundary for both Microsoft 365 Copilot and Microsoft 365 Copilot Chat.
+The user's prompts and Copilot's responses are stored within Microsoft 365 and never leave the service boundary for both Microsoft 365 Copilot and Microsoft 365 Copilot Chat without customer direction. [Enterprise data protection](enterprise-data-protection.md), the [Data Protection Addendum (DPA)](https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA), and the [Product Terms](https://www.microsoft.com/licensing/terms/product/PrivacyandSecurityTerms/all) apply to prompts and responses, with Microsoft acting as a data processor.
After Microsoft 365 Copilot and Microsoft 365 Copilot Chat receive additional information from the Bing search service, this information is used to compose the response returned to the user.
@@ -87,13 +87,26 @@ The following table provides multiple examples of a user's prompt and the genera
Microsoft 365 Copilot and Microsoft 365 Copilot Chat both use generated search queries sent to the Bing search service to ground responses in web data. The way Microsoft handles these queries is identical in both services.
-Generated search queries sent to the Bing search service have the user and tenant identifiers removed. They aren't shared with advertisers and aren’t used to train foundation large language models (LLMs). Also, web search queries sent to Bing don't affect any of the following:
+Generated search queries are sent to the Bing search service with user and tenant identifiers removed. Also, web search queries sent to Bing don't affect any of the following:
- Search Ranking
- Answers or features like Rich Captions
- Social features like Auto Suggest, Trending, and Zero Input
-The Bing search service operates separately from Microsoft 365 and has different data-handling practices. The use of Bing is covered by the [Microsoft Services Agreement](https://www.microsoft.com/servicesagreement) between each user and Microsoft, together with the [Microsoft Privacy Statement](https://www.microsoft.com/privacy/privacystatement). The [Microsoft Products and Services Data Protection Addendum (DPA)](https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA) doesn't apply to the use of the **Web content** toggle in Microsoft 365 Copilot, Microsoft 365 Copilot Chat, or the Bing search service.
+The [Product Terms](https://www.microsoft.com/licensing/terms/product/PrivacyandSecurityTerms/all) provide the following additional commitments about the generated search queries sent to the Bing search service:
+
+- Microsoft has no rights to them other than as needed to provide the service.
+- They aren’t used to improve Bing.
+- They aren’t used to create advertising profiles or to track user behavior.
+- They aren't shared with advertisers.
+- They aren’t used to train generative AI foundation models.
+- They are treated as customer confidential information and protected by appropriate technical and organizational measures.
+
+The Bing search service operates separately from Microsoft 365 and has different data-handling practices. The web search queries generated by Copilot and sent to Bing are subject to the [Microsoft Services Agreement](https://www.microsoft.com/servicesagreement) between each user and Microsoft, together with the [Microsoft Privacy Statement](https://www.microsoft.com/privacy/privacystatement).
+
+The [Product Terms](https://www.microsoft.com/licensing/terms/product/PrivacyandSecurityTerms/all) add additional commitments on Microsoft as a controller with respect to handling of web query data. Microsoft acts as a data controller, responsible for complying with all applicable laws and controller obligations. In the event of conflict with respect to the use of Bing with Microsoft 365 Copilot and Microsoft 365 Copilot Chat, the Product Terms supersede the Microsoft Services Agreement and the Microsoft Privacy Statement.
+
+The [Microsoft Products and Services Data Protection Addendum (DPA)](https://www.microsoft.com/licensing/docs/view/Microsoft-Products-and-Services-Data-Protection-Addendum-DPA) doesn't apply to the use of generated web search queries in Microsoft 365 Copilot, Microsoft 365 Copilot Chat, or the Bing search service. Also, HIPAA compliance and the [EU Data Boundary](/privacy/eudb/eu-data-boundary-learn) don’t apply to generated search queries.
## Controls available to manage web search
diff --git a/copilot/media/pin-copilot-mac.png b/copilot/media/pin-copilot-mac.png
index 8418dcde40d..5cd0a3d57eb 100644
Binary files a/copilot/media/pin-copilot-mac.png and b/copilot/media/pin-copilot-mac.png differ
diff --git a/copilot/media/pin-copilot.png b/copilot/media/pin-copilot.png
index 0cf0f1c8595..cb70a4c6e1f 100644
Binary files a/copilot/media/pin-copilot.png and b/copilot/media/pin-copilot.png differ
diff --git a/copilot/microsoft-365-copilot-e3-guide.md b/copilot/microsoft-365-copilot-e3-guide.md
index 102b6317170..001e290876c 100644
--- a/copilot/microsoft-365-copilot-e3-guide.md
+++ b/copilot/microsoft-365-copilot-e3-guide.md
@@ -6,7 +6,7 @@ f1.keywords:
ms.author: mandia
author: MandiOhlinger
manager: laurawi
-ms.date: 03/06/2025
+ms.date: 03/18/2025
ms.reviewer: cabailey, ruihu
audience: Admin
ms.topic: get-started
@@ -173,26 +173,6 @@ You can apply sensitivity labels to containers, like Microsoft Teams or SharePoi
[!INCLUDE [copilot-e5-e3-enable-sensitivity-labels-sharepoint-onedrive](./includes/copilot-e5-e3-enable-sensitivity-labels-sharepoint-onedrive.md)]
-#### 5. Apply a sensitivity label to your SharePoint document libraries
-
-You can use a sensitivity label on your SharePoint document libraries, and make this label the default label that applies to all document libraries. This configuration is appropriate when your document libraries store files with the same level of sensitivity.
-
-The SharePoint site admin can do this task.
-
-1. In your SharePoint site, select **Documents** > **Settings** icon > **Library settings** > **More library settings**.
-2. In **Default sensitivity labels** (Apply label to items in this list or library), select your custom sensitivity label from the drop-down list.
-3. **Save** your changes.
-
-When set:
-
-- SharePoint automatically applies the label to the files, which can include [files with a lower sensitivity label](/purview/sensitivity-labels-sharepoint-default-label#will-an-existing-label-be-overridden).
-- It provides a baseline level of protection that's specific to the document library. It doesn't require content inspection and doesn't rely on end users.
-
-To learn more, see:
-
-- [Overview - Default sensitivity labels for SharePoint document libraries](/purview/sensitivity-labels-sharepoint-default-label)
-- [Steps - Add a sensitivity label to SharePoint document library](https://support.microsoft.com/office/add-a-sensitivity-label-to-sharepoint-document-library-54b1602b-db0a-4bcb-b9ac-5e20cbc28089)
-
### Detect sensitive information and protect it from unauthorized sharing or leakage
✅ **Use [data loss prevention (DLP) policies](/purview/dlp-learn-about-dlp) to help protect against unintentional sharing**
diff --git a/copilot/multiple-account-access.md b/copilot/multiple-account-access.md
index 5ed99170a6e..d031bc7d9bc 100644
--- a/copilot/multiple-account-access.md
+++ b/copilot/multiple-account-access.md
@@ -13,21 +13,25 @@ ms.collection:
- m365copilot
- magic-ai-copilot
hideEdit: true
-ms.date: 03/05/2025
+ms.date: 03/20/2025
---
# Multiple account access to Copilot for work and school documents
-> [!NOTE]
-> - Multiple account access to Copilot is currently disabled for all work and school documents.
-> - Multiple account access to Copilot will be enabled in March 2025 at the earliest.
-> - In the meantime, there's a policy setting to turn it off ahead of time. For more information, see [Manage multiple account access to Copilot using Cloud Policy](#manage-multiple-account-access-to-copilot-using-cloud-policy).
+> [!IMPORTANT]
+> - As of March 19, 2025, multiple account access to Copilot is available for some apps on specific types of devices. For more information, see [Apps where multiple account access to Copilot is available](#apps-where-multiple-account-access-to-copilot-is-available).
+> - For information about turning off multiple account access by using a policy setting, see [Manage multiple account access to Copilot using Cloud Policy](#manage-multiple-account-access-to-copilot-using-cloud-policy).
## What is multiple account access to Copilot?
-In Microsoft 365 apps that support signing in with multiple accounts (Word, Excel, PowerPoint, Outlook, and OneNote desktop and mobile apps), users can use their Copilot access from one account on documents from a different account.
+In Microsoft 365 apps that support signing in with multiple accounts (desktop versions and mobile versions, if available, of Word, Excel, PowerPoint, Outlook, and OneNote), users can use their Copilot access from one account on documents from a different account.
+
+This means that when multiple account access to Copilot is enabled, your users can use Copilot on work documents without a Copilot license assigned from your organization.
-Multiple account access to Copilot is currently disabled, but once enabled, your users may use Copilot on work documents without a Copilot license assigned from your organization.
+When multiple account access to Copilot is disabled, if the user only has access to Copilot through an account outside of your organization, such as from a personal Microsoft 365 subscription, they can’t use Copilot on work or school documents.
+
+> [!NOTE]
+> Multiple account access to Copilot is always disabled for the following customers: Microsoft 365 GCC (Government Community Cloud), Microsoft 365 GCC High, Microsoft 365 DoD, and Microsoft 365 operated by 21Vianet.
## Data protection
@@ -37,13 +41,6 @@ The setting for [web grounding in Copilot](manage-public-web-access.md) is also
Users using multiple account access to Copilot on work and school documents also have limited access to Copilot as shown in the following table.
-> [!NOTE]
-> - The following table shows the Copilot capabilities available to your users when multiple account access to Copilot is enabled.
-> - As noted at the top of this article, multiple account access to Copilot is currently disabled for all organizations for all work and school documents.
-> - When multiple account access to Copilot is disabled, if your user only has access to Copilot through an account outside of your organization, such as from a personal Microsoft 365 subscription, they can’t use Copilot on work or school documents.
-> - Multiple account access to Copilot is always disabled for the following customers: Microsoft 365 GCC (Government Community Cloud), Microsoft 365 GCC High, Microsoft 365 DoD, and Microsoft 365 operated by 21Vianet.
-
-
| Copilot capability | When multiple account access to Copilot is enabled | When the user has been assigned an internal Microsoft 365 Copilot license |
|---------------------------------------------------------------------------------------------|------------------------------------|----------------------------------------|
| Access the organization’s Microsoft Graph |No |Yes|
@@ -56,7 +53,7 @@ Users using multiple account access to Copilot on work and school documents also
You can use the "Multiple account access to Copilot for work documents" policy setting to control whether your users can use multiple account access to Copilot on work and school documents. This policy only applies to Microsoft 365 apps that allow signing in with multiple accounts (Word, Excel, PowerPoint, Outlook, and OneNote desktop and mobile apps).
-To configure this policy setting, you can use [Cloud Policy service for Microsoft 365](/microsoft-365-apps/admin-center/overview-cloud-policy).
+To configure this policy setting, you need to use [Cloud Policy service for Microsoft 365](/microsoft-365-apps/admin-center/overview-cloud-policy).
> [!NOTE]
> - The policy setting is available in Cloud Policy as of January 30, 2025.
@@ -69,6 +66,23 @@ If you disable this policy setting, your users can't use Copilot on work and sch
The end-user experience for blocked users viewing work and school documents is as follows:
-- All on-canvas Copilot UX is removed, both on-canvas Copilot entry points and proactive features like Word summary.
+- All on-canvas Copilot UX is removed, both on-canvas Copilot entry points and proactive features, such as Word summary.
+
+- If the user is signed in with an account with Copilot, the Copilot button in the ribbon remains active. However, your users can't use any Copilot capabilities; clicking the button displays an error message indicating that multiple account access to Copilot is blocked.
+
+## Apps where multiple account access to Copilot is available
+
+As of April 8, 2025, multiple account access is rolling out gradually in the following apps, starting with the version listed.
+
+### On Android devices
+
+- PowerPoint: Version 16.0.18623.20090
+
+### On iOS devices
+
+- PowerPoint: Version 2.95.25030623
+- Word: Version 2.95.305.0
+
+### On Windows devices
-- If the user is signed in with an account with Copilot, the Copilot button in the ribbon remains active. However, your users can't use any Copilot capabilities; clicking the button displays an error message indicating that multiple account access to Copilot is blocked.
\ No newline at end of file
+- Word: Version 16.0.18623.20018
diff --git a/copilot/pay-as-you-go/meters.md b/copilot/pay-as-you-go/meters.md
new file mode 100644
index 00000000000..0b5f111fc52
--- /dev/null
+++ b/copilot/pay-as-you-go/meters.md
@@ -0,0 +1,35 @@
+---
+title: Meters for Microsoft 365 Copilot Chat pay-as-you-go
+description: Learn about the meters for the pay-as-you-go service for Microsoft 365 Copilot Chat.
+ms.author: camillepack
+author: camillepack
+manager: scotv
+ms.date: 03/12/2025
+ms.reviewer:
+audience: Admin
+ms.topic: get-started
+ms.service: microsoft-365-copilot
+ms.localizationpriority: medium
+ms.collection:
+- scotvorg
+- m365copilot
+- magic-ai-copilot
+- essentials-overview
+ms.custom: [copilot-learning-hub]
+---
+
+# Meters for Microsoft 365 Copilot Chat pay-as-you-go
+
+When you choose to use pay-as-you-go, usage of M365 Copilot Chat agents is billed to your Azure subscription using Azure meters. The following table describes the meter that is used for measuring usage.
+
+## Meter details table
+
+| Meter | What is counted? | What is billed? |
+|------------------|----------------------------------------------------------------------------------------------------------------------------|-----------------------|
+| Copilot Studio | A billable Copilot Studio message is a request or message sent to the Copilot triggering an action or response. Any agent or custom Copilot usage is billed through Copilot Studio message meter. | $0.01 per message |
+
+To learn more about meters, see [Pay-as-you-go-meters](/power-platform/admin/pay-as-you-go-meters).
+
+## Next step
+
+[Set up pay-as-you-go](setup.md) (article)
diff --git a/copilot/pay-as-you-go/overview.md b/copilot/pay-as-you-go/overview.md
new file mode 100644
index 00000000000..fdcaae2621a
--- /dev/null
+++ b/copilot/pay-as-you-go/overview.md
@@ -0,0 +1,70 @@
+---
+title: Microsoft 365 Copilot pay-as-you-go overview
+description: Learn about the pay-as-you-go service for Microsoft 365 Copilot Chat and how you can enable consumption-based billing for Copilot.
+ms.author: camillepack
+author: camillepack
+manager: scotv
+ms.date: 03/12/2025
+ms.reviewer:
+audience: Admin
+ms.topic: get-started
+ms.service: microsoft-365-copilot
+ms.localizationpriority: medium
+ms.collection:
+- scotvorg
+- m365copilot
+- magic-ai-copilot
+- essentials-overview
+ms.custom: [copilot-learning-hub]
+appliesto:
+ - ✅ Microsoft 365 Copilot
+---
+
+# Microsoft 365 Copilot pay-as-you-go overview
+
+The Microsoft 365 Copilot pay-as-you-go plan offers a flexible and cost-effective way for organizations to access Copilot services. This plan allows administrators to enable consumption-based billing for specific Copilot scenarios, providing users with the ability to use Copilot features without committing to a full license. This article provides an overview of the pay-as-you-go plan, its benefits, and pricing details.
+
+## Why pay-as-you-go?
+
+The Microsoft 365 Copilot pay-as-you-go plan offers a flexible and scalable solution for organizations looking to leverage AI capabilities without the commitment of a full license. By enabling consumption-based billing, administrators can better manage costs and provide users with access to powerful Copilot features as needed.
+
+### Common use cases
+
+- **Establish usage patterns** Understand adoption patterns for new apps to determine whether prepaid licenses make financial sense for your business.
+- **Scalability** Organizations can scale their usage based on demand, paying only for the consumption.
+
+## How does it work?
+
+The pay-as-you-go plan allows administrators to set up billing for Microsoft 365 Copilot Chat, enabling users to access declarative agents on a consumption basis. You can manage billing, view costs, and turn off services as needed.
+
+The following administrator roles in the Microsoft 365 admin center can view and manage pay-as-you-go:
+
+- Global administrator
+- AI administrator
+- Global reader (read-only access)
+
+### Billing process
+
+When you link your Azure subscription to a service for pay-as-you-go billing in the Microsoft 365 admin center, you're billed on a pay-as-you-go basis for the service you set up.
+
+You can cancel or delete your subscription at any time to stop processing and billing.
+
+### Process for new feature releases
+
+In the future, new features using pay-as-you-go billing will be announced via a message center post. When the features become available, users in your organization will be able to take advantage of those capabilities. Pay-as-you-go billing is disabled by default. A global admin or owner to the subscription can enable or disable Microsoft 365 pay-as-you-go features in the Microsoft 365 admin center.
+
+## Pricing details
+
+When you use a Microsoft Pay-as-you-go service linked to an Azure subscription, the service gets billed using the Azure subscription that you specified when you set up Pay-as-you-go billing. The Azure subscription uses the Azure meter set up for the service.
+
+To learn more about meters, see [Meters for Microsoft 365 Copilot Chat pay-as-you-go](meters.md).
+
+## Monitoring and billing
+
+The organization's consumption of the pay-as-you-go service can be monitored on the [Cost Management](/microsoft-365/commerce/use-cost-mgmt) page in the Microsoft 365 admin center for each of the Microsoft 365 pay-as-you-go services that you use.
+
+Billing for services is done through the Azure subscription that you associate to the service.
+
+## Next step
+
+[Meters](meters.md) (article)
diff --git a/copilot/pay-as-you-go/setup.md b/copilot/pay-as-you-go/setup.md
new file mode 100644
index 00000000000..ee7881f6bac
--- /dev/null
+++ b/copilot/pay-as-you-go/setup.md
@@ -0,0 +1,65 @@
+---
+title: Set up Microsoft 365 Copilot Chat pay-as-you-go
+description: Learn how to set up pay-as-you-go billing for Microsoft 365 Copilot Chat.
+ms.author: camillepack
+author: camillepack
+manager: scotv
+ms.date: 03/12/2025
+ms.reviewer:
+audience: Admin
+ms.topic: get-started
+ms.service: microsoft-365-copilot
+ms.localizationpriority: medium
+ms.collection:
+- scotvorg
+- m365copilot
+- magic-ai-copilot
+- essentials-overview
+ms.custom: [copilot-learning-hub]
+---
+
+# Set up pay-as-you-go for Microsoft 365 Copilot Chat
+
+Setting up the pay-as-you-go plan for Microsoft 365 Copilot Chat can be done directly from the Microsoft 365 admin center. This article provides step-by-step instructions on how to set up and manage pay-as-you-go billing.
+
+## Prerequisites
+
+To set up pay-as-you-go, you must have the following prerequisites:
+
+- Azure subscription and resource group
+ - You must have an owner or contributor Azure role to an Azure subscription to set up the pay-as-you-go service.
+ - You must have an owner or contributor Azure role to an Azure resource group linked to the same Azure subscription to set up the pay-as-you-go service.
+ - To learn more, see [Use the Azure portal and Azure Resource Manager to Manage Resource Groups](/azure/azure-resource-manager/management/manage-resource-groups-portal).
+- One of the following administrator roles:
+ - Global administrator
+ - Billing administrator
+ - AI administrator
+
+## Steps to set up pay-as-you-go billing
+
+1. In the Microsoft 365 admin center, go to **Copilot** > **Settings**.
+1. If not already set up, create an Azure subscription and resource group.
+1. Select the Azure subscription, resource group, and region for the pay-as-you-go setup.
+1. Enable consumption-based billing for the desired Copilot scenarios.
+
+### What if pay-as-you-go is already set up in the Power Platform admin center?
+
+If you already set up pay-as-you-go in the Power Platform admin center, the two setups can coexist. You can also create another setup in the Microsoft 365 admin center without being double billed. The billing system ensures that you're only billed once for your user's usage, regardless of the setup location.
+
+> [!NOTE]
+> Although the setups can coexist, it's recommended to turn off pay-as-you-go in the Power Platform admin center before enabling it in the Microsoft 365 admin center.
+
+## Managing pay-as-you-go billing
+
+As an admin, you can do the following to manage pay-as-you-billing for your organization:
+
+- **View usage and costs** You can view detailed reports on Copilot usage and the associated costs.
+- **Edit billing** Modify an unhealthy Azure subscription, resource group, and billing region.
+- **Turn off billing** You can turn off pay-as-you-go billing for any of the Copilot services, removing the service from the agent's view. Once the service has been turned off, users without a Copilot license won't be able to use the service.
+
+> [!NOTE]
+> When turning off pay-as-you-go, it may take up to two hours for users to stop being able to use the agents. Additionally, if the agent hasn't been used, it will no longer be accessible once pay-as-you-go is turned off.
+
+## Next step
+
+[View costs](view-cost.md) (article)
diff --git a/copilot/pay-as-you-go/view-cost.md b/copilot/pay-as-you-go/view-cost.md
new file mode 100644
index 00000000000..a85c32dbc65
--- /dev/null
+++ b/copilot/pay-as-you-go/view-cost.md
@@ -0,0 +1,36 @@
+---
+title: View costs for Microsoft 365 Copilot Chat pay-as-you-go
+description: Learn about how to view billing and costs for pay-as-you-go for Microsoft 365 Copilot Chat.
+ms.author: camillepack
+author: camillepack
+manager: scotv
+ms.date: 03/12/2025
+ms.reviewer:
+audience: Admin
+ms.topic: get-started
+ms.service: microsoft-365-copilot
+ms.localizationpriority: medium
+ms.collection:
+- scotvorg
+- m365copilot
+- magic-ai-copilot
+- essentials-overview
+ms.custom: [copilot-learning-hub]
+---
+
+# View costs and billing for Microsoft 365 Copilot Chat pay-as-you-go
+
+The Microsoft 365 Copilot Chat pay-as-you-go service offers a flexible and cost-effective way for organizations to access Copilot services. This article explains how administrators can view cost and billing details for pay-as-you-go.
+
+## Access usage and billing information
+
+To view detailed reports on Copilot usage and the associated costs, follow these steps:
+
+1. Sign in to the Microsoft 365 admin center with one of the following administrator roles:
+
+ - Global administrator
+ - Billing administrator
+
+2. In the admin center, go to **Billing** > **Cost Management**.
+3. On the **Cost Management** page, under **Service family**, you can see a service-level view of costs based on Copilot usage.
+4. Alternatively, you can view costs in the Azure portal using Azure Cost Management. Billed amounts are updated daily (and sometimes more frequently), but it can take up to 24 hours after usage of a service to show up in Azure Cost Management.
diff --git a/copilot/pin-copilot.md b/copilot/pin-copilot.md
index 96a2cacefd5..636f7ed2a95 100644
--- a/copilot/pin-copilot.md
+++ b/copilot/pin-copilot.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: camillepack
author: camillepack
manager: scotv
-ms.date: 01/15/2025
+ms.date: 03/31/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-copilot
@@ -23,42 +23,82 @@ description: "Learn how to improve organization use of Microsoft 365 Copilot Cha
# Pin Microsoft 365 Copilot Chat to the navigation bar
-As an administrator, you can pin Copilot to the navigation bar of Teams, Outlook, and the Microsoft 365 Copilot app, including [M365Copilot.com](https://M365Copilot.com), Microsoft 365 desktop app, and the Microsoft 365 mobile app. When you pin Copilot Chat, it encourages your organization to use Microsoft 365 Copilot Chat.
+As an administrator, you can pin Copilot to the navigation bar of Teams, Outlook, and the Microsoft 365 Copilot app, across the web, desktop, and mobile. Pinning makes it easy for your users to access Microsoft 365 Copilot Chat as the secure and compliant generative AI chat solution that’s available to them on their work identity (signed in with a Microsoft Entra account).
-Admin pinning allows you to set Microsoft 365 Copilot Chat to appear on the navigation bar for the applications listed previously. This setting is only applicable for users who are signed in with a Microsoft Entra account for your tenant.
+>[!NOTE]
+>
+> - Starting on May 1, 2025, and rolling out over time, Microsoft 365 Copilot Chat will be pinned by default in the navigation bar of Teams, Outlook, and the Microsoft 365 Copilot app for most users eligible for Copilot Chat across web, mobile, and desktop.
+> - If you previously selected 'Do not pin Copilot to the navigation bar' in the Microsoft 365 admin center, and also unchecked the 'Allow users to be asked whether they want to pin it' option, your setting configuration will be “Do not pin” and your users still won’t have Copilot pinned in their navigation bar. Also, if an admin switches the setting to 'Do not pin,' Copilot honors that choice. If a user sees Copilot pinned in their navigation bar and chooses to unpin it, Copilot respects that choice in future sessions.
## Before you begin
:::image type="content" source="media/pin-copilot-mac.png" alt-text="Screenshot showing the Pin Copilot setting on the Copilot settings page in the Microsoft 365 admin center." lightbox="media/pin-copilot-mac.png":::
-Global administrators can access this setting in the Microsoft 365 admin center by navigating to **Copilot** > **Settings**.
+The following roles can access this setting in the Microsoft 365 admin center:
+
+- Global Administrator
+- AI Administrator
+
+To get to this setting, go to the [Copilot settings page](https://go.microsoft.com/fwlink/?linkid=2310640), or:
+
+1. Sign in to the Microsoft 365 admin center.
+1. Go to **Copilot** > **Settings**.
+1. Select **Pin Microsoft 365 Copilot Chat**.
> [!NOTE]
> Admin pinning is only applicable to users who are authenticated with a Microsoft Entra account.
## Pinning options
-By default, Microsoft 365 Copilot Chat isn't pinned to the navigation bar, and users are asked if they want to pin Copilot starting mid-September 2024.
+By default, Microsoft 365 Copilot Chat isn't pinned to the navigation bar, and users are asked if they want to pin Copilot.
Administrators can change this behavior by selecting an option for pinning Microsoft 365 Copilot Chat to the navigation bar:
1. **Pin Copilot to the navigation bar (recommended)**: Microsoft 365 Copilot Chat is automatically pinned for all users. Users aren't prompted.
- :::image type="content" source="media/pin-copilot.png" alt-text="Screenshot showing the option to pin Copilot to the navigation bar.":::
+:::image type="content" source="media/pin-copilot.png" alt-text="Screenshot showing the option to pin Copilot to the navigation bar.":::
-2. **Do not pin Copilot to the navigation bar**: Microsoft 365 Copilot Chat isn't automatically pinned to the navigation bar. When this option is selected, administrators can determine if users receive automatic prompts to pin using the checkbox.
+2. **Do not pin Copilot Chat to the navigation bar**: Microsoft 365 Copilot Chat isn't automatically pinned to the navigation bar. When this option is selected, administrators can determine if users receive automatic prompts to pin using the checkbox.
- :::image type="content" source="media/do-not-pin-copilot-setting.png" alt-text="Screenshot showing the option to not pin Copilot to the navigation bar.":::
+:::image type="content" source="media/do-not-pin-copilot-setting.png" alt-text="Screenshot showing the option to Do not pin Copilot for users.":::
When you uncheck the 'Allow users to be asked whether they want to pin it' option, Microsoft 365 Copilot Chat no longer appears in the App Launcher.
-Global administrators can make changes to Microsoft 365 Copilot Chat pinning settings at any time. Changes take up to 48 hours to go into effect.
+Global Admins and AI Admins can make changes to Microsoft 365 Copilot Chat pinning settings at any time. Changes take up to 48 hours to go into effect.
-> [!NOTE]
-> Users with a license for Microsoft 365 Copilot have Microsoft 365 Copilot Chat pinned by default. Users without a Copilot license won't see Copilot pinned.
+## Upcoming changes for pinning Copilot
+
+Starting May 1, 2025 and rolling out over time, Microsoft 365 Copilot Chat is pinned to the navigation bar of Teams, Outlook, and the Microsoft 365 Copilot app by default for most users who are eligible for Copilot Chat across web, mobile, and desktop.
+
+Admins can change the pinning settings by selecting an option for pinning Microsoft 365 Copilot Chat to the navigation bar:
+
+1. **Pin Copilot to the navigation bar (recommended)**: Microsoft 365 Copilot Chat is automatically pinned for all users. Users aren't prompted.
+1. **Do not pin Copilot to the navigation bar**: Microsoft 365 Copilot Chat isn't automatically pinned to the navigation bar.
+
+If you previously selected **Do not pin Copilot to the navigation bar** and also unchecked the "Allow users to be asked whether they want to pin it" option, your setting configuration will be **Do not pin** and your users still won’t have Copilot pinned in their navigation bar.
+
+If an admin switches the setting to Do not pin, Copilot honors that choice. If a user sees Copilot pinned in their navigation bar and chooses to unpin it, Copilot respects that choice in future sessions.
+
+## Pin at a group or user level
+
+For large enterprises with complex needs, the Pinning policy can be set up to apply to specific groups of users. This option is not recommended for most customers due to the management complexity.
+
+To do this:
+
+1. Sign in to the [Microsoft 365 Apps admin center](https://config.office.com/).
+2. In the **Office policies** card, select **Go to Microsoft 365 Cloud Policy**.
+3. Select **Create**.
+4. Customize the basics and scope of the policy.
+5. In policies, look for “Pin Microsoft Copilot to the navigation bar.”
+6. The flyout panel displays the configuration options. Select an option and apply.
+7. Review final changes.
+8. Publish.
## User experience
+>[!NOTE]
+> Beginning on May 1, 2025, and rolling out over time, most users will have Copilot Chat pinned by default, and they won't see any pinning messages.
+
Users can personalize their navigation bar by choosing to pin or unpin Microsoft 365 Copilot Chat. Users can adjust the pinning settings within their application preferences, and these choices are specific to Teams, Outlook, the Microsoft 365 Copilot web app ([microsoft365.com](https://M365Copilot.com) and [m365.cloud.microsoft](https://m365.cloud.microsoft/)), Microsoft 365 Copilot desktop app, and Microsoft 365 Copilot mobile app.
A message asking to pin Microsoft 365 Copilot Chat can appear if a user:
@@ -86,19 +126,10 @@ If a user opens the Microsoft 365 Copilot mobile app, they see two options: **Pi
Users with a paid version of Microsoft 365 Copilot won't see any pinning messages. They see a welcome screen when they visit Copilot for the first time.
-## When Microsoft 365 Copilot Chat is pinned in each app
-
-If you choose to pin Microsoft 365 Copilot Chat for all users, it's pinned in Microsoft 365 Copilot (app) for desktop, mobile, and web starting mid-September. Microsoft 365 Copilot Chat will be pinned in Microsoft Teams, Microsoft Outlook, and the Microsoft 365 Copilot web app soon after.
-
-To learn more, see [Frequently asked questions for Microsoft 365 Copilot Chat](https://aka.ms/MsftCopilot-BlogFAQ).
-
## Pin Copilot in Microsoft Teams through the Teams admin center
You can pin Microsoft 365 Copilot Chat for your users in Microsoft Teams only through the Teams admin center. In the Teams admin center, create or modify [App setup policies](/microsoftteams/teams-app-setup-policies#pin-apps) by adding the Copilot app to the policy's Pinned apps. When you assign the policy to users with a Microsoft Entra account, the Copilot app is pinned for them. Like pinning any other app in Teams, Copilot also needs to be allowed for those users through [App permission policies](/microsoftteams/teams-app-permission-policies) or [App centric manage](/microsoftteams/app-centric-management) if you migrated to it.
-> [!NOTE]
-> If you assign the policy to users with a Microsoft 365 Copilot license, then the Microsoft 365 Copilot app is pinned. The Microsoft 365 Copilot app will be pinned by default in the Teams left rail starting late January 2025 (previously mid-January) and is expected to complete by late February 2025 (previously late January).
-
If you select Pin Copilot through the Microsoft 365 admin center **Copilot** > **Settings** page, and you have Copilot-pinned App setup policies assigned to users with a Microsoft Entra account, those users have Copilot Chat pinned in the position defined by the App setup policy. Everyone else is pinned in a default position.
If you select Do not pin Copilot through the Microsoft 365 admin center **Copilot** > **Settings** page, and you have Copilot-pinned App setup policies assigned to users with a Microsoft Entra account, only those users have Copilot Chat pinned.
diff --git a/copilot/provide-feedback.md b/copilot/provide-feedback.md
index 31d69d14dbb..128f2943946 100644
--- a/copilot/provide-feedback.md
+++ b/copilot/provide-feedback.md
@@ -41,7 +41,9 @@ Before you begin, you must have the following:
## Steps to provide feedback to Microsoft
-To provide feedback to Microsoft on behalf of a user who encountered a problem with Microsoft 365 Copilot, follow these steps:
+You can provide admin-initiated feedback for selected users across all Microsoft 365 apps where Copilot is available. To learn more about what apps have Copilot, see [Microsoft 365 Copilot overview](microsoft-365-copilot-overview.md).
+
+To give feedback to Microsoft on behalf of a user who encountered a problem with Microsoft 365 Copilot, follow these steps:
1. Go to [admin.microsoft.com](https://admin.microsoft.com) and sign in with **Global Admin** or **AI admin** credentials. Select **Copilot** in the left navigation pane to enter the Copilot home page.
diff --git a/copilot/release-notes.md b/copilot/release-notes.md
index d70fc67ea88..f5b8b094224 100644
--- a/copilot/release-notes.md
+++ b/copilot/release-notes.md
@@ -6,8 +6,7 @@ f1.keywords:
ms.author: mandia
author: MandiOhlinger
manager: laurawi
-ms.date: 03/4/2025
-
+ms.date: 04/02/2025
audience: Admin
ms.reviewer: briandesouza
ms.topic: get-started
@@ -29,2355 +28,5207 @@ This page lists the latest features and improvements for Microsoft 365 Copilot.
## [All features](#tab/all)
+## April 2, 2025
+Updates released between March 20, 2025, and April 2, 2025.
+### Copilot Studio
+- **Enhanced SharePoint URL support in Copilot Studio** [Web]
+
+ Previously, only SharePoint site URLs could be used as knowledge for Copilot Studio agents. Users can now use SharePoint file, folder, and site URLs, including links from the Share button or browser address bar; once the URLs are added, the agents will be grounded to the content within the URL. Additionally, more granular error messages help with transparency and managing expectations.
+ Learn more.
+- **Public website scoping for agents** [Web]
+
+ Makers can now scope agents' knowledge sources to specific websites, enhancing the precision of web searches. This capability, previously available in custom agents from Microsoft Copilot Studio, is now extended to agents in the Microsoft 365 context.
+ Learn more.
+- **SharePoint knowledge for agents** [Web]
+
+ Makers can now leverage additional data sources, including Dataverse and SharePoint, when building autonomous agents. This expands the variety of use cases for autonomous agents.
+- **Use agent builder in Copilot chat** [Web]
+
+ Create custom agents in Copilot chat to streamline repetitive tasks and achieve consistency. Use specific instructions and grounding details to save time, reuse your agents, and enhance team productivity.
+ Learn more.
+### Excel
+- **Gain insights with Copilot and Python in Excel on Web** [Web]
+
+ Using everyday language, ask Copilot to perform advanced analytics like machine learning and predictive forecasting, which would usually take hours or require special skills. Copilot writes Python code and inserts it on the grid, providing deeper insights and stunning/ visuals. Available in multiple languages on Excel for the Web.
+ Learn more.
+- **Read aloud for Excel text responses** [Web]
+
+ Users can now use the Read Aloud button on the Copilot response card to have an audio narration of the response, enhancing accessibility and ease of information consumption.
+### Microsoft 365 Admin Center
+- **View security information and certification evidence**
+
+ Admins in Microsoft 365 Admin center can view the evidence of audits, and self-attestation to provide further confidence as to the certification, and compliance, of public apps and agents.
+### Microsoft 365 Copilot Chat
+- **Ask questions about images with natural language** [Android, iOS, Web]
+
+ Easily gain insights from images by asking natural language questions. Upload images for quick analysis using advanced vision models—helping you make sense of visual data across your apps.
+- **Enhance email insights with interactive hovers** [Web]
+
+ Enjoy enriched emails with interactive hovers that reveal contextual details—like sender info, dates, and follow-up prompts—to streamline your daily workflow.
+### Microsoft 365 Copilot Studio
+- **Collect user feedback in Copilot Studio agent builder** [Web]
+
+ Makers can also now submit feedback—compliments, problems, or suggestions—directly to the product team from inside the Microsoft 365 agent builder. This can be done at any stage of the authoring process, including comments and optional metadata for troubleshooting. This feature allows quick issue reporting without disrupting workflow and enables the product team to address feedback efficiently.
+ Learn more.
+### Microsoft Loop
+- **Load existing Copilot pages and create multiple pages** [Web]
+
+ With multipage functionality in Copilot Pages, users can load existing pages and create multiple pages within a single conversation.
+ Learn more.
+- **Recap changes over a longer time** [Web]
+
+ Recap changes in Loop over extended periods, such as the last week or last 30 days, instead of being limited to the current session. This feature helps users share updates more effectively.
+### PowerPoint
+- **Translate your presentation** [Windows, Web, Mac]
+
+ Produce a translated copy of your entire presentation in about 40 languages while preserving your slide design and structure, making global collaboration effortless.
+ Learn more.
+### Viva Engage
+- **Questions surfacing in Copilot results** []
+
+ Viva Engage questions from communities, storyline, and Answers surface in Copilot results.
+ Learn more.
+### Word
+- **Narrate your ideas to Copilot** [iOS]
+
+ Brainstorm out loud and let Copilot convert your voice notes into structured documents, making it easier to organize and develop your ideas.
+- **Rewrite with Copilot** [iOS]
+
+ Get suggestions from Copilot on how to rewrite any text, helping you improve clarity and style effortlessly.
+- **Simplified prompt experience in chat** [Web]
+
+ The chat experience in Word is now simplified with access to attachments, images, and agents now accessed form a single plus-sign menu.
+- **Visualize as table** [iOS]
+
+ Easily convert plain text into structured tables, helping you organize and present data more effectively in your daily work.
+
+## March 19, 2025
+
+Updates released between March 5, 2025, and March 19, 2025.
+
+### Copilot Studio
+
+- **Use generative actions** [Web]
+
+ Replace manual topic triggers with AI-powered orchestration. You can now configure an agent to use generative AI to dynamically select relevant topics or plugin actions, creating more fluid conversations while reducing manual topic configuration. Learn more.
+
+### Microsoft 365 Admin Center
+
+- **Enhanced transparency for declarative agent metadata**
+
+ Admins can now view granular metadata in the Microsoft 365 Admin Center—including data source details and custom actions—for declarative agents. This clarity enables more informed decisions on app availability and management across your organization.
+
+- **Manage shared Copilot agents across your organization** [Web]
+
+ Tenant admins can now view, search, and block shared Copilot agents in the Admin Center. Maintain control over agent usage and ensure compliance with organizational policies.
+
+### Microsoft 365 Copilot App
+
+- **View, edit and share Copilot Pages on mobile** [Android, iOS]
+
+ Stay productive while on the go—use the Microsoft 365 mobile app to view, edit, or share Copilot-generated pages instantly. Collaborate with colleagues in real time, whether you’re commuting or between meetings. Learn more.
+
+### Microsoft 365 Copilot Chat
+
+- **Copilot on Edge Update** [Web]
+
+ Copilot on Edge has been updated and requires users to update their version of Edge to version 134.0.3124.51 or newer to receive the latest functionality. This update includes file upload availability on the web tab as well as a smoother authentication experience via the Edge Work Profile.
+
+- **Enhanced large file support in Copilot Chat**
+
+ Work seamlessly with larger documents in Copilot Chat. You can now reference and interact with bigger files, such as lengthy reports or detailed presentations.
+
+- **Prompt suggestions in Copilot chat** [Windows, Web, Mac]
+
+ Get started in Copilot chat quickly with automatic prompt suggestions that enhance your productivity by providing relevant and context-aware prompts based on your previous interactions.
+
+### Microsoft 365 Copilot Extensibility
+
+- **Support for message extension and declarative agents** [Windows, Web]
+
+ Transform legacy plugins into integrated experiences by exposing them as declarative agents—enhance Office apps like Word, Excel, and PowerPoint with message extensions.
+
+### Microsoft Loop
+
+- **Track collaborative changes with "who did what and when"** [Web]
+
+ Ask Copilot about recent edits in Loop workspaces to identify contributors, review timeline updates, and maintain clarity during team projects. Example: "Show changes to the onboarding checklist this week."
+
+### OneNote
+
+- **Support image input in OneNote chat** [Windows]
+
+ Ask Copilot to analyze image input and organize your notebook pages by detecting themes and topics. Quickly group pages and update your Notebook structure with a simple click.
+
+### Copilot Prompt Gallery
+
+- **Share a Copilot prompt with a Teams team** [Windows, Web]
+
+ Easily share custom prompts from the Copilot Prompt Gallery with your Microsoft Teams team. This streamlined sharing makes it simple for team members to discover and make the most of these prompts in their daily workflow. Learn more.
+
+### SharePoint
+
+- **Create and share agents** [Web]
+
+ Easily create agents by selecting SharePoint sites or files and share them with your team in SharePoint or Teams to boost collaboration. Learn more.
+
+- **Use Data Access Governance to analyze tenant permissions** [Web]
+
+ Leverage detailed reports on permissioned user counts and sharing links to identify oversharing risks and make informed governance decisions. Learn more.
+
## March 4, 2025
-Updates released between February 19, 2025, and March 4, 2025.
+
+Updates released between February 20, 2025, and March 4, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Search archived mailboxes in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Leverage Copilot Chat to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in my archives' in your prompts to quickly locate key messages.
+
### Copilot Studio
+
- **Add enterprise data with new graph connections** [Web]
+
Connect your organization’s data seamlessly using pre-configured graph connectors like Stack Overflow, and Salesforce Knowledge. Build smarter agents with semantic search—no custom solution required. Learn more.
+
### Microsoft 365 Admin Center
+
- **Enhanced Copilot admin page with comprehensive tools** [Web]
+
Navigate a refreshed admin interface featuring Overview, Health, Discover, and Settings—delivering key metrics, insights, and controls to tailor Copilot to your organization’s needs.
+
- **Simplify Copilot license assignment** [Web]
+
Use a data-driven license optimizer to identify users who gain the most value from Copilot. Streamline assignments in the admin center for efficient adoption across your organization.
-### Microsoft 365 App
+
+### Microsoft 365 Copilot App
+
- **View, edit and share Copilot Pages on mobile** [iOS]
+
Stay productive no matter where you are. With mobile access to Copilot Pages, you can view, edit, and share content on the go, ensuring seamless collaboration with colleagues. Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Simplified 1-page Graph Connector setup**
+
Quickly set up external data connections with a single, simplified page for all Graph Connectors, reducing complexity and saving admin time. Learn more.
+
- **Create Copilot agents with scoped web knowledge**
+
Build customized Copilot agents that integrate up to four public web sites. Enhance functionality with targeted web knowledge for smarter, context-aware experiences. Learn more.
+
### PowerPoint
+
- **Add speaker notes to all slides with one command** [Windows]
+
Speed up your presentation creation by having Copilot automatically add speaker notes to every slide, getting your narrative draft ready in a flash. Learn more.
+
- **Narrative builder creates slides with tables** [Windows, Web, Mac]
+
Convert grounded content from Word documents into dynamic slides with tables. Enhance your presentations with structured, data-driven visuals effortlessly.
+
## February 19, 2025
+
Updates released between February 5, 2025, and February 19, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Enhanced entity context card** [Web]
+
Enjoy smoother motion, improved reliability, and a more intuitive experience with the upgraded entity context card—making it easier to explore contextual details as you work. Learn more.
+
- **Increased results in Copilot Chat responses** [Web]
+
Get more comprehensive email and calendar results in Copilot Chat responses to easily summarize messages or track your meetings throughout the day.
+
+### Excel
+
+- **Get powerful insights with python** [Windows]
+
+ Explore your data naturally with advanced analysis that leverages Python—no expert coding needed to uncover trends and create dynamic visualizations.
+
### Microsoft Teams
+
- **AI-enabled file summaries on mobile** [Android, iOS]
+
Summarize Word, PowerPoint, and PDF files on mobile by tapping the summary icon or selecting “Summarize with Copilot” for a quick, digestible overview—even on small screens.
+
- **Intelligent meeting recap for instant meetings (premium)** [Windows, Mac]
+
Effortlessly browse meeting recordings by speaker and topic and access AI-generated notes, tasks, and mentions for instant meetings—empowering premium Copilot users with comprehensive insights. Learn more.
+
### OneNote
+
- **Enhance note-taking with iterative content proposals** [Windows]
+
Refine your notes on the fly by iterating prompts and reviewing alternate drafts, giving you a dynamic, customizable note-taking experience. Learn more.
+
- **Take notes with Copilot directly in the flow from the canvas** [Windows]
+
Seamlessly gather and create notes right on your page with Copilot integrated into your personal OneNote notebook, making in-flow note-taking more intuitive. Learn more.
+
### PowerPoint
+
- **Create a presentation from a file-based prompt** [Windows, Web, Mac]
+
Pull key facts and data from a selected file to shape your narrative. Simply provide Copilot with a prompt and quickly build your deck with relevant information. Learn more.
+
### Viva Insights
+
- **Copilot dashboard for usage and retention insights** [Windows, Web, Android, iOS, Mac]
+
Dive into usage frequency, compare top user groups, and track retention metrics—all in a single, comprehensive dashboard for actionable insights. Learn more.
+
- **Simplify analysis with advanced insights**
+
Build queries quickly with Copilot’s intelligent suggestions for relevant metrics, filters, and attributes, streamlining your data analysis process effortlessly. Learn more.
+
### Word
+
- **Chat with Copilot about selected text** [Windows, Web, Mac]
+
Highlight text, start a chat with Copilot, and receive responses tailored to what you’ve selected. Get targeted writing assistance and refine your content in real time.
+
## February 4, 2025
+
Updates released between January 24, 2025, and February 4, 2025.
+
### Microsoft 365 Copilot App
+
- **Updates to the Microsoft 365 (Office) app** [Windows, Web, Android, iOS]
+
The Microsoft 365 Copilot app (formerly Microsoft 365 app) has a new name and icon. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Access support pages in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
View organizational support pages directly within Copilot Chat, for quick help and guidance in your workflow.
+
- **Accommodate user’s time zones in Copilot** [Windows, Web, Android, iOS]
+
Copilot now references your local time zone when responding helping to avoid confusion and scheduling errors.
+
- **Charts, graphs, and data analysis in Copilot for Microsoft 365** [Windows, Web]
+
Use natural language to create charts, graphs, and data analysis in Copilot Chat work mode.
+
- **Get more Copilot value with Microsoft 365 Copilot** [Web]
+
Easily add full Copilot Chat capabilities including grounding conversations in work data and accessing Copilot in your favorite Microsoft 365 apps by purchasing or requesting a Microsoft 365 Copilot license directly in Copilot Chat. Learn more.
+
### Microsoft Teams
+
- **Speaker recognition and attribution in BYOD rooms with Copilot** [Windows, Mac]
+
Take advantage of speaker recognition and transcript attribution, unleashing new AI capabilities in any meeting space, whether or not it has a Teams Rooms system deployed. This feature identifies and attributes people in live transcripts, utilizing a unique voice profile for each participant enabling intelligent recaps and unlocking maximum value from Microsoft 365 Copilot in Teams meetings. Users can easily and securely enroll their voices via Teams Settings. This feature requires a Microsoft 365 Copilot or Teams Premium license for the user hosting the meeting for Copilot experiences and intelligent recaps, respectively. Learn more.
+
### PowerPoint
+
- **Use Copilot to rewrite, trim, or formalize text** [Web, Mac]
+
Transform your presentation text by letting Copilot fix grammar, shorten lengthy content, or adopt a more professional tone—perfect for crafting clear, polished slides.
-### Prompt Gallery
+
+### Copilot Prompt Gallery
+
- **Share a prompt with a co-worker** [Windows, Web]
+
Easily create, save, and share your favorite prompts using Copilot Prompt Gallery, inspiring your co-workers to achieve more with Copilot. Learn more.
+
### SharePoint
+
- **Restricted Content Discovery** [Web]
+
Prevent specific SharePoint sites from being discoverable in tenant-wide search and Copilot. Learn more.
+
### Word
+
- **Browse cloud files with the file picker** [Mac]
+
Use a file picker to browse your cloud directory and include relevant files without searching by name, making it easy to add key references to your draft.
+
- **Draft from selected text, lists, or tables** [iOS]
+
Generate new content right where you work by selecting text, lists, or tables and tapping into Copilot’s on-canvas menu. Quickly refine drafts and collaborate more interactively. Learn more.
+
- **Draft with Copilot** [iOS]
+
Quickly produce paragraphs or entire sections for your documents, whether you’re creating a brand-new file or adding to existing text. Learn more.
-- **Reference cloud files when drafting** [Mac]
- Use a file picker to browse your cloud directory and include relevant files without searching by name, making it easy to add key references to your draft.
+
- **Reference data from the Microsoft cloud when drafting with Copilot in Word** [Windows, Web, Mac]
+
Draft with Copilot now supports attaching rich content from the Microsoft cloud—including emails and meetings—resulting in more contextually relevant content. Learn more.
+
- **Reference plain text files in Copilot** [Windows, Web, Mac]
+
Add .txt files as sources with Copilot in Word, streamlining your process when working with text-based research or background content.
+
## January 23, 2025
+
Updates released between January 8, 2025, and January 23, 2025.
### Forms
+
- **Smart reminders with Copilot in Forms** [Web]
+
Copilot in Forms now offers smart reminders to help you monitor response progress and get more engagement with your forms, delivered right to your email inbox. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS]
+
Microsoft 365 Copilot Chat—free, secure AI chat powered by GPT-4o with agents accessible right in chat, and IT controls including enterprise data protection and agent management. Copilot Chat serves as a powerful new on-ramp for everyone in your organization to build an AI habit. Get started with Copilot Chat with the updated Microsoft 365 Copilot app (formerly Microsoft 365 app). Learn more.
+
- **Updated Copilot Chat responses UI** [Windows]
+
Enjoy a more intuitive Copilot experience with streamlined message boundaries, refined message count alerts, and a clearly positioned security badge for higher trust and transparency.
+
- **Updated meeting entity card in Copilot Chat** [Windows, Web]
+
Check meeting details like RSVP status, date, and attachments without switching contexts in Copilot Chat.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot App
+
+- **Control auto-start behavior on windows** [Windows]
+
+ Adjust Windows settings to let users auto-launch the M365 app upon login, while giving admins the option to enforce group policy controls for enterprise needs.
+
+- **Keep the app running in the background** [Windows]
+
+ Enable the setting to keep the app active as a background process after closing, ensuring faster subsequent launches without a full reload.
+
+### Microsoft 365 Copilot Extensibility
+
- **Consistent user experience with developer-submitted plugins**
+
Developer-submitted plugins (ME, PPC, DV) are promoted to agents seamlessly, ensuring a uniform user experience and simplifying plugin management.
+
- **Use agents in Copilot Chat Web mode**
+
You can now access agents in the web-grounded Copilot Chat, enabling you to get access to additional sources of knowledge across both the work and web grounded experiences of Copilot Chat. Learn more.
+
### PowerPoint
+
- **Generate summaries for longer presentations** [Windows, Web, Mac]
+
Copilot now supports text summaries up to 40k words (around 150 slides), giving you richer information and more polished layouts. Learn more.
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
### SharePoint
+
- **Copilot in SharePoint** [Web]
+
Copilot in SharePoint combines the power of Large Language Models (LLMs), your data in the Microsoft Graph, and best practices to create engaging web content. Get assistance drafting your content when creating new pages. Adjust the tone, expand meeting bullets into structured text, or get help making your message more concise. All within our existing commitments to data security and privacy in the enterprise. Learn more.
+
+### Microsoft Teams
+
+- **Require explicit consent for meeting recording and transcription.**
+
+ Manage meeting recording policies via the Teams admin center or PowerShell to require explicit participant consent before recording or transcription in ad-hoc meetings or group calls. When enabled and recording/transcription starts, all participants are muted with cameras and sharing turned off until they give explicit consent to be recorded and transcribed, ensuring a compliant meeting experience.
+
### Viva Amplify
+
- **Microsoft 365 Copilot in Viva Amplify editor** [Web]
+
The superpowers of Microsoft 365 Copilot integrates seamlessly into Viva Amplify, transforming content creation. Use Copilot in Amplify to auto-rewrite for suggestions, expand or condense text, and adjust tone for consistent, relevant messaging. Learn more.
+
### Viva Insights
+
- **Copilot dashboard access can be granted using Entra groups** [Web]
+
Global admins can now grant Microsoft Copilot Dashboard access using Microsoft Entra ID (AAD) Groups, reducing the manual effort needed for management. Learn more.
+
- **New Copilot adoption metrics and completing total actions taken** [Windows, iOS, Mac]
+
This adds seven new Copilot adoption metrics to the Copilot dashboard and Viva Insights Advanced insights. It also updates the "total actions taken" metric in the Copilot dashboard to include these new Copilot adoption metrics. Learn more.
+
### Word
+
- **Get started on a draft immediately with example prompts** [Windows, Mac]
+
On blank documents, Copilot in Word offers one-click example prompts to help you get started quickly. Learn more.
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Web, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
## January 7, 2025
+
+Updates released between December 18, 2024, and January 7, 2025.
### Copilot Prompt Gallery
+
- **Access Copilot Prompt Gallery in Word and PowerPoint mobile apps** [Android, iOS]
+
Discover and use suggested Copilot prompts in Prompt Gallery within the Word and PowerPoint apps on iOS and Android. Enhance your productivity on the go with helpful AI suggestions.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Track usage of Microsoft 365 Copilot Chat** [Web]
+
Filter data by date range, review Microsoft Copilot usage by app entry point, and use these insights plan adoption strategies more confidently. Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Include Code Interpreter in agents** [Windows, Web]
+
Enhance your agents by including Code Interpreter for advanced data analysis tasks in agent builder. Learn more.
+
### OneNote
+
- **Use Copilot quick actions in OneNote: Rewrite, Summarize, and Create To-Dos** [Windows]
+
Enhance your notes by using Copilot directly on the OneNote canvas. Instantly generate summaries, create to-do lists, or rewrite selected content within your notes. Learn more.
+
### Outlook
+
- **Schedule meetings with Copilot chat in Outlook** [Windows, Web]
+
Save time and streamline your day by asking Copilot to schedule meetings for you in Outlook. Whether it's a 1:1 or focus time, Copilot will find the best available time slots with ease. Learn more.
+
- **Switch between Work and Web grounding in Microsoft 365 Copilot Chat** [Android, iOS]
+
In Outlook mobile apps, you can now toggle between Microsoft 365 Graph (Work) and Web grounding in Microsoft 365 Copilot Chat. Choose the grounding source that best suits your needs for more personalized assistance.
+
### Viva Amplify
+
- **Copilot in Viva Amplify editor** [Web]
+
Experience the power of Copilot right in your Amplify editing workflow. You can quickly auto-rewrite sections of your text, expand or condense content to match your preferred length, and seamlessly adjust the tone—casual, engaging, or professional—to suit your audience. Learn more.
+
### Viva Insights
+
- **Expand your understanding of Copilot adoption with enhanced metrics** [Windows, iOS, Mac]
+
Access seven new Copilot metrics and see them reflected in "total actions taken," helping you better track how teams use Copilot. Learn more.
+
- **New metrics for enterprise data-protected prompts** [Windows, Web, Android, iOS, Mac]
+
Gain visibility into prompts submitted through Microsoft 365 Copilot Chat (web) and enterprise data-protected Copilot scenarios. Learn more.
+
### Viva Learning
+
- **Copilot Academy support for external content** [Web]
+
Enhance your learning experience with a wider range of external content in Copilot Academy, including links to Copilot Prompt Gallery. Learn more.
+
## December 17, 2024
+
### Microsoft 365 Copilot
+
- **Microsoft 365 Copilot GCC general availability** [Windows, Web]
+
Your AI assistant for work in the GCC (Government Community Cloud) environment. It combines the power of large language models (LLMs) with your work content and context, to help you draft and rewrite, summarize and organize, catch up on what you missed, and get answers to questions via prompts. Learn more.
+
### Microsoft Purview
+
- **Generate keyword query language from natural language prompt in eDiscovery with Copilot for Security** [Web]
+
Copilot for Security is embedded in eDiscovery to enable users to provide a search prompt in natural language and will translate into keyword query language to help expedite the start of an eDiscovery search. Learn more.
+
### OneNote
+
- **Use Copilot in OneNote on Mac and iPad** [iOS, Mac]
+
Experience the power of Copilot across OneNote for Mac and iPad. Quickly summarize, rewrite, and understand your notes, whether at your desk or on the go. Learn more.
+
### PowerPoint
+
- **Ask Copilot about visuals while in PowerPoint** [Windows, Web]
+
Now you can add an image to your chat with Copilot. You can ask questions about the image, extract text, get a description of a chart, translate information, or generate alt text. This helps you stay in the flow of work while getting necessary information to continue working on your document.
+
+### Viva Pulse
+
+- **Templates for Copilot readiness, adoption and impact** [Windows, Web, Android, iOS, Mac]
+
+ Use new templates to measure employee sentiment and assess your organization's Copilot adoption—all within your Viva Pulse subscription.
+
### Word
+
- **Ask Copilot about visuals while in Word** [Windows, Web]
+
Now you can add an image to your chat with Copilot. You can ask questions about the image, extract text, get a description of a chart, translate information, or generate alt text. This helps you stay in the flow of work while getting necessary information to continue working on your document.
+
## November, 2024
+
### Microsoft 365 Copilot Chat
+
+- **Audit copilot queries leaving the Microsoft 365 boundary**
+
+ Allow admins to track and review copilot-generated queries that access external data, ensuring robust compliance and oversight.
+
- **Admin control over Copilot web search access** [Web]
+
Administrators can now manage user access to web search within Copilot using policies in config.office.com. This provides better control over how users interact with web content through Copilot. Learn more.
+
- **Focus Copilot responses on specific emails in Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Narrow down Copilot responses by specifying a particular email folder, sub-folder, or subject line. Get more precise assistance by directing Copilot to the emails that matter most to you.
+
- **Jumpstart with prebuilt prompts in Microsoft 365 Copilot Chat** [Web]
+
Quickly get started in Microsoft 365 Copilot Chat by exploring and using prebuilt prompts designed to help you maximize productivity from the get-go.
+
- **Save and reuse your favorite prompts in Copilot** [Windows, Web]
+
Easily save your most-used prompts in Microsoft 365 Copilot Chat and Copilot Prompt Gallery website, keeping them at your fingertips for quicker interactions. Learn more.
+
- **Search for meetings with external attendees**
+
Effortlessly find and access meetings that include people from other organizations using the improved search functionality in Microsoft 365 Copilot Chat.
+
- **Share your feedback with in-chat rating in Copilot** [Windows, Web]
+
Easily rate your experience with Copilot's web-grounded chat on a 1-5 scale. Your feedback helps us improve Copilot to better meet your needs.
+
- **Use web-grounded Copilot chat in Teams and Outlook** [Windows, Web]
+
Enhance your Copilot chat in Teams and Outlook with the latest information from the web. Get up-to-date answers and insights directly within your conversations.
+
- **View web queries used by Copilot for greater transparency** [Web]
+
See the exact web queries Copilot sends in response to your prompts, along with the list of websites queried, enhancing your awareness and control over the information process.
+
+### Microsoft 365 Admin Center
+
+- **AI administrator role** [Web]
+
+ Empower designated admins to manage Copilot securely with the new AI administrator role—providing control without full Global admin permissions.
+
+- **Copilot usage report for Business Chat** [Web]
+
+ Monitor usage data for Copilot Business Chat (web and work) directly in the admin center to support adoption and strategic planning.
+
### Excel
+
- **Perform advanced analysis with Python integration** [Windows]
+
Leverage Python within Excel through Copilot to conduct advanced data analysis, unlocking new insights from your data. Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Add image generation to agents** [Windows, Web]
+
Enhance your agents by including image generation capabilities in agent builder Learn more.
+
- **Create agents in Microsoft 365 Copilot via agent builder** [Windows, Web]
+
Use agent builder to create agents that contain specific instructions and knowledge, such as SharePoint files, to suit your needs. Learn more.
+
+### Copilot Prompt Gallery
+
+- **Copilot Prompt Gallery available in Word and PowerPoint on iOS** [iOS]
+
+ Use suggested prompts directly from your Word and PowerPoint apps on iOS to spark creativity and streamline your workflow.
+
+- **Copilot prompt gallery – nonprofit, consumer goods, and mobility prompt collections** [Windows]
+
+ Explore new prompt collections tailored for the nonprofit, consumer goods, and mobility sectors. Enhance your productivity with specialized prompts that fit your industry needs.
+
+### Microsoft Loop
+
+- **Reference documents within loop copilot prompts** [Web]
+
+ Enhance your Loop experience by linking directly to Word, Excel, or PowerPoint files—just add a command to summarize or extract key points from your documents.
+
+### OneNote
+
+- **Copilot chat on Mac** [Mac]
+
+ Transform your note-taking on Mac with natural language commands that help you understand, summarize, and rewrite notes—perfect for meeting prep and creative brainstorming.
+
+### PowerPoint
+
+- **Build a narrative with file-based topics** [Windows, Web, Mac]
+
+ Create compelling presentations by integrating topic suggestions linked to your documents—whether Word files, PDFs, or encrypted docs—for a well-grounded narrative.
+
### Microsoft Teams
+
- **Disable Copilot in meetings** [Windows, Android, iOS, Mac]
+
You can now turn Copilot off in your meeting settings. Copilot, recording, and transcription are disabled for meetings where Copilot is off. Learn more.
+
### SharePoint
+
- **Control site creation permissions with Restricted Site Creation** [Web]
+
Administrators can now manage who can create different types of SharePoint sites. Configure specific user groups with permissions to create Team sites, Communication sites, or all sites, enhancing governance and control. Learn more.
+
- **Manage inactive sites with new lifecycle policies** [Web]
+
SharePoint administrators can now set up policies to detect inactive sites, notify site owners, and automatically archive or set sites to read-only if no action is taken. This helps in managing unused content and optimizing resources. Learn more.
+
- **Site Access Review for scalable governance** [Web]
+
SharePoint administrators can now request site owners to review permissions directly from Data Access Governance reports. This helps in identifying and correcting potential oversharing, enhancing security and compliance. Learn more.
+
- **Use Data Access Governance to analyze permissions and prevent Oversharing** [Web]
+
As a SharePoint admin, you can now leverage Data Access Governance (DAG) to understand your tenant's permission landscape. Generate reports that highlight sites with permissioned users exceeding your specified number to identify potential oversharing. Learn more.
+
+### Viva Glint
+
+- **Summarize survey comments for key insights** [Web]
+
+ Quickly uncover top issues and potential solutions from employee feedback by asking natural language questions—empowering leaders to act on valuable insights.
+
### Word
+
- **Fine-tune rewrite responses in Copilot in Word** [Windows]
+
Customize the output from Copilot's Rewrite feature by specifying how the text should change to better suit your needs. Learn more.
+
- **Reference larger files and write longer prompts with Copilot** [Windows, Web, Mac]
+
Create more detailed drafts by writing prompts over 2,000 characters and referencing files totaling up to 75,000 words. Learn more.
+
## October, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access local files in Microsoft 365 Copilot Chat** [Web]
+
Upload and reference your local files directly within Copilot Chat prompts by using the Local Files button or typing '/', making your interactions more informed and efficient. Learn more.
+
- **Get contextual summaries in Edge sidebar with Microsoft 365 Copilot Chat** [Web]
+
Receive instant contextual summaries directly in the Edge Sidebar while using Microsoft 365 Copilot Chat, helping you quickly grasp information without leaving your browsing experience.
+
- **Solve complex tasks in Copilot chat** [Web]
+
Use Copilot to solve complex math problems, analyze data, generate visualizations, and more in Copilot chat.
+
### Copilot Prompt Gallery
+
- **Expanded industry prompt collections in Copilot Prompt Gallery** [Windows]
+
We have expanded our industry prompt collections in Prompt Gallery with new prompt collections tailored to the nonprofit, consumer goods, and mobility sectors.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 12 additional languages across all features: Bulgarian, Croatian, Estonian, Greek, Indonesian, Latvian, Lithuanian, Romanian, Serbian (Latin), Slovak, Slovenian, and Vietnamese. Microsoft 365 Copilot also improved the handling of language variants: Dutch (Belgium), German (Switzerland), English (UK), Spanish (Mexico), and French (Canada). Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Create agents in Copilot with instructions and knowledge sources** [Windows, Web]
+
Users can build Copilot agents that include specific instructions and knowledge, such as SharePoint files, directly from Copilot Chat using Copilot Studio Agent Builder. Learn more.
+
- **Customize your agent list in Copilot across apps** [Windows, Web]
+
Reorder or remove agents from your agent list, with updates based on your most recently used agents and admin-installed agents, available in Copilot Chat, Microsoft Teams, and Microsoft 365.
+
- **Invoke agents with @mentions across apps** [Windows, Web]
+
Users can now @mention agents to invoke them in-context within Copilot Chat, Word, and PowerPoint, enhancing workflow efficiency. Learn more.
+
- **Start conversations easily with Agent starter prompts** [Windows, Web]
+
Select from conversation starter prompts to begin using an agent quickly and effortlessly. Learn more.
+
### Microsoft Teams
+
- **Empower meeting organizers to adjust Copilot availability** [Windows, Android, iOS, Mac]
+
Admins can now set Copilot in Teams meetings to 'During and After Meeting' and allow meeting organizers to change it. Learn more.
+
### Outlook
+
- **Rewrite selected text in emails using Copilot** [Windows, Web, Android, iOS, Mac]
+
Select specific parts of your drafted email and ask Copilot in new Outlook to rewrite it or provide more information to rewrite it. Provide detailed instructions or adjust the tone and length to suit your needs.
+
### PowerPoint
+
- **Create presentations with new slide types using Copilot** [Windows]
+
When creating a presentation with Copilot, you'll now see agenda, section, and conclusion slides, giving your presentations better structure.
+
- **Custom slideshow of key slides** [Windows]
+
Ask Copilot to show key slides, and you'll have one-click access to play a custom presentation of the most important slides.
+
- **Enhanced creation and editing with Copilot** [Windows]
+
Copilot now offers richer information, elevated visual structures, better images, and more polished layouts when creating or editing your presentations. Learn more.
+
### Viva Insights
+
- **New Microsoft 365 Copilot Chat prompts submitted through Teams** [Windows, iOS, Mac]
+
Adding new Microsoft 365 Copilot Chat prompts submitted through Teams metric to Copilot dashboard and Viva Insights Advanced insights.
+
### Word
+
- **Fine-tune rewrite responses in Copilot in Word** [Mac]
+
Customize the output from Copilot's Rewrite feature by specifying how the text should change to better suit your needs. Learn more.
+
- **Get started on a draft immediately with example prompts** [Web]
+
On blank documents, Copilot in Word offers one-click example prompts to help you get started quickly.
+
- **Reference up to 10 Items when drafting with Copilot** [Windows, Mac]
+
Expand your drafting capabilities by referencing up to 10 items—such as files, emails, and meetings—when using Copilot in Word. Learn more.
+
## September, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access Microsoft 365 Copilot Chat work mode in Microsoft 365 app on mobile** [Android, iOS]
+
Ground your Copilot conversations in your work content with Microsoft 365 Copilot Chat in the Microsoft 365 app.
+
- **Convert Microsoft 365 Copilot Chat conversations into shareable pages** [Web]
+
Transform Microsoft 365 Copilot Chat Copilot responses in work mode into editable and shareable pages, so you can easily access and distribute important information.
+
- **Generate images in Microsoft 365 Copilot Chat** [Web]
+
Create custom images directly within Microsoft 365 Copilot Chat. Using natural language, ask Copilot to generate images. Learn more.
+
- **Get started quicker with grounded prompts** [Windows, Web]
+
Copilot Chat prompt suggestions now include relevant files, people, and meetings to help you get started with grounded prompts. Clicking the prompt card will add the prompt text and related file into the input box where you can select a different file, person, or meeting to fit your needs.
+
### Excel
+
- **Access Copilot from the cell context menu** [Windows, Web]
+
Easily launch Copilot in Excel directly from the cell context menu, streamlining your workflow. Learn more.
+
- **Copilot in Excel is generally available** [Windows, Web, iOS, Mac]
+
Copilot in Excel, now no longer in Preview but Generally Available, works alongside you to analyze and explore your data, answering questions in natural language and revealing insights without the need for complex formulas. Learn more.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Identify suggested candidates for Copilot licensing** [Web]
+
Improve license assignment decisions and maximize Microsoft 365 Copilot adoption. In the Microsoft 365 Copilot usage report readiness section, a new "Suggested Candidates" column helps you assign licenses to users who are most likely to get the most value for Microsoft 365 Copilot, based on factors such as usage of relevant Microsoft 365 apps. Learn more.
+
### Microsoft 365 Copilot
+
- **AI-generated Images with Copilot and Microsoft Designer** [Windows, Web, Mac]
+
Microsoft Designer integration in Copilot chat allows you to generate that perfect image, providing limitless creativity and bringing your presentations to life. Learn more.
+
- **Insert brand-approved images from SharePoint using Copilot** [Windows, Web]
+
Keep your documents and presentations on brand by adding company-approved images directly from your SharePoint organization asset library through Copilot. Learn more.
+
### Microsoft Teams
+
- **Copilot in Teams meetings considers meeting chat** [Windows, Mac]
+
When generating meeting summaries or answering questions, Copilot in Teams will now use the chat and transcript as context, providing more accurate and relevant responses. Learn more.
+
### OneDrive
+
- **Copilot in OneDrive** [Web]
+
Copilot in OneDrive, available on the web, allows you to ask questions and extract information from your files. Get summaries and insights from Word, PDF, PowerPoint, Excel, and text files. Learn more.
+
### Outlook
+
- **Instantly apply coaching suggestions from Copilot to your emails** [Web, Android, iOS, Mac]
+
Improve your email writing with Coaching by Copilot in new Outlook. Request a full rewrite based on Copilot's feedback or apply the suggestions with a single click. Learn more.
+
### PowerPoint
+
- **Create presentations with new slide types using Copilot** [Web, Mac]
+
When creating a presentation with Copilot, you'll now see agenda, section, and conclusion slides, giving your presentations better structure.
+- **Access your organization’s approved images** [Mac]
+
+ Seamlessly connect to your SharePoint asset library to find and add brand-approved images, keeping your presentations and documents consistently on brand.
+
- **Custom slideshow of key slides** [Mac]
+
Ask Copilot to show key slides, and you'll have one-click access to play a custom presentation of the most important slides.
+
- **Improved template support with Copilot** [Windows, Web, Mac]
+
Update your templates to PowerPoint's best practices, and Copilot will generate beautiful, on-brand slides every time you create a presentation. Learn more.
+
### Viva Glint
+
- **View Glint and Pulse survey results in Viva Insights Copilot Dashboard** [Web]
+
Leaders and adoption specialists can now initiate Copilot impact surveys and view the results from Viva Glint or Viva Pulse directly within the Viva Insights Copilot Dashboard. Understand the ROI of deploying Copilot and AI tools in your organization. Learn more.
+
### Viva Insights
+
- **Analyze adoption and impact trends**
+
Adding trendlines to show metric movements over past 6-month time periods, before vs after Copilot comparisons, and providing the option to view an estimated dollar value for the existing Copilot assisted hours metric. Learn more.
+
+- **Delegate access to Copilot Dashboard**
+
+ You can delegate access to your organizational insights or the Copilot Dashboard to other people within your company.
+
+ By granting delegate access, someone else at your company, such as your chief of staff or one of your direct reports, would have the same access you have to the insights. They can view them and operationalize business decisions based on the data.
+
### Viva Learning
+
- **Providing Copilot Academy access to all Microsoft 365 Copilot users** [Web]
+
Microsoft Copilot Academy is now available for all users with a Microsoft 365 Copilot license or any Viva Learning license (premium, suite, or the Microsoft 365-included version). Learn more.
+
### Word
+
- **Easily write a prompt or choose quick actions from the Copilot icon in your Word doc** [Web]
+
The Copilot icon in your document margin now lets you easily write a prompt or choose quick actions, making AI assistance more accessible.
+
- **Reference up to 10 Items when drafting with Copilot** [Web, iOS]
+
Expand your drafting capabilities by referencing up to 10 items—such as files, emails, and meetings—when using Copilot in Word. Learn more.
+
- **Use Copilot to enhance pasted text in Word** [Windows, Mac]
+
Copilot in Word now offers more options when you paste text. Reword content, transform it into tables or lists, and more, making it easier to format and organize your documents efficiently.
+
## August, 2024
+
### Copilot Prompt Gallery
+
- **Copilot Prompt Gallery is now available on iOS and Android** [Android, iOS]
+
Explore and use suggested prompts in Copilot Prompt Gallery within the Teams app on iOS and Android. Stay productive with ready-made prompts to use on the go.
+
- **Try prompts directly from the Copilot Prompt Gallery website** [Windows, Web]
+
Quickly launch suggested prompts from the Copilot Prompt Gallery website in Microsoft 365 Copilot Chat by clicking the "Try in" button on the prompt card.
+
### Excel
+
- **Custom chart and PivotTable creation** [Windows, Web, iOS, Mac]
+
You can now ask Copilot for more specific charts and PivotTables, including specifying the X and Y axes. Customize your data presentations more precisely.
+
- **Formula data summaries from columns** [Windows, Web, iOS, Mac]
+
Add a single formula to summarize column data into one cell. This feature allows you to calculate data across columns and return a single result, simplifying data analysis.
+
- **Suggest conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Ask Copilot to suggest conditional formatting for your data. Receive a list of prompts that might highlight key insights in your data.
+
- **Summarize text columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can analyze columns of text to provide summaries, such as identifying main themes in survey responses. Understand your text data more effectively.
+
### Forms
+
- **Copilot helps students understand quiz solutions** [Web]
+
After submitting quizzes, students can now receive Copilot-assisted explanations for correct and incorrect answers. This feature aids learning by providing detailed solution steps.
+
### Microsoft Teams
+
- **Copilot summarizes content over specified time periods** [Windows, Android, iOS, Mac]
+
Copilot can now identify and summarize information over specific time periods, responding accurately to queries like "yesterday," "last month," or "last year." Learn more.
+
- **Linked files in Copilot replies** [Windows, Android, iOS, Mac]
+
We have optimized Copilot in Microsoft Teams to include linked files in Copilot answers for quicker and more reliable retrieval of files and links, making your experience smoother and more efficient.
+
### Outlook
+
- **Microsoft 365 Copilot Chat in Outlook Mobile** [Android, iOS]
+
The Microsoft 365 Copilot Chat experience is now available in Outlook for iOS and Android. Enhance your mobile email experience with AI-powered assistance on the go.
+
- **Schedule meetings from an email with Copilot in new Outlook** [Windows, Web]
+
Quickly shift from an email thread to a meeting invite by clicking "Schedule with Copilot." Copilot summarizes the conversation, drafts an agenda, and includes key context automatically.
+
### PowerPoint
+
- **Build your story with Narrative Builder** [Windows, Web, iOS, Mac]
+
Copilot helps you form your narrative and turns it into a fully designed presentation, streamlining the creative process.
+
- **Custom slideshow of key slides** [Web]
+
Ask Copilot to show key slides, and you'll have one-click access to play a custom presentation of the most important slides.
+
- **Improved presentation summary richness** [Windows, Web, iOS, Mac]
+
Copilot now leverages the latest GPT models to provide richer summaries when generating presentations, enhancing the quality of your content.
+
### Viva Insights
+
- **Analyze Copilot impact over time** [Windows, Web, Android, iOS, Mac]
+
View trendlines of key productivity metrics over 6 months and estimate the financial value of Copilot-assisted hours. Learn more.
+
### Word
+
- **Document Summaries in Microsoft 365 Mobile App Previews** [iOS]
+
Copilot generates summaries of files that you can view in the file browser of the Microsoft 365 mobile app, helping you understand content without opening the file.
+
## July, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access cloud files via Context IQ in Microsoft 365 Copilot Chat** [Web]
+
Easily include relevant documents in your chats with Context IQ suggestions. Now access "Browse Cloud Files" from the "Attach Cloud Files" button. Learn more.
+
### Excel
+
- **Advanced conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Copilot now supports complex conditional formatting, such as highlighting rows based on multiple criteria. Enhance your data visualization with more formulaic formatting options.
+
- **Improved data insights in Copilot** [Windows, Web, iOS, Mac]
+
Copilot is now better at answering questions about data insights like trends and correlations. Get more meaningful analysis to make informed decisions.
+
- **Preview and apply changes suggested by Copilot** [Windows, Web, iOS, Mac]
+
Before Copilot makes changes to your Excel data, you'll now receive a description and an "Apply" button. This gives you more control over your data and allows for refinements before applying changes.
+
- **Preview conditional formatting rules** [Windows, Web, iOS, Mac]
+
When setting a conditional formatting rule, Copilot's response will include a preview of the style and an explanation of the formula. This helps you understand and apply formatting more confidently.
+
- **Support for data ranges resembling tables** [Windows, Web, iOS, Mac]
+
Copilot can now reason over data ranges with a single row of headers, even if they aren't formatted as formal tables. This makes data analysis more flexible.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Gain visibility into Microsoft 365 Copilot Chat usage** [Web]
+
Access usage metrics for Microsoft 365 Copilot Chat to inform your adoption strategies. Learn more.
+
### Microsoft Loop
+
- **Copilot-Assisted Loop Page Creation** [Web]
+
Collaborate with Copilot to create structured Loop pages quickly. Start from scratch or modify existing pages or templates with AI assistance for efficient teamwork.
+
### PowerPoint
+
- **Create presentations from encrypted Word documents** [Windows, Web, iOS, Mac]
+
Copilot for PowerPoint can now create presentations using Word documents that have a protected sensitivity label, expanding your content creation options securely.
+
- **Easier access to Copilot in PowerPoint** [Windows, Web, iOS, Mac]
+
Access Copilot in PowerPoint more easily with new on-canvas entry points. Start enhancing your presentations with AI assistance in fewer clicks.
+
### Viva Engage
+
- **Viva Engage Copilot Adoption Community** [Web]
+
Kickstart your Copilot adoption journey with a templatized community in Viva Engage. Get setup checklists, suggested content, suggested members, and top Q&A to engage your employees effectively. Learn more.
+
### Viva Insights
+
- **Microsoft Copilot Dashboard powered by Viva Insights** [Windows, Web, Android, iOS, Mac]
+
The Microsoft Copilot Dashboard available to all Microsoft 365 Copilot customers at no extra cost. Access it via the Viva Insights app to monitor Copilot adoption and impact. Learn more.
+
### Word
+
- **Bing search integration brings the power of the web to your chats in Word** [Mac]
+
Ask Copilot a question in Word chat, and Copilot generates an answer using the power of integrated Bing search. And you never have to leave the app.
+
- **Bring the latest from your organization into your Word chats with Microsoft Copilot Graph-grounded search.** [Mac]
+
Bring the latest from your organization into your Word chats with Microsoft Graph-grounded search. Access people-centric data and insights seamlessly.
+
- **Summarize longer documents in chat** [Windows, Web, iOS, Mac]
+
Copilot in Word can now summarize longer documents, with the upper limit increased to about four times more words (approx. 80k words). Get comprehensive overviews of lengthy content.
+
## June, 2024
+
### Microsoft 365 Copilot Chat
+
- **Contextual prompt suggestions in Microsoft 365 Copilot Chat** [Windows]
+
Microsoft 365 Copilot Chat now shows contextual prompt suggestions when you hover over entities like files, events, and people. Quickly access relevant information to enhance your productivity.
+
### Excel
+
- **Copilot works on any selection in Excel** [Windows, Web, iOS, Mac]
+
Copilot now enables the edit box on any worksheet, regardless of selection. It intelligently finds the nearest table or data range for your analysis queries, making data manipulation more flexible.
+
- **Excel Copilot Chat Helper for Your Data Queries** [Web]
+
Get conversational Excel-specific answers to your Excel-related questions with the Copilot chat helper.
+
### Forms
+
- **Copilot helps you draft quizzes and answers** [Web]
+
Teachers and staff can use Copilot in Forms to generate quizzes, including correct answers. Now they can focus more on helping students engage with assessments, icebreakers, and trivia, and less on writing and programming.
+
- **Gather more responses with Copilot suggestions** [Web]
+
Copilot in Forms now suggests the best distribution channels and settings when sending out forms or quizzes. Reach your audience more effectively and increase engagement.
+
### Microsoft Teams
+
- **Admins can enforce Copilot during and after meetings** [Windows, Android, iOS, Mac]
+
Admins can set Copilot in Teams meetings to 'During and After Meeting' and prevent meeting organizers from changing it. Learn more.
+
- **Control access to recordings and transcripts** [Windows, Android, iOS, Mac]
+
Introducing new meeting settings that allow you to control who can access recordings, transcripts, and prompt Copilot. Enhance your meeting security and privacy with these granular controls.
+
- **Intelligent Recap available for Copilot users** [Windows, Mac]
+
Copilot users can now access Intelligent Recap after meetings and calls. Browse recordings by speakers and topics, and access AI-generated meeting notes, action items, and @mentions, all designed to keep you informed.
+
### OneNote
+
- **Access company information via Copilot in OneNote** [Windows]
+
Prompt Copilot in OneNote to get responses from all your company information stored in the Microsoft cloud. Find the data you need without leaving your note-taking app.
+
### Outlook
+
- **Microsoft 365 Copilot Chat in classic Outlook** [Windows]
+
The Microsoft 365 Copilot Chat experience is now available in classic Outlook. Access AI-powered assistance directly from the App Bar on the left to enhance your email productivity.
+
### PowerPoint
+
- **Copilot adds transitions and animations automatically** [Windows, Web, iOS, Mac]
+
When creating presentations from prompts or files, Copilot will now automatically add transitions and animations. This enhancement brings your slides to life without extra effort.
+
- **Create presentations from PDF files with Copilot** [Windows, Web, iOS]
+
You can now generate PowerPoint presentations directly from PDF files using Copilot. This feature simplifies the process of turning documents into engaging presentations.
+
- **Improved content when creating presentations from prompts** [Windows, Web, iOS, Mac]
+
Experience increased depth and richness of content when you create a presentation from a prompt. Copilot now provides better formatting and more detailed slides to enhance your presentations.
+
### Viva Amplify
+
- **Copilot deployment kit now in Viva Amplify** [Web]
+
Prepare and launch Copilot in your organization effortlessly using the new deployment kit in Viva Amplify. Access pre-written and formatted publications to educate users on Copilot features and develop their AI skills, ensuring a smooth rollout. Learn more.
+
+### Viva Insights
+
+- **Specific date ranges on Copilot Dashboard**
+
+ In the Copilot Dashboard you will now see a specific date range identified in the upper right corner to clarify the measurement timeframe. This date range reflects a trailing 28 day period and is not configurable. For a custom date range analysis, use analyst workbench. Learn more.
+
### Word
+
- **Find the perfect visual with Copilot + Designer in Word** [Windows, Web, Mac]
+
Enhance your documents with AI-generated images using the new integration of Microsoft Designer in Copilot Chat. Also search for stock images and brand assets to bring your content to life seamlessly.
+
- **Use a url to reference supported files in Copilot in Word** [iOS]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
- **Use Draft with Copilot in Word based on text, list, or table selection** [Windows, Mac]
+
Use Draft with Copilot in Word with the on-canvas Copilot menu when a user selects text, a list, or a table, which generates new content from Copilot and provides a richer, more interactive experience.
+
- **Visualize as table** [iOS]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling.
+
## May, 2024
+
### Microsoft 365 Copilot Chat
+
- **Enhanced Reference visibility in Microsoft 365 Copilot Chat** [Windows]
+
References in Microsoft 365 Copilot Chat responses are now unfurled by default at the bottom of each reply. This improvement increases transparency and makes it easier to discover the sources behind Copilot responses.
+
- **Grounding suggestions when pasting cloud file URLs in Microsoft 365 Copilot Chat** [Web]
+
When you paste file URLs as references in your prompts, Microsoft 365 Copilot Chat now informs you about inline referencing via Context IQ. Access Context IQ in chat using "/" or the "Attach Clip" option to enhance your interactions.
+
- **Proactive file suggestions for enhanced grounding in Microsoft 365 Copilot Chat** [Web]
+
Microsoft 365 Copilot Chat now proactively informs you about grounding opportunities when typing prompts. Highlighted text and file data source insertions help you create more effective and context-rich prompts.
+
### Copilot Prompt Gallery
+
- **Explore curated prompt collections for various roles and industries in Copilot Prompt Gallery** [Windows, Web]
+
Discover and filter through a curated collection of Microsoft-authored prompts tailored for Marketing, HR, Finance, Retail, and Manufacturing roles. These prompts help you get the most out of Copilot with prompts tailored to your role or industry.
+
### Microsoft Loop
+
- **Use Copilot in Loop components across Teams and Outlook** [Web]
+
People with a Copilot license can now leverage Copilot in Loop when they paste Loop components into Teams, Outlook, and Meeting Notes.
+
### Microsoft Teams
+
- **Copilot notification in unrecorded meetings** [Windows, Android, iOS, Mac]
+
When Copilot is started in a meeting that isn't being recorded, every participant is notified that Copilot is active.
+
### Outlook
+
- **Microsoft 365 Copilot Chat available in new Outlook for Windows and web** [Windows, Web, Android, iOS]
+
Access the power of Microsoft 365 Copilot Chat directly within Outlook on the web and the new Outlook for Windows. Access Microsoft 365 Copilot Chat through the left app bar.
+
### SharePoint
+
- **Introducing Restricted SharePoint Search for Copilot** [Web]
+
Administrators can now enable Restricted SharePoint Search to disable organization-wide search and select up to 100 specific SharePoint sites accessible in search and Copilot experiences. Users will still interact with their OneDrive content in Copilot, balancing accessibility and security.
+
- **Monitor configuration changes with change history reports**
+
Administrators can now create custom reports to track changes made to SharePoint configurations across your organization. Review detailed CSV reports of site actions and organizational setting changes from the past 180 days to ensure compliance and maintain oversight.
+
### Word
+
- **Use a url to reference supported files in Copilot in Word** [Windows, Mac]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
- **Use Copilot to enhance pasted text in Word** [Web]
+
Copilot in Word now offers more options when you paste text. Reword content, transform it into tables or lists, and more, making it easier to format and organize your documents efficiently.
+
- **Use Draft with Copilot in Word based on text, list, or table selection** [Web]
+
Use Draft with Copilot in Word with the on-canvas Copilot menu when a user selects text, a list, or a table, which generates new content from Copilot and provides a richer, more interactive experience.
+
## April, 2024
+
### Microsoft 365 Copilot Chat
+
- **Microsoft 365 Copilot Chat now available in the Microsoft 365 app** [Android, iOS]
+
Microsoft 365 mobile app users with a Microsoft 365 Copilot license can receive answers grounded in their organizational Graph data, enhancing mobile productivity.
+
- **Use file links to reference files in your prompts** [Windows, Web]
+
Easily refer to files in your Copilot Chat prompts by pasting their URL links, streamlining your workflow and saving time.
+
### Excel
+
- **Create Formula Columns Using Data from Multiple Tables** [Windows, Web, iOS, Mac]
+
Support for functions like XLOOKUP and SUMIF allows you to create formula columns that utilize data across multiple tables.
+
- **Generate multiple formula columns with a single prompt** [Windows, Web, iOS, Mac]
+
Use Copilot in Excel to create several formula-based columns at once. For example, ask Copilot to split a full name into first and last name columns, and watch it generate both formulas in one go.
+
### Forms
+
- **Copilot helps you rewrite and extend your forms** [Web]
+
Beyond drafting from scratch, Copilot in Forms can now assist you in rewriting titles, descriptions, or questions, and adding more content to your surveys.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 17 additional languages across all features: Arabic, Chinese (Traditional), Czech, Danish, Dutch, Finnish, Hebrew, Hungarian, Korean, Norwegian (Bokmal), Polish, Portuguese (Portugal), Russian, Swedish, Thai, Turkish, and Ukrainian. Learn more.
+
- **Microsoft 365 Copilot Data Residency Commitments** [Web]
+
We have added new commitments covering stored content of interactions with Microsoft 365 Copilot to existing data residency commitments, enhancing data compliance.
+
### Microsoft Loop
+
- **Access Copilot in Loop easily from the right side of the page** [Web]
+
We have added an entry point on the right side of the page to make Loop Copilot's Draft and Rewrite capabilities more accessible.
+
### Microsoft Stream
+
- **Quickly summarize videos with Copilot in Stream** [Web]
+
Copilot in Stream uses AI to help you get insights from videos, allowing you to summarize content or ask in-depth questions efficiently. Learn more.
+
### Microsoft Teams
+
- **Copilot understands previous conversations in chats and channels** [Windows, Android, iOS, Mac]
+
When you ask follow-up questions in chats or channels, Copilot now has context from past interactions to provide more accurate answers.
+
### OneDrive
+
- **Share Word documents with AI-generated summaries** [Web]
+
Users can now include an AI-generated summary when sharing Word documents, helping recipients understand content quickly and collaborate efficiently.
+
### OneNote
+
- **Use Copilot with your handwritten notes** [Windows]
+
Copilot in OneNote now supports inked notes, allowing you to summarize, rewrite, or generate to-do lists from your handwritten content.
+
### Outlook
+
- **Control the 'Summary by Copilot' banner in new Outlook** [Web]
+
You can now choose to show or hide the 'Summary by Copilot' banner in your emails for a personalized experience.
+
- **Copilot chat now available in new Outlook** [Windows, Web]
+
Access Copilot chat within Outlook to type and receive responses while managing your emails, all in a convenient side panel.
+
- **Draft Emails with Copilot in Classic Outlook for Windows** [Windows]
+
Copilot combines the power of AI and Outlook data to help you draft new messages or replies effortlessly.
+
### SharePoint
+
- **Advanced tenant rename in SharePoint Advanced Management** [Web]
+
Change your SharePoint domain with greater control, including prioritizing up to 4,000 sites for early execution and supporting tenants with up to 100,000 sites. Learn more.
+
- **Restricted Access Control** [Web]
+
Control permissions of sensitive data by restricting SharePoint sites and OneDrive's access to specific users and their corresponding Copilot. Learn more.
+
### Viva Engage
+
- **Copilot in Viva Engage enhances communication and connection** [Web]
+
Copilot in Viva Engage helps you catch up on what's happening in your network and write engaging communications that support your goals.
+
### Whiteboard
+
- **Discover Whiteboard Copilot with First Run Experience** [Windows, Web]
+
First-time users will be guided to discover and leverage the power of Whiteboard Copilot features through an interactive introduction.
+
### Word
+
- **Bing search integration brings the power of the web to your chats in Word** [Windows, Web]
+
Ask Copilot a question in Word chat, and Copilot generates an answer using the power of integrated Bing search. And you never have to leave the app.
+
- **Bring the latest from your organization into your Word chats with Microsoft Copilot Graph-grounded search.** [Windows, Web]
+
Bring the latest from your organization into your Word chats with Microsoft Graph-grounded search, enhancing the power of Copilot.
+
- **Draft with Copilot supports referencing files encrypted with sensitivity labels** [Windows, Web, Mac]
+
Draft with Copilot now allows you to reference files encrypted with sensitivity labels, ensuring secure document creation.
+
- **Fine-tune rewrite responses in Copilot in Word** [Web]
+
Customize the output from Copilot's Rewrite feature by specifying how the text should change to better suit your needs.
+
- **Use a url to reference supported files in Copilot in Word** [Web]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
## March, 2024
+
### Microsoft 365 Copilot Chat
+
- **Rich entity representations in Copilot responses** [Windows, Web, Android, iOS, Mac]
+
Copilot now provides richer representations of entities like people, events, and files within responses, enhancing context and usability.
+
### Excel
+
- **Enable Copilot in Excel by saving files to OneDrive or SharePoint** [Windows, Mac]
+
To use Copilot in Excel, save your files to OneDrive or SharePoint with AutoSave on. You'll receive prompts to help you set this up if needed.
+
- **Speak to Copilot in Excel with new input methods** [Windows, Web, iOS, Mac]
+
You can now use your microphone to send prompts to Copilot in Excel, and explore the Prompt Guide for customized suggestions.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Send Copilot welcome emails when assigning licenses to users** [Web]
+
Help users get started with Copilot faster. When assigning Microsoft 365 Copilot licenses, you can now send users a welcome email containing helpful resources and tips to maximize their Copilot experience.
+
### Microsoft Teams
+
- **Customize your draft message when you compose with Copilot** [Windows, Android, iOS, Mac]
+
You can now instruct Copilot to adjust your draft message however you'd like. Adjust the message with a custom prompt, like "add a call to action" or "make it persuasive". Learn more.
+
- **Enhanced Copilot UI with new date dividers** [Windows, Android, iOS, Mac]
+
We have improved the Copilot user interface with new date dividers for chats, channels, and meeting Copilot.
+
### Viva Insights
+
- **Analyze Copilot metrics with flexible queries in Analyst Workbench**
+
Use the Analyst Workbench to perform flexible Copilot queries on metrics, providing deeper insights into AI usage.
+
### Word
+
- **Share Word documents with AI summaries** [Web]
+
Include an AI-generated document summary when sharing Word documents. Recipients get a rich preview, aiding quicker understanding and collaboration.
+
## February, 2024
+
### Forms
+
- **Create and customize Forms quickly with Copilot** [Web]
+
Use natural language to describe the form you need, and Copilot will generate it for you. Copilot can also help you customize your form with a theme or apply response settings, to help drive engagement from your audience.
+
### Microsoft Teams
+
- **Copilot side pane stays open across group chats** [Windows, Mac]
+
When you open Copilot in a group chat, it will remain open even as you navigate between different chats, saving you time.
+
### Outlook
+
- **Get Coaching from Copilot for an email draft in Classic Outlook for Windows** [Windows]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness.
+
### Word
+
- **Summarize your document using chat prompts** [iOS]
+
Ask via chat to summarize your document, highlighting key points for quick understanding and review.
+
## January, 2024
+
### Excel
+
- **Enjoy conversational Copilot in Excel** [Windows, Web, iOS, Mac]
+
Copilot in Excel now remembers the context of your chats, allowing for follow-up questions and clarifications for a smoother experience.
+
### Microsoft Purview
+
- **Communication Compliance-Detect Microsoft 365 Copilot interactions template** [Web]
+
Communication Compliance is introducing a new template dedicated to analyzing all Microsoft 365 Copilot prompts and responses, to help ensure content prohibited by customers' policies, such as harassing or threatening language, isn't being used Microsoft 365 interfaces. This scales Communication Compliance's reach, consistent with Microsoft 365's expanding interfaces. In addition, administrators are also able to select Copilot chats as a checked location in the policy creation wizard for any new or existing policies. This empowers administrators to fine-tune their management strategy precisely to their organization's needs, with a focus on user privacy protection. Whether it's setting specific conditions or deploying trainable classifiers, this feature provides flexibility and adaptability in compliance management, ensuring your organization's communications remain secure, compliant, and respectful of user privacy.
+
### Word
+
- **Get answers and enhance content with chat in Word** [iOS]
+
Ask specific questions about your document or request additional details to enhance your content, making your writing process more efficient.
+
- **Visualize as table** [Windows]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling.
+
## December, 2023
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Track Copilot readiness and usage across Microsoft 365** [Web]
+
Easily assess your organization's technical eligibility, license assignment, and active usage of Microsoft 365 Copilot. Understand which apps drive engagement, monitor trends over time, and use these insights to guide licensing and adoption strategy decisions. Learn more.
+
### Word
+
- **Visualize as table** [Mac]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling. Learn more.
+
## November, 2023
+
### Microsoft 365 Copilot Chat
+
- **Access Microsoft 365 Copilot Chat on Microsoft365.com** [Windows, Web]
+
Use Microsoft 365 Copilot Chat directly from microsoft365.com/chat, providing a unified experience across platforms. Learn more.
+
- **Extend Microsoft 365 Copilot Chat to third-party connectors** [Windows]
+
Support for retrieval and synthesis of content from enabled third-party Graph connectors is now available.
+
- **Insert entities into prompts in Microsoft 365 Copilot Chat** [Windows, Web]
+
Use '/' to add entities in prompts submitted to Copilot, focusing responses on the most relevant information. Learn more.
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Mac]
+
Your single destination to take on any task, combining AI power with your work content to draft content, catch up, and get answers. Learn more.
+
### Excel
+
- **Add formula columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot provides formula suggestions with explanations, helping you create new columns based on your data. Learn more.
+
- **Generate data insights with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can suggest insights like summaries, trends, and outliers, returning results as charts or PivotTables to enhance your analysis. Learn more.
+
- **Use Copilot to highlight, filter, and sort data in Excel tables** [Windows, Web, iOS, Mac]
+
Transform your data by asking Copilot to format your Excel tables. You can highlight top values, filter specific entries, or sort data. For example, ask Copilot to highlight the top 3 values in a column, and it will apply conditional formatting. Learn more.
+
### Microsoft Loop
+
- **Collaborate with Copilot in Loop** [Web]
+
Work together with Copilot and your team to create content, generate ideas, and refine results collaboratively. Learn more.
+
- **Enjoy richer Copilot in Loop outputs with formatting and tables** [Web]
+
Copilot can now produce results with rich formatting, including headings and tables, for more organized content.
+
- **Experience visual updates to the Copilot Block** [Web]
+
The Copilot Block now blends more naturally into your page, with AI interactions happening in the right margin.
+
- **Generate Page Summaries with Copilot in Loop** [Web]
+
Insert a 'Page Summary' component to have Copilot summarize the content on your current Loop page. Learn more.
+
- **Get insights from your current page content** [Web]
+
Copilot can answer questions based on the content on your current Loop page, providing summaries and analyses. Learn more.
+
- **Rewrite existing content with Copilot** [Web]
+
Leverage Copilot to help rewrite, supplement, or gain insights from content that already exists in Loop. Learn more.
+
- **See when teammates are editing prompts** [Web]
+
Loop Copilot now indicates when a teammate is actively writing or refining a prompt, enhancing collaboration. Learn more.
+
- **Summarize and share changes with your team** [Web]
+
Use the Recap experience to have Copilot generate a summary of your changes and share it with your team. Learn more.
+
### Microsoft Purview
+
- **Microsoft Purview capabilities for Microsoft 365 Copilot** [Web]
- Microsoft Purview is launching several capabilities that help with security and compliance of data in Microsoft 365 Copilot. These are capabilities in Information Protection, Data Lifecycle Management, Audit, eDiscovery, and Communication Compliance.
+
+ Microsoft Purview is launching several capabilities that help with security and compliance of data in Microsoft 365 Copilot. These are capabilities in Information Protection, Data Lifecycle Management, Audit, eDiscovery, and Communication Compliance.
+
### Microsoft Teams
+
- **Copilot available in a channel post conversation** [Windows, Web, Android, iOS, Mac]
+
Copilot can summarize and support Q&A on a channel post conversation, assisting you directly in your channel conversations.
+
- **Copilot to summarize and answer Q&A in Teams Chat** [Windows, Web, Android, iOS, Mac]
+
Copilot helps you catch up on conversations by providing summaries and answering questions in Teams chats.
+
- **Use Copilot in meetings, 1:1 and group calls** [Windows, Web, Android, iOS, Mac]
+
Get summaries, action items, and more after meetings and calls through Copilot in the side panel.
+
### OneNote
+
- **Access powerful AI tools in the new OneNote pane** [Windows]
+
Use the new pane to summarize key points, extract insights and to-do lists, generate ideas, and rewrite your text for improved clarity and tone. Learn more.
+
### Outlook
+
- **Compose emails effortlessly on Outlook for Android and iOS** [Android, iOS]
+
Provide a prompt and generate a full email. Customize the tone and length to suit your needs, streamlining your email writing process. Learn more.
+
- **Draft emails with Copilot in new Outlook** [Windows, Web, Mac]
+
Use Copilot to draft new emails from prompts, adjust length and tone, and even select parts of an email and use Copilot to rewrite those specific sections effortlessly. Learn more.
+
- **Get Coaching from Copilot for an email draft in new Outlook** [Web, Android, iOS, Mac]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness. Learn more.
+
- **Get quick summaries of email threads in new Outlook** [Web]
+
Receive concise summaries of email conversations, helping you stay informed without reading every message. Learn more.
+
- **Meeting Recap in Calendar** [Windows, Web]
+
After a meeting ends, open the event from your calendar in the new Outlook to view the meeting summary, mentions, tasks, and more, helping you catch up and collaborate asynchronously.
+
- **Summarize email conversations on Outlook for Android and iOS** [Android, iOS]
+
Quickly get summaries of entire email threads, helping you catch up on conversations efficiently. Learn more.
+
- **Summarize email threads in Classic Outlook for Windows** [Windows]
+
Summarize email conversations, extract key points, and receive recommended actions, enhancing your productivity. Learn more.
+
### PowerPoint
+
- **Automatically add an agenda slide to your presentation** [Windows, Web, iOS, Mac]
+
Generate and insert an agenda slide based on your existing content, helping you prepare your audience for what's ahead.
+
- **Convert Word documents into presentations** [Windows, iOS, Mac]
+
Transform your Word documents into fully designed PowerPoint presentations, simplifying the creation process. Learn more.
+
- **Create a presentation from a simple prompt** [Windows, Web, iOS, Mac]
+
Provide a prompt and Copilot will help you generate a presentation, saving you time and effort Learn more.
+
- **Create presentations using your organization's templates** [Windows, Web, iOS, Mac]
+
Generate presentations that utilize your company's templates, ensuring consistency and alignment with your brand. Learn more.
+
- **Edit your presentation in Copilot chat** [Windows, Web, iOS, Mac]
+
Add slides, add animations, or organize your presentation in Copilot chat, streamlining your editing process. Learn more.
+
- **Get answers about your presentation** [Windows, Web, iOS, Mac]
+
Ask questions about your existing PowerPoint presentation to quickly retrieve information and insights.
+
- **Organize your presentation's flow easily** [Windows, Web, iOS, Mac]
+
Structure your slides, add sections, and insert an agenda slide to improve the overall flow of your presentation. Learn more.
+
- **Summarize your presentation and identify key points** [Windows, Web, iOS, Mac]
+
Generate summaries, highlight key slides, and identify action items from your presentation, making it easier to review and share essential information. Learn more.
+
### Whiteboard
+
- **Generate ideas effortlessly** [Windows, Web, Android, iOS]
+
Brainstorm by generating short text ideas, fueling your creativity during collaborative sessions.
+
- **Organize your ideas into themes** [Windows, Web, Android, iOS]
+
Categorize and group your ideas into themes, helping you visualize and structure your brainstorming sessions.
+
- **Summarize your Whiteboard sessions** [Windows, Web, Android, iOS]
+
Create summaries of your Whiteboard content, capturing key points from your collaborative work.
+
### Word
+
- **Apply highest sensitivity label to generated content** [Windows, Web, iOS, Mac]
+
Ensure your documents maintain appropriate confidentiality levels as labels are automatically updated when referencing files with higher sensitivity.
+
- **Draft with Copilot** [Windows, Web, iOS, Mac]
+
Draft new content for your blank or existing documents, helping you write faster and with ease. Learn more.
+
- **Get answers and enhance content with chat in Word** [Windows, Web, Mac]
+
Ask specific questions about your document or request additional details to enhance your content, making your writing process more efficient. Learn more.
+
- **Rewrite with Copilot** [Windows, Web, iOS, Mac]
+
Get suggestions for how to rewrite any text in your document, enhancing clarity and effectiveness. Learn more.
+
- **Summarize your document using chat prompts** [Windows, Web, Mac]
+
Ask via chat to summarize your document, highlighting key points for quick understanding and review. Learn more.
+
- **Use chat in Word's Viewing mode** [Windows, Mac]
+
Access chat while in Viewing mode to ask questions about the document's content without switching to Editing mode, improving your reading experience. Learn more.
+
- **Use voice prompts for assistance** [Windows, Web, Mac]
+
Use voice to dictate into the Copilot chat prompt field
+
- **Visualize as table** [Web]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling. Learn more.
## [Windows](#tab/win)
-
+
+## April 2, 2025
+Updates released between March 20, 2025, and April 2, 2025.
+### PowerPoint
+- **Translate your presentation** [Windows, Web, Mac]
+
+ Produce a translated copy of your entire presentation in about 40 languages while preserving your slide design and structure, making global collaboration effortless.
+ Learn more.
+
+
+## March 19, 2025
+
+Updates released between March 5, 2025, and March 19, 2025.
+
+### Microsoft 365 Copilot Chat
+
+- **Prompt suggestions in Copilot chat** [Windows, Web, Mac]
+
+ Get started in Copilot chat quickly with automatic prompt suggestions that enhance your productivity by providing relevant and context-aware prompts based on your previous interactions.
+
+### Microsoft 365 Copilot Extensibility
+
+- **Support for message extension and declarative agents** [Windows, Web]
+
+ Transform legacy plugins into integrated experiences by exposing them as declarative agents—enhance Office apps like Word, Excel, and PowerPoint with message extensions.
+
+### OneNote
+
+- **Support image input in OneNote chat** [Windows]
+
+ Ask Copilot to analyze image input and organize your notebook pages by detecting themes and topics. Quickly group pages and update your Notebook structure with a simple click.
+
+### Copilot Prompt Gallery
+
+- **Share a Copilot prompt with a Teams team** [Windows, Web]
+
+ Easily share custom prompts from the Copilot Prompt Gallery with your Microsoft Teams team. This streamlined sharing makes it simple for team members to discover and make the most of these prompts in their daily workflow. Learn more.
+
## March 4, 2025
-Updates released between February 19, 2025, and March 4, 2025.
+
+Updates released between February 20, 2025, and March 4, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Search archived mailboxes in Copilot Chat** [Windows, Web, Android, iOS, Mac]
- Leverage Copilot to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in my archives' in your prompts to quickly locate key messages.
+
+ Leverage Copilot to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in archives' in your prompts to quickly locate key messages.
+
### PowerPoint
+
- **Add speaker notes to all slides with one command** [Windows]
+
Speed up your presentation creation by having Copilot automatically add speaker notes to every slide, getting your narrative draft ready in a flash. Learn more.
+
- **Narrative builder creates slides with tables** [Windows, Web, Mac]
+
Convert grounded content from Word documents into dynamic slides with tables. Enhance your presentations with structured, data-driven visuals effortlessly.
+
## February 19, 2025
+
Updates released between February 5, 2025, and February 19, 2025.
+
+### Excel
+
+- **Get powerful insights with python** [Windows]
+
+ Explore your data naturally with advanced analysis that leverages Python—no expert coding needed to uncover trends and create dynamic visualizations.
+
### Microsoft Teams
+
- **Intelligent meeting recap for instant meetings (premium)** [Windows, Mac]
+
Effortlessly browse meeting recordings by speaker and topic and access AI-generated notes, tasks, and mentions for instant meetings—empowering premium Copilot users with comprehensive insights. Learn more.
+
### OneNote
+
- **Enhance note-taking with iterative content proposals** [Windows]
+
Refine your notes on the fly by iterating prompts and reviewing alternate drafts, giving you a dynamic, customizable note-taking experience. Learn more.
+
- **Take notes with Copilot directly in the flow from the canvas** [Windows]
+
Seamlessly gather and create notes right on your page with Copilot integrated into your personal OneNote notebook, making in-flow note-taking more intuitive. Learn more.
+
### PowerPoint
+
- **Create a presentation from a file-based prompt** [Windows, Web, Mac]
+
Pull key facts and data from a selected file to shape your narrative. Simply provide Copilot with a prompt and quickly build your deck with relevant information. Learn more.
+
### Viva Insights
+
- **Copilot dashboard for usage and retention insights** [Windows, Web, Android, iOS, Mac]
+
Dive into usage frequency, compare top user groups, and track retention metrics—all in a single, comprehensive dashboard for actionable insights. Learn more.
+
### Word
+
- **Chat with Copilot about selected text** [Windows, Web, Mac]
+
Highlight text, start a chat with Copilot, and receive responses tailored to what you’ve selected. Get targeted writing assistance and refine your content in real time.
+
## February 4, 2025
+
Updates released between January 24, 2025, and February 4, 2025.
+
### Microsoft 365 Copilot App
+
- **Updates to the Microsoft 365 (Office) app** [Windows, Web, Android, iOS]
+
The Microsoft 365 Copilot app (formerly Microsoft 365 app) has a new name and icon. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Access support pages in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
View organizational support pages directly within Copilot Chat, for quick help and guidance in your workflow.
+
- **Accommodate user’s time zones in Copilot** [Windows, Web, Android, iOS]
+
Copilot now references your local time zone when responding helping to avoid confusion and scheduling errors.
+
- **Charts, graphs, and data analysis in Copilot for Microsoft 365** [Windows, Web]
+
Use natural language to create charts, graphs, and data analysis in Copilot Chat work mode.
+
### Microsoft Teams
+
- **Speaker recognition and attribution in BYOD rooms with Copilot** [Windows, Mac]
+
Take advantage of speaker recognition and transcript attribution, unleashing new AI capabilities in any meeting space, whether or not it has a Teams Rooms system deployed. This feature identifies and attributes people in live transcripts, utilizing a unique voice profile for each participant enabling intelligent recaps and unlocking maximum value from Microsoft 365 Copilot in Teams meetings. Users can easily and securely enroll their voices via Teams Settings. This feature requires a Microsoft 365 Copilot or Teams Premium license for the user hosting the meeting for Copilot experiences and intelligent recaps, respectively. Learn more.
-### Prompt Gallery
+
+### Copilot Prompt Gallery
+
- **Share a prompt with a co-worker** [Windows, Web]
+
Easily create, save, and share your favorite prompts using Copilot Prompt Gallery, inspiring your co-workers to achieve more with Copilot. Learn more.
+
### Word
+
- **Reference data from the Microsoft cloud when drafting with Copilot in Word** [Windows, Web, Mac]
+
Draft with Copilot now supports attaching rich content from the Microsoft cloud—including emails and meetings—resulting in more contextually relevant content. Learn more.
+
- **Reference plain text files in Copilot** [Windows, Web, Mac]
+
Add .txt files as sources with Copilot in Word, streamlining your process when working with text-based research or background content.
+
## January 23, 2025
+
Updates released between January 8, 2025, and January 23, 2025.
### Microsoft 365 Copilot Chat
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS]
+
Microsoft 365 Copilot Chat—free, secure AI chat powered by GPT-4o with agents accessible right in chat, and IT controls including enterprise data protection and agent management. Copilot Chat serves as a powerful new on-ramp for everyone in your organization to build an AI habit. Get started with Copilot Chat with the updated Microsoft 365 Copilot app (formerly Microsoft 365 app). Learn more.
+
- **Updated Copilot Chat responses UI** [Windows]
+
Enjoy a more intuitive Copilot experience with streamlined message boundaries, refined message count alerts, and a clearly positioned security badge for higher trust and transparency.
+
- **Updated meeting entity card in Copilot Chat** [Windows, Web]
+
Check meeting details like RSVP status, date, and attachments without switching contexts in Copilot Chat.
+
+### Microsoft 365 Copilot App
+
+- **Control auto-start behavior on windows** [Windows]
+
+ Adjust Windows settings to let users auto-launch the M365 app upon login, while giving admins the option to enforce group policy controls for enterprise needs.
+
+- **Keep the app running in the background** [Windows]
+
+ Enable the setting to keep the app active as a background process after closing, ensuring faster subsequent launches without a full reload.
+
### PowerPoint
+
- **Generate summaries for longer presentations** [Windows, Web, Mac]
+
Copilot now supports text summaries up to 40k words (around 150 slides), giving you richer information and more polished layouts. Learn more.
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
### Viva Insights
+
- **New Copilot adoption metrics and completing total actions taken** [Windows, iOS, Mac]
+
This adds seven new Copilot adoption metrics to the Copilot dashboard and Viva Insights Advanced insights. It also updates the "total actions taken" metric in the Copilot dashboard to include these new Copilot adoption metrics. Learn more.
+
### Word
+
- **Get started on a draft immediately with example prompts** [Windows, Mac]
+
On blank documents, Copilot in Word offers one-click example prompts to help you get started quickly. Learn more.
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Web, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
## January 7, 2025
-### Microsoft 365 Copilot extensibility
+
+Updates released between December 18, 2024, and January 7, 2025.
+### Microsoft 365 Copilot Extensibility
+
- **Include Code Interpreter in agents** [Windows, Web]
+
Enhance your agents by including Code Interpreter for advanced data analysis tasks in agent builder. Learn more.
+
### OneNote
+
- **Use Copilot quick actions in OneNote: Rewrite, Summarize, and Create To-Dos** [Windows]
+
Enhance your notes by using Copilot directly on the OneNote canvas. Instantly generate summaries, create to-do lists, or rewrite selected content within your notes. Learn more.
+
### Outlook
+
- **Schedule meetings with Copilot chat in Outlook** [Windows, Web]
+
Save time and streamline your day by asking Copilot to schedule meetings for you in Outlook. Whether it's a 1:1 or focus time, Copilot will find the best available time slots with ease. Learn more.
+
### Viva Insights
+
- **Expand your understanding of Copilot adoption with enhanced metrics** [Windows, iOS, Mac]
+
Access seven new Copilot metrics and see them reflected in "total actions taken," helping you better track how teams use Copilot. Learn more.
+
- **New metrics for enterprise data-protected prompts** [Windows, Web, Android, iOS, Mac]
+
Gain visibility into prompts submitted through Microsoft 365 Copilot Chat (web) and enterprise data-protected Copilot scenarios. Learn more.
+
## December 17, 2024
+
### Microsoft 365 Copilot
+
- **Microsoft 365 Copilot GCC general availability** [Windows, Web]
+
Your AI assistant for work in the GCC (Government Community Cloud) environment. It combines the power of large language models (LLMs) with your work content and context, to help you draft and rewrite, summarize and organize, catch up on what you missed, and get answers to questions via prompts. Learn more.
+
### PowerPoint
+
- **Ask Copilot about visuals while in PowerPoint** [Windows, Web]
+
Now you can add an image to your chat with Copilot. You can ask questions about the image, extract text, get a description of a chart, translate information, or generate alt text. This helps you stay in the flow of work while getting necessary information to continue working on your document.
+
+### Viva Pulse
+
+- **Templates for Copilot readiness, adoption and impact** [Windows, Web, Android, iOS, Mac]
+
+ Use new templates to measure employee sentiment and assess your organization's Copilot adoption—all within your Viva Pulse subscription.
+
### Word
+
- **Ask Copilot about visuals while in Word** [Windows, Web]
+
Now you can add an image to your chat with Copilot. You can ask questions about the image, extract text, get a description of a chart, translate information, or generate alt text. This helps you stay in the flow of work while getting necessary information to continue working on your document.
+
## November, 2024
+
### Microsoft 365 Copilot Chat
+
- **Focus Copilot responses on specific emails in Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Narrow down Copilot responses by specifying a particular email folder, sub-folder, or subject line. Get more precise assistance by directing Copilot to the emails that matter most to you.
+
- **Save and reuse your favorite prompts in Copilot** [Windows, Web]
+
Easily save your most-used prompts in Microsoft 365 Copilot Chat and Copilot Prompt Gallery website, keeping them at your fingertips for quicker interactions. Learn more.
+
- **Share your feedback with in-chat rating in Copilot** [Windows, Web]
+
Easily rate your experience with Copilot's web-grounded chat on a 1-5 scale. Your feedback helps us improve Copilot to better meet your needs.
+
- **Use web-grounded Copilot chat in Teams and Outlook** [Windows, Web]
+
Enhance your Copilot chat in Teams and Outlook with the latest information from the web. Get up-to-date answers and insights directly within your conversations.
+
### Excel
+
- **Perform advanced analysis with Python integration** [Windows]
+
Leverage Python within Excel through Copilot to conduct advanced data analysis, unlocking new insights from your data. Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Add image generation to agents** [Windows, Web]
+
Enhance your agents by including image generation capabilities in agent builder Learn more.
+
- **Create agents in Microsoft 365 Copilot via agent builder** [Windows, Web]
+
Use agent builder to create agents that contain specific instructions and knowledge, such as SharePoint files, to suit your needs. Learn more.
+
+### PowerPoint
+
+- **Build a narrative with file-based topics** [Windows, Web, Mac]
+
+ Create compelling presentations by integrating topic suggestions linked to your documents—whether Word files, PDFs, or encrypted docs—for a well-grounded narrative.
+
+### Copilot Prompt Gallery
+
+- **Copilot prompt gallery – nonprofit, consumer goods, and mobility prompt collections** [Windows]
+
+ Explore new prompt collections tailored for the nonprofit, consumer goods, and mobility sectors. Enhance your productivity with specialized prompts that fit your industry needs.
+
### Microsoft Teams
+
- **Disable Copilot in meetings** [Windows, Android, iOS, Mac]
+
You can now turn Copilot off in your meeting settings. Copilot, recording, and transcription are disabled for meetings where Copilot is off. Learn more.
+
### Word
+
- **Fine-tune rewrite responses in Copilot in Word** [Windows]
+
Customize the output from Copilot's Rewrite feature by specifying how the text should change to better suit your needs. Learn more.
+
- **Reference larger files and write longer prompts with Copilot** [Windows, Web, Mac]
+
Create more detailed drafts by writing prompts over 2,000 characters and referencing files totaling up to 75,000 words. Learn more.
+
## October, 2024
+
### Copilot Prompt Gallery
+
- **Expanded industry prompt collections in Copilot Prompt Gallery** [Windows]
+
We have expanded our industry prompt collections in Prompt Gallery with new prompt collections tailored to the nonprofit, consumer goods, and mobility sectors.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 12 additional languages across all features: Bulgarian, Croatian, Estonian, Greek, Indonesian, Latvian, Lithuanian, Romanian, Serbian (Latin), Slovak, Slovenian, and Vietnamese. Microsoft 365 Copilot also improved the handling of language variants: Dutch (Belgium), German (Switzerland), English (UK), Spanish (Mexico), and French (Canada). Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Create agents in Copilot with instructions and knowledge sources** [Windows, Web]
+
Users can build Copilot agents that include specific instructions and knowledge, such as SharePoint files, directly from Copilot Chat using Copilot Studio Agent Builder. Learn more.
+
- **Customize your agent list in Copilot across apps** [Windows, Web]
+
Reorder or remove agents from your agent list, with updates based on your most recently used agents and admin-installed agents, available in Copilot Chat, Microsoft Teams, and Microsoft 365.
+
- **Invoke agents with @mentions across apps** [Windows, Web]
+
Users can now @mention agents to invoke them in-context within Copilot Chat, Word, and PowerPoint, enhancing workflow efficiency. Learn more.
+
- **Start conversations easily with Agent starter prompts** [Windows, Web]
+
Select from conversation starter prompts to begin using an agent quickly and effortlessly. Learn more.
+
### Microsoft Teams
+
- **Empower meeting organizers to adjust Copilot availability** [Windows, Android, iOS, Mac]
+
Admins can now set Copilot in Teams meetings to 'During and After Meeting' and allow meeting organizers to change it. Learn more.
+
### Outlook
+
- **Rewrite selected text in emails using Copilot** [Windows, Web, Android, iOS, Mac]
+
Select specific parts of your drafted email and ask Copilot in new Outlook to rewrite it or provide more information to rewrite it. Provide detailed instructions or adjust the tone and length to suit your needs.
+
### PowerPoint
+
- **Create presentations with new slide types using Copilot** [Windows]
+
When creating a presentation with Copilot, you'll now see agenda, section, and conclusion slides, giving your presentations better structure.
+
- **Custom slideshow of key slides** [Windows]
+
Ask Copilot to show key slides, and you'll have one-click access to play a custom presentation of the most important slides.
+
- **Enhanced creation and editing with Copilot** [Windows]
+
Copilot now offers richer information, elevated visual structures, better images, and more polished layouts when creating or editing your presentations. Learn more.
+
### Viva Insights
+
- **New Microsoft 365 Copilot Chat prompts submitted through Teams** [Windows, iOS, Mac]
+
Adding new Microsoft 365 Copilot Chat prompts submitted through Teams metric to Copilot dashboard and Viva Insights Advanced insights.
+
### Word
+
- **Reference up to 10 Items when drafting with Copilot** [Windows, Mac]
+
Expand your drafting capabilities by referencing up to 10 items—such as files, emails, and meetings—when using Copilot in Word. Learn more.
+
## September, 2024
+
### Microsoft 365 Copilot Chat
+
- **Get started quicker with grounded prompts** [Windows, Web]
+
Copilot Chat prompt suggestions now include relevant files, people, and meetings to help you get started with grounded prompts. Clicking the prompt card will add the prompt text and related file into the input box where you can select a different file, person, or meeting to fit your needs.
+
### Excel
+
- **Access Copilot from the cell context menu** [Windows, Web]
+
Easily launch Copilot in Excel directly from the cell context menu, streamlining your workflow. Learn more.
+
- **Copilot in Excel is generally available** [Windows, Web, iOS, Mac]
+
Copilot in Excel, now no longer in Preview but Generally Available, works alongside you to analyze and explore your data, answering questions in natural language and revealing insights without the need for complex formulas. Learn more.
+
### Microsoft 365 Copilot
+
- **AI-generated Images with Copilot and Microsoft Designer** [Windows, Web, Mac]
+
Microsoft Designer integration in Copilot chat allows you to generate that perfect image, providing limitless creativity and bringing your presentations to life. Learn more.
+
- **Insert brand-approved images from SharePoint using Copilot** [Windows, Web]
+
Keep your documents and presentations on brand by adding company-approved images directly from your SharePoint organization asset library through Copilot. Learn more.
+
### Microsoft Teams
+
- **Copilot in Teams meetings considers meeting chat** [Windows, Mac]
+
When generating meeting summaries or answering questions, Copilot in Teams will now use the chat and transcript as context, providing more accurate and relevant responses. Learn more.
+
### PowerPoint
+
- **Improved template support with Copilot** [Windows, Web, Mac]
+
Update your templates to PowerPoint's best practices, and Copilot will generate beautiful, on-brand slides every time you create a presentation. Learn more.
+
### Word
+
- **Use Copilot to enhance pasted text in Word** [Windows, Mac]
+
Copilot in Word now offers more options when you paste text. Reword content, transform it into tables or lists, and more, making it easier to format and organize your documents efficiently.
+
## August, 2024
+
### Copilot Prompt Gallery
+
- **Try prompts directly from the Copilot Prompt Gallery website** [Windows, Web]
+
Quickly launch suggested prompts from the Copilot Prompt Gallery website in Microsoft 365 Copilot Chat by clicking the "Try in" button on the prompt card.
+
### Excel
+
- **Custom chart and PivotTable creation** [Windows, Web, iOS, Mac]
+
You can now ask Copilot for more specific charts and PivotTables, including specifying the X and Y axes. Customize your data presentations more precisely.
+
- **Formula data summaries from columns** [Windows, Web, iOS, Mac]
+
Add a single formula to summarize column data into one cell. This feature allows you to calculate data across columns and return a single result, simplifying data analysis.
+
- **Suggest conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Ask Copilot to suggest conditional formatting for your data. Receive a list of prompts that might highlight key insights in your data.
+
- **Summarize text columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can analyze columns of text to provide summaries, such as identifying main themes in survey responses. Understand your text data more effectively.
+
### Microsoft Teams
+
- **Copilot summarizes content over specified time periods** [Windows, Android, iOS, Mac]
+
Copilot can now identify and summarize information over specific time periods, responding accurately to queries like "yesterday," "last month," or "last year." Learn more.
+
- **Linked files in Copilot replies** [Windows, Android, iOS, Mac]
+
We have optimized Copilot in Microsoft Teams to include linked files in Copilot answers for quicker and more reliable retrieval of files and links, making your experience smoother and more efficient.
+
### Outlook
+
- **Schedule meetings from an email with Copilot in new Outlook** [Windows, Web]
+
Quickly shift from an email thread to a meeting invite by clicking "Schedule with Copilot." Copilot summarizes the conversation, drafts an agenda, and includes key context automatically.
+
### PowerPoint
+
- **Build your story with Narrative Builder** [Windows, Web, iOS, Mac]
+
Copilot helps you form your narrative and turns it into a fully designed presentation, streamlining the creative process.
+
- **Improved presentation summary richness** [Windows, Web, iOS, Mac]
+
Copilot now leverages the latest GPT models to provide richer summaries when generating presentations, enhancing the quality of your content.
+
### Viva Insights
+
- **Analyze Copilot impact over time** [Windows, Web, Android, iOS, Mac]
+
View trendlines of key productivity metrics over 6 months and estimate the financial value of Copilot-assisted hours. Learn more.
+
## July, 2024
+
### Excel
+
- **Advanced conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Copilot now supports complex conditional formatting, such as highlighting rows based on multiple criteria. Enhance your data visualization with more formulaic formatting options.
+
- **Improved data insights in Copilot** [Windows, Web, iOS, Mac]
+
Copilot is now better at answering questions about data insights like trends and correlations. Get more meaningful analysis to make informed decisions.
+
- **Preview and apply changes suggested by Copilot** [Windows, Web, iOS, Mac]
+
Before Copilot makes changes to your Excel data, you'll now receive a description and an "Apply" button. This gives you more control over your data and allows for refinements before applying changes.
+
- **Preview conditional formatting rules** [Windows, Web, iOS, Mac]
+
When setting a conditional formatting rule, Copilot's response will include a preview of the style and an explanation of the formula. This helps you understand and apply formatting more confidently.
+
- **Support for data ranges resembling tables** [Windows, Web, iOS, Mac]
+
Copilot can now reason over data ranges with a single row of headers, even if they aren't formatted as formal tables. This makes data analysis more flexible.
+
### PowerPoint
+
- **Create presentations from encrypted Word documents** [Windows, Web, iOS, Mac]
+
Copilot for PowerPoint can now create presentations using Word documents that have a protected sensitivity label, expanding your content creation options securely.
+
- **Easier access to Copilot in PowerPoint** [Windows, Web, iOS, Mac]
+
Access Copilot in PowerPoint more easily with new on-canvas entry points. Start enhancing your presentations with AI assistance in fewer clicks.
+
### Viva Insights
+
- **Microsoft Copilot Dashboard powered by Viva Insights** [Windows, Web, Android, iOS, Mac]
+
The Microsoft Copilot Dashboard available to all Microsoft 365 Copilot customers at no extra cost. Access it via the Viva Insights app to monitor Copilot adoption and impact. Learn more.
+
### Word
+
- **Summarize longer documents in chat** [Windows, Web, iOS, Mac]
+
Copilot in Word can now summarize longer documents, with the upper limit increased to about four times more words (approx. 80k words). Get comprehensive overviews of lengthy content.
+
## June, 2024
+
### Microsoft 365 Copilot Chat
+
- **Contextual prompt suggestions in Microsoft 365 Copilot Chat** [Windows]
+
Microsoft 365 Copilot Chat now shows contextual prompt suggestions when you hover over entities like files, events, and people. Quickly access relevant information to enhance your productivity.
+
### Excel
+
- **Copilot works on any selection in Excel** [Windows, Web, iOS, Mac]
+
Copilot now enables the edit box on any worksheet, regardless of selection. It intelligently finds the nearest table or data range for your analysis queries, making data manipulation more flexible.
+
### Microsoft Teams
+
- **Admins can enforce Copilot during and after meetings** [Windows, Android, iOS, Mac]
+
Admins can set Copilot in Teams meetings to 'During and After Meeting' and prevent meeting organizers from changing it. Learn more.
+
- **Control access to recordings and transcripts** [Windows, Android, iOS, Mac]
+
Introducing new meeting settings that allow you to control who can access recordings, transcripts, and prompt Copilot. Enhance your meeting security and privacy with these granular controls.
+
- **Intelligent Recap available for Copilot users** [Windows, Mac]
+
Copilot users can now access Intelligent Recap after meetings and calls. Browse recordings by speakers and topics, and access AI-generated meeting notes, action items, and @mentions, all designed to keep you informed.
+
### OneNote
+
- **Access company information via Copilot in OneNote** [Windows]
+
Prompt Copilot in OneNote to get responses from all your company information stored in the Microsoft cloud. Find the data you need without leaving your note-taking app.
+
### Outlook
+
- **Microsoft 365 Copilot Chat in classic Outlook** [Windows]
+
The Microsoft 365 Copilot Chat experience is now available in classic Outlook. Access AI-powered assistance directly from the App Bar on the left to enhance your email productivity.
+
### PowerPoint
+
- **Copilot adds transitions and animations automatically** [Windows, Web, iOS, Mac]
+
When creating presentations from prompts or files, Copilot will now automatically add transitions and animations. This enhancement brings your slides to life without extra effort.
+
- **Create presentations from PDF files with Copilot** [Windows, Web, iOS]
+
You can now generate PowerPoint presentations directly from PDF files using Copilot. This feature simplifies the process of turning documents into engaging presentations.
+
- **Improved content when creating presentations from prompts** [Windows, Web, iOS, Mac]
+
Experience increased depth and richness of content when you create a presentation from a prompt. Copilot now provides better formatting and more detailed slides to enhance your presentations.
+
### Word
+
- **Find the perfect visual with Copilot + Designer in Word** [Windows, Web, Mac]
+
Enhance your documents with AI-generated images using the new integration of Microsoft Designer in Copilot Chat. Also search for stock images and brand assets to bring your content to life seamlessly.
+
- **Use Draft with Copilot in Word based on text, list, or table selection** [Windows, Mac]
+
Use Draft with Copilot in Word with the on-canvas Copilot menu when a user selects text, a list, or a table, which generates new content from Copilot and provides a richer, more interactive experience.
+
## May, 2024
+
### Microsoft 365 Copilot Chat
+
- **Enhanced Reference visibility in Microsoft 365 Copilot Chat** [Windows]
+
References in Microsoft 365 Copilot Chat responses are now unfurled by default at the bottom of each reply. This improvement increases transparency and makes it easier to discover the sources behind Copilot responses.
+
### Copilot Prompt Gallery
+
- **Explore curated prompt collections for various roles and industries in Copilot Prompt Gallery** [Windows, Web]
+
Discover and filter through a curated collection of Microsoft-authored prompts tailored for Marketing, HR, Finance, Retail, and Manufacturing roles. These prompts help you get the most out of Copilot with prompts tailored to your role or industry.
+
### Microsoft Teams
+
- **Copilot notification in unrecorded meetings** [Windows, Android, iOS, Mac]
+
When Copilot is started in a meeting that isn't being recorded, every participant is notified that Copilot is active.
+
### Outlook
+
- **Microsoft 365 Copilot Chat available in new Outlook for Windows and web** [Windows, Web, Android, iOS]
+
Access the power of Microsoft 365 Copilot Chat directly within Outlook on the web and the new Outlook for Windows. Access Microsoft 365 Copilot Chat through the left app bar.
+
### Word
+
- **Use a url to reference supported files in Copilot in Word** [Windows, Mac]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
## April, 2024
+
### Microsoft 365 Copilot Chat
+
- **Use file links to reference files in your prompts** [Windows, Web]
+
Easily refer to files in your Copilot Chat prompts by pasting their URL links, streamlining your workflow and saving time.
+
### Excel
+
- **Create Formula Columns Using Data from Multiple Tables** [Windows, Web, iOS, Mac]
+
Support for functions like XLOOKUP and SUMIF allows you to create formula columns that utilize data across multiple tables.
+
- **Generate multiple formula columns with a single prompt** [Windows, Web, iOS, Mac]
+
Use Copilot in Excel to create several formula-based columns at once. For example, ask Copilot to split a full name into first and last name columns, and watch it generate both formulas in one go.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 17 additional languages across all features: Arabic, Chinese (Traditional), Czech, Danish, Dutch, Finnish, Hebrew, Hungarian, Korean, Norwegian (Bokmal), Polish, Portuguese (Portugal), Russian, Swedish, Thai, Turkish, and Ukrainian. Learn more.
+
### Microsoft Teams
+
- **Copilot understands previous conversations in chats and channels** [Windows, Android, iOS, Mac]
+
When you ask follow-up questions in chats or channels, Copilot now has context from past interactions to provide more accurate answers.
+
### OneNote
+
- **Use Copilot with your handwritten notes** [Windows]
+
Copilot in OneNote now supports inked notes, allowing you to summarize, rewrite, or generate to-do lists from your handwritten content.
+
### Outlook
+
- **Copilot chat now available in new Outlook** [Windows, Web]
+
Access Copilot chat within Outlook to type and receive responses while managing your emails, all in a convenient side panel.
+
- **Draft Emails with Copilot in Classic Outlook for Windows** [Windows]
+
Copilot combines the power of AI and Outlook data to help you draft new messages or replies effortlessly.
+
### Whiteboard
+
- **Discover Whiteboard Copilot with First Run Experience** [Windows, Web]
+
First-time users will be guided to discover and leverage the power of Whiteboard Copilot features through an interactive introduction.
+
### Word
+
- **Bing search integration brings the power of the web to your chats in Word** [Windows, Web]
+
Ask Copilot a question in Word chat, and Copilot generates an answer using the power of integrated Bing search. And you never have to leave the app.
+
- **Bring the latest from your organization into your Word chats with Microsoft Copilot Graph-grounded search.** [Windows, Web]
+
Bring the latest from your organization into your Word chats with Microsoft Graph-grounded search, enhancing the power of Copilot.
+
- **Draft with Copilot supports referencing files encrypted with sensitivity labels** [Windows, Web, Mac]
+
Draft with Copilot now allows you to reference files encrypted with sensitivity labels, ensuring secure document creation.
+
## March, 2024
+
### Microsoft 365 Copilot Chat
+
- **Rich entity representations in Copilot responses** [Windows, Web, Android, iOS, Mac]
+
Copilot now provides richer representations of entities like people, events, and files within responses, enhancing context and usability.
+
### Excel
+
- **Enable Copilot in Excel by saving files to OneDrive or SharePoint** [Windows, Mac]
+
To use Copilot in Excel, save your files to OneDrive or SharePoint with AutoSave on. You'll receive prompts to help you set this up if needed.
+
- **Speak to Copilot in Excel with new input methods** [Windows, Web, iOS, Mac]
+
You can now use your microphone to send prompts to Copilot in Excel, and explore the Prompt Guide for customized suggestions.
+
### Microsoft Teams
+
- **Customize your draft message when you compose with Copilot** [Windows, Android, iOS, Mac]
+
You can now instruct Copilot to adjust your draft message however you'd like. Adjust the message with a custom prompt, like "add a call to action" or "make it persuasive". Learn more.
+
- **Enhanced Copilot UI with new date dividers** [Windows, Android, iOS, Mac]
+
We have improved the Copilot user interface with new date dividers for chats, channels, and meeting Copilot.
+
## February, 2024
+
### Microsoft Teams
+
- **Copilot side pane stays open across group chats** [Windows, Mac]
+
When you open Copilot in a group chat, it will remain open even as you navigate between different chats, saving you time.
+
### Outlook
+
- **Get Coaching from Copilot for an email draft in Classic Outlook for Windows** [Windows]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness.
+
## January, 2024
+
### Excel
+
- **Enjoy conversational Copilot in Excel** [Windows, Web, iOS, Mac]
+
Copilot in Excel now remembers the context of your chats, allowing for follow-up questions and clarifications for a smoother experience.
+
### Word
+
- **Visualize as table** [Windows]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling.
+
## November, 2023
+
### Microsoft 365 Copilot Chat
+
- **Access Microsoft 365 Copilot Chat on Microsoft365.com** [Windows, Web]
+
Use Microsoft 365 Copilot Chat directly from microsoft365.com/chat, providing a unified experience across platforms. Learn more.
+
- **Extend Microsoft 365 Copilot Chat to third-party connectors** [Windows]
+
Support for retrieval and synthesis of content from enabled third-party Graph connectors is now available.
+
- **Insert entities into prompts in Microsoft 365 Copilot Chat** [Windows, Web]
+
Use '/' to add entities in prompts submitted to Copilot, focusing responses on the most relevant information. Learn more.
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Mac]
+
Your single destination to take on any task, combining AI power with your work content to draft content, catch up, and get answers. Learn more.
+
### Excel
+
- **Add formula columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot provides formula suggestions with explanations, helping you create new columns based on your data. Learn more.
+
- **Generate data insights with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can suggest insights like summaries, trends, and outliers, returning results as charts or PivotTables to enhance your analysis. Learn more.
+
- **Use Copilot to highlight, filter, and sort data in Excel tables** [Windows, Web, iOS, Mac]
+
Transform your data by asking Copilot to format your Excel tables. You can highlight top values, filter specific entries, or sort data. For example, ask Copilot to highlight the top 3 values in a column, and it will apply conditional formatting. Learn more.
+
### Microsoft Teams
+
- **Copilot available in a channel post conversation** [Windows, Web, Android, iOS, Mac]
+
Copilot can summarize and support Q&A on a channel post conversation, assisting you directly in your channel conversations.
+
- **Copilot to summarize and answer Q&A in Teams Chat** [Windows, Web, Android, iOS, Mac]
+
Copilot helps you catch up on conversations by providing summaries and answering questions in Teams chats.
+
- **Use Copilot in meetings, 1:1 and group calls** [Windows, Web, Android, iOS, Mac]
+
Get summaries, action items, and more after meetings and calls through Copilot in the side panel.
+
### OneNote
+
- **Access powerful AI tools in the new OneNote pane** [Windows]
+
Use the new pane to summarize key points, extract insights and to-do lists, generate ideas, and rewrite your text for improved clarity and tone. Learn more.
+
### Outlook
+
- **Draft emails with Copilot in new Outlook** [Windows, Web, Mac]
+
Use Copilot to draft new emails from prompts, adjust length and tone, and even select parts of an email and use Copilot to rewrite those specific sections effortlessly. Learn more.
+
- **Meeting Recap in Calendar** [Windows, Web]
+
After a meeting ends, open the event from your calendar in the new Outlook to view the meeting summary, mentions, tasks, and more, helping you catch up and collaborate asynchronously.
+
- **Summarize email threads in Classic Outlook for Windows** [Windows]
+
Summarize email conversations, extract key points, and receive recommended actions, enhancing your productivity. Learn more.
+
### PowerPoint
+
- **Automatically add an agenda slide to your presentation** [Windows, Web, iOS, Mac]
+
Generate and insert an agenda slide based on your existing content, helping you prepare your audience for what's ahead.
+
- **Convert Word documents into presentations** [Windows, iOS, Mac]
+
Transform your Word documents into fully designed PowerPoint presentations, simplifying the creation process. Learn more.
+
- **Create a presentation from a simple prompt** [Windows, Web, iOS, Mac]
+
Provide a prompt and Copilot will help you generate a presentation, saving you time and effort Learn more.
+
- **Create presentations using your organization's templates** [Windows, Web, iOS, Mac]
+
Generate presentations that utilize your company's templates, ensuring consistency and alignment with your brand. Learn more.
+
- **Edit your presentation in Copilot chat** [Windows, Web, iOS, Mac]
+
Add slides, add animations, or organize your presentation in Copilot chat, streamlining your editing process. Learn more.
+
- **Get answers about your presentation** [Windows, Web, iOS, Mac]
+
Ask questions about your existing PowerPoint presentation to quickly retrieve information and insights.
+
- **Organize your presentation's flow easily** [Windows, Web, iOS, Mac]
+
Structure your slides, add sections, and insert an agenda slide to improve the overall flow of your presentation. Learn more.
+
- **Summarize your presentation and identify key points** [Windows, Web, iOS, Mac]
+
Generate summaries, highlight key slides, and identify action items from your presentation, making it easier to review and share essential information. Learn more.
+
### Whiteboard
+
- **Generate ideas effortlessly** [Windows, Web, Android, iOS]
+
Brainstorm by generating short text ideas, fueling your creativity during collaborative sessions.
+
- **Organize your ideas into themes** [Windows, Web, Android, iOS]
+
Categorize and group your ideas into themes, helping you visualize and structure your brainstorming sessions.
+
- **Summarize your Whiteboard sessions** [Windows, Web, Android, iOS]
+
Create summaries of your Whiteboard content, capturing key points from your collaborative work.
+
### Word
+
- **Apply highest sensitivity label to generated content** [Windows, Web, iOS, Mac]
+
Ensure your documents maintain appropriate confidentiality levels as labels are automatically updated when referencing files with higher sensitivity.
+
- **Draft with Copilot** [Windows, Web, iOS, Mac]
+
Draft new content for your blank or existing documents, helping you write faster and with ease. Learn more.
+
- **Get answers and enhance content with chat in Word** [Windows, Web, Mac]
+
Ask specific questions about your document or request additional details to enhance your content, making your writing process more efficient. Learn more.
+
- **Rewrite with Copilot** [Windows, Web, iOS, Mac]
+
Get suggestions for how to rewrite any text in your document, enhancing clarity and effectiveness. Learn more.
+
- **Summarize your document using chat prompts** [Windows, Web, Mac]
+
Ask via chat to summarize your document, highlighting key points for quick understanding and review. Learn more.
+
- **Use chat in Word's Viewing mode** [Windows, Mac]
+
Access chat while in Viewing mode to ask questions about the document's content without switching to Editing mode, improving your reading experience. Learn more.
+
- **Use voice prompts for assistance** [Windows, Web, Mac]
+
Use voice to dictate into the Copilot chat prompt field
-## [Web](#tab/web)
+## [Web](#tab/web)
+
+
+## April 2, 2025
+Updates released between March 20, 2025, and April 2, 2025.
+### Copilot Studio
+- **Enhanced SharePoint URL support in Copilot Studio** [Web]
+
+ Previously, only SharePoint site URLs could be used as knowledge for Copilot Studio agents. Users can now use SharePoint file, folder, and site URLs, including links from the Share button or browser address bar; once the URLs are added, the agents will be grounded to the content within the URL. Additionally, more granular error messages help with transparency and managing expectations.
+ Learn more.
+- **Public website scoping for agents** [Web]
+
+ Makers can now scope agents' knowledge sources to specific websites, enhancing the precision of web searches. This capability, previously available in custom agents from Microsoft Copilot Studio, is now extended to agents in the Microsoft 365 context.
+ Learn more.
+- **SharePoint knowledge for agents** [Web]
+
+ Makers can now leverage additional data sources, including Dataverse and SharePoint, when building autonomous agents. This expands the variety of use cases for autonomous agents.
+- **Use agent builder in Copilot chat** [Web]
+
+ Create custom agents in Copilot chat to streamline repetitive tasks and achieve consistency. Use specific instructions and grounding details to save time, reuse your agents, and enhance team productivity.
+ Learn more.
+### Excel
+- **Gain insights with Copilot and Python in Excel on Web** [Web]
+
+ Using everyday language, ask Copilot to perform advanced analytics like machine learning and predictive forecasting, which would usually take hours or require special skills. Copilot writes Python code and inserts it on the grid, providing deeper insights and stunning/ visuals. Available in multiple languages on Excel for the Web.
+ Learn more.
+- **Read aloud for Excel text responses** [Web]
+
+ Users can now use the Read Aloud button on the Copilot response card to have an audio narration of the response, enhancing accessibility and ease of information consumption.
+### Microsoft 365 Copilot Chat
+- **Ask questions about images with natural language** [Android, iOS, Web]
+
+ Easily gain insights from images by asking natural language questions. Upload images for quick analysis using advanced vision models—helping you make sense of visual data across your apps.
+- **Enhance email insights with interactive hovers** [Web]
+
+ Enjoy enriched emails with interactive hovers that reveal contextual details—like sender info, dates, and follow-up prompts—to streamline your daily workflow.
+### Microsoft 365 Copilot Studio
+- **Collect user feedback in Copilot Studio agent builder** [Web]
+
+ Makers can also now submit feedback—compliments, problems, or suggestions—directly to the product team from inside the Microsoft 365 agent builder. This can be done at any stage of the authoring process, including comments and optional metadata for troubleshooting. This feature allows quick issue reporting without disrupting workflow and enables the product team to address feedback efficiently.
+ Learn more.
+### Microsoft Loop
+- **Load existing Copilot pages and create multiple pages** [Web]
+
+ With multipage functionality in Copilot Pages, users can load existing pages and create multiple pages within a single conversation.
+ Learn more.
+- **Recap changes over a longer time** [Web]
+
+ Recap changes in Loop over extended periods, such as the last week or last 30 days, instead of being limited to the current session. This feature helps users share updates more effectively.
+### PowerPoint
+- **Translate your presentation** [Windows, Web, Mac]
+
+ Produce a translated copy of your entire presentation in about 40 languages while preserving your slide design and structure, making global collaboration effortless.
+ Learn more.
+### Word
+- **Simplified prompt experience in chat** [Web]
+
+ The chat experience in Word is now simplified with access to attachments, images, and agents now accessed form a single plus-sign menu.
+
+## March 19, 2025
+Updates released between March 5, 2025, and March 19, 2025.
+
+### Copilot Studio
+
+- **Use generative actions** [Web]
+
+ Replace manual topic triggers with AI-powered orchestration. You can now configure an agent to use generative AI to dynamically select relevant topics or plugin actions, creating more fluid conversations while reducing manual topic configuration. Learn more.
+
+### Microsoft 365 Admin Center
+
+- **Manage shared Copilot agents across your organization** [Web]
+
+ Tenant admins can now view, search, and block shared Copilot agents in the Admin Center. Maintain control over agent usage and ensure compliance with organizational policies.
+
+### Microsoft 365 Copilot Chat
+
+- **Copilot on Edge Update** [Web]
+
+ Copilot on Edge has been updated and requires users to update their version of Edge to version 134.0.3124.51 or newer to receive the latest functionality. This update includes file upload availability on the web tab as well as a smoother authentication experience via the Edge Work Profile.
+
+- **Prompt suggestions in Copilot chat** [Windows, Web, Mac]
+
+ Get started in Copilot chat quickly with automatic prompt suggestions that enhance your productivity by providing relevant and context-aware prompts based on your previous interactions.
+
+### Microsoft 365 Copilot Extensibility
+
+- **Support for message extension and declarative agents** [Windows, Web]
+
+ Transform legacy plugins into integrated experiences by exposing them as declarative agents—enhance Office apps like Word, Excel, and PowerPoint with message extensions.
+
+### Microsoft Loop
+
+- **Track collaborative changes with "who did what and when"** [Web]
+
+ Ask Copilot about recent edits in Loop workspaces to identify contributors, review timeline updates, and maintain clarity during team projects. Example: "Show changes to the onboarding checklist this week."
+
+### Copilot Prompt Gallery
+
+- **Share a Copilot prompt with a Teams team** [Windows, Web]
+
+ Easily share custom prompts from the Copilot Prompt Gallery with your Microsoft Teams team. This streamlined sharing makes it simple for team members to discover and make the most of these prompts in their daily workflow. Learn more.
+
+### SharePoint
+
+- **Create and share agents** [Web]
+
+ Easily create agents by selecting SharePoint sites or files and share them with your team in SharePoint or Teams to boost collaboration. Learn more.
+
+- **Use Data Access Governance to analyze tenant permissions** [Web]
+
+ Leverage detailed reports on permissioned user counts and sharing links to identify oversharing risks and make informed governance decisions. Learn more.
-
## March 4, 2025
-Updates released between February 19, 2025, and March 4, 2025.
+
+Updates released between February 20, 2025, and March 4, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Search archived mailboxes in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Leverage Copilot to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in my archives' in your prompts to quickly locate key messages.
+
### Copilot Studio
+
- **Add enterprise data with new graph connections** [Web]
+
Connect your organization’s data seamlessly using pre-configured graph connectors like Stack Overflow, and Salesforce Knowledge. Build smarter agents with semantic search—no custom solution required. Learn more.
+
### Microsoft 365 Admin Center
+
- **Enhanced Copilot admin page with comprehensive tools** [Web]
+
Navigate a refreshed admin interface featuring Overview, Health, Discover, and Settings—delivering key metrics, insights, and controls to tailor Copilot to your organization’s needs.
+
- **Simplify Copilot license assignment** [Web]
+
Use a data-driven license optimizer to identify users who gain the most value from Copilot. Streamline assignments in the admin center for efficient adoption across your organization.
+
### PowerPoint
+
- **Narrative builder creates slides with tables** [Windows, Web, Mac]
+
Convert grounded content from Word documents into dynamic slides with tables. Enhance your presentations with structured, data-driven visuals effortlessly.
+
## February 19, 2025
+
Updates released between February 5, 2025, and February 19, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Enhanced entity context card** [Web]
+
Enjoy smoother motion, improved reliability, and a more intuitive experience with the upgraded entity context card—making it easier to explore contextual details as you work. Learn more.
+
- **Increased results in Copilot Chat responses** [Web]
+
Get more comprehensive email and calendar results in Copilot Chat responses to easily summarize messages or track your meetings throughout the day.
+
### PowerPoint
+
- **Create a presentation from a file-based prompt** [Windows, Web, Mac]
+
Pull key facts and data from a selected file to shape your narrative. Simply provide Copilot with a prompt and quickly build your deck with relevant information. Learn more.
+
### Viva Insights
+
- **Copilot dashboard for usage and retention insights** [Windows, Web, Android, iOS, Mac]
+
Dive into usage frequency, compare top user groups, and track retention metrics—all in a single, comprehensive dashboard for actionable insights. Learn more.
+
### Word
+
- **Chat with Copilot about selected text** [Windows, Web, Mac]
+
Highlight text, start a chat with Copilot, and receive responses tailored to what you’ve selected. Get targeted writing assistance and refine your content in real time.
+
## February 4, 2025
+
Updates released between January 24, 2025, and February 4, 2025.
### Microsoft 365 Copilot App
+
- **Updates to the Microsoft 365 (Office) app** [Windows, Web, Android, iOS]
+
The Microsoft 365 Copilot app (formerly Microsoft 365 app) has a new name and icon. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Access support pages in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
View organizational support pages directly within Copilot Chat, for quick help and guidance in your workflow.
+
- **Accommodate user’s time zones in Copilot** [Windows, Web, Android, iOS]
+
Copilot now references your local time zone when responding helping to avoid confusion and scheduling errors.
+
- **Charts, graphs, and data analysis in Copilot for Microsoft 365** [Windows, Web]
+
Use natural language to create charts, graphs, and data analysis in Copilot Chat work mode.
+
- **Get more Copilot value with Microsoft 365 Copilot** [Web]
+
Easily add full Copilot Chat capabilities including grounding conversations in work data and accessing Copilot in your favorite Microsoft 365 apps by purchasing or requesting a Microsoft 365 Copilot license directly in Copilot Chat. Learn more.
+
### PowerPoint
+
- **Use Copilot to rewrite, trim, or formalize text** [Web, Mac]
+
Transform your presentation text by letting Copilot fix grammar, shorten lengthy content, or adopt a more professional tone—perfect for crafting clear, polished slides.
-### Prompt Gallery
+
+### Copilot Prompt Gallery
+
- **Share a prompt with a co-worker** [Windows, Web]
+
Easily create, save, and share your favorite prompts using Copilot Prompt Gallery, inspiring your co-workers to achieve more with Copilot. Learn more.
+
### SharePoint
+
- **Restricted Content Discovery** [Web]
+
Prevent specific SharePoint sites from being discoverable in tenant-wide search and Copilot. Learn more.
+
### Word
+
- **Reference data from the Microsoft cloud when drafting with Copilot in Word** [Windows, Web, Mac]
+
Draft with Copilot now supports attaching rich content from the Microsoft cloud—including emails and meetings—resulting in more contextually relevant content. Learn more.
+
- **Reference plain text files in Copilot** [Windows, Web, Mac]
+
Add .txt files as sources with Copilot in Word, streamlining your process when working with text-based research or background content.
+
## January 23, 2025
+
Updates released between January 8, 2025, and January 23, 2025.
### Forms
+
- **Smart reminders with Copilot in Forms** [Web]
+
Copilot in Forms now offers smart reminders to help you monitor response progress and get more engagement with your forms, delivered right to your email inbox. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS]
+
Microsoft 365 Copilot Chat—free, secure AI chat powered by GPT-4o with agents accessible right in chat, and IT controls including enterprise data protection and agent management. Copilot Chat serves as a powerful new on-ramp for everyone in your organization to build an AI habit. Get started with Copilot Chat with the updated Microsoft 365 Copilot app (formerly Microsoft 365 app). Learn more.
+
- **Updated meeting entity card in Copilot Chat** [Windows, Web]
+
Check meeting details like RSVP status, date, and attachments without switching contexts in Copilot Chat.
+
### PowerPoint
+
- **Generate summaries for longer presentations** [Windows, Web, Mac]
+
Copilot now supports text summaries up to 40k words (around 150 slides), giving you richer information and more polished layouts. Learn more.
+
### SharePoint
+
- **Copilot in SharePoint** [Web]
+
Copilot in SharePoint combines the power of Large Language Models (LLMs), your data in the Microsoft Graph, and best practices to create engaging web content. Get assistance drafting your content when creating new pages. Adjust the tone, expand meeting bullets into structured text, or get help making your message more concise. All within our existing commitments to data security and privacy in the enterprise. Learn more.
+
### Viva Amplify
+
- **Microsoft 365 Copilot in Viva Amplify editor** [Web]
+
The superpowers of Microsoft 365 Copilot integrates seamlessly into Viva Amplify, transforming content creation. Use Copilot in Amplify to auto-rewrite for suggestions, expand or condense text, and adjust tone for consistent, relevant messaging. Learn more.
+
### Viva Insights
+
- **Copilot dashboard access can be granted using Entra groups** [Web]
+
Global admins can now grant Microsoft Copilot Dashboard access using Microsoft Entra ID (AAD) Groups, reducing the manual effort needed for management. Learn more.
+
### Word
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Web, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
## January 7, 2025
-### Microsoft 365 admin center
+
+Updates released between December 18, 2024, and January 7, 2025.
+### Microsoft 365 Admin Center
+
- **Track usage of Microsoft 365 Copilot Chat** [Web]
+
Filter data by date range, review Microsoft Copilot usage by app entry point, and use these insights plan adoption strategies more confidently. Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Include Code Interpreter in agents** [Windows, Web]
+
Enhance your agents by including Code Interpreter for advanced data analysis tasks in agent builder. Learn more.
+
### Outlook
+
- **Schedule meetings with Copilot chat in Outlook** [Windows, Web]
+
Save time and streamline your day by asking Copilot to schedule meetings for you in Outlook. Whether it's a 1:1 or focus time, Copilot will find the best available time slots with ease. Learn more.
+
### Viva Amplify
+
- **Copilot in Viva Amplify editor** [Web]
+
Experience the power of Copilot right in your Amplify editing workflow. You can quickly auto-rewrite sections of your text, expand or condense content to match your preferred length, and seamlessly adjust the tone—casual, engaging, or professional—to suit your audience. Learn more.
+
### Viva Insights
+
- **New metrics for enterprise data-protected prompts** [Windows, Web, Android, iOS, Mac]
+
Gain visibility into prompts submitted through Microsoft 365 Copilot Chat (web) and enterprise data-protected Copilot scenarios. Learn more.
+
### Viva Learning
+
- **Copilot Academy support for external content** [Web]
+
Enhance your learning experience with a wider range of external content in Copilot Academy, including links to Copilot Prompt Gallery. Learn more.
+
## December 17, 2024
+
### Microsoft 365 Copilot
+
- **Microsoft 365 Copilot GCC general availability** [Windows, Web]
+
Your AI assistant for work in the GCC (Government Community Cloud) environment. It combines the power of large language models (LLMs) with your work content and context, to help you draft and rewrite, summarize and organize, catch up on what you missed, and get answers to questions via prompts. Learn more.
+
+### Microsoft 365 Admin Center
+
+- **Copilot usage report for Business Chat** [Web]
+
+ Monitor usage data for Copilot Business Chat (web and work) directly in the admin center to support adoption and strategic planning.
+
### Microsoft Purview
-- **eDiscovery - Generate keyword query language from natural language prompt in eDiscovery with Copilot for Security** [Web]
+
+- **Generate keyword query language from natural language prompt in eDiscovery with Copilot for Security** [Web]
+
Copilot for Security is embedded in eDiscovery to enable users to provide a search prompt in natural language and will translate into keyword query language to help expedite the start of an eDiscovery search. Learn more.
+
### PowerPoint
+
- **Ask Copilot about visuals while in PowerPoint** [Windows, Web]
+
Now you can add an image to your chat with Copilot. You can ask questions about the image, extract text, get a description of a chart, translate information, or generate alt text. This helps you stay in the flow of work while getting necessary information to continue working on your document.
+
+### Viva Pulse
+
+- **Templates for Copilot readiness, adoption and impact** [Windows, Web, Android, iOS, Mac]
+
+ Use new templates to measure employee sentiment and assess your organization's Copilot adoption—all within your Viva Pulse subscription.
+
### Word
+
- **Ask Copilot about visuals while in Word** [Windows, Web]
+
Now you can add an image to your chat with Copilot. You can ask questions about the image, extract text, get a description of a chart, translate information, or generate alt text. This helps you stay in the flow of work while getting necessary information to continue working on your document.
+
## November, 2024
+
### Microsoft 365 Copilot Chat
+
- **Admin control over Copilot web search access** [Web]
+
Administrators can now manage user access to web search within Copilot using policies in config.office.com. This provides better control over how users interact with web content through Copilot. Learn more.
+
- **Focus Copilot responses on specific emails in Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Narrow down Copilot responses by specifying a particular email folder, sub-folder, or subject line. Get more precise assistance by directing Copilot to the emails that matter most to you.
+
- **Jumpstart with prebuilt prompts in Microsoft 365 Copilot Chat** [Web]
+
Quickly get started in Microsoft 365 Copilot Chat by exploring and using prebuilt prompts designed to help you maximize productivity from the get-go.
+
- **Save and reuse your favorite prompts in Copilot** [Windows, Web]
+
Easily save your most-used prompts in Microsoft 365 Copilot Chat and Copilot Prompt Gallery website, keeping them at your fingertips for quicker interactions. Learn more.
+
- **Share your feedback with in-chat rating in Copilot** [Windows, Web]
+
Easily rate your experience with Copilot's web-grounded chat on a 1-5 scale. Your feedback helps us improve Copilot to better meet your needs.
+
- **Use web-grounded Copilot chat in Teams and Outlook** [Windows, Web]
+
Enhance your Copilot chat in Teams and Outlook with the latest information from the web. Get up-to-date answers and insights directly within your conversations.
+
- **View web queries used by Copilot for greater transparency** [Web]
+
See the exact web queries Copilot sends in response to your prompts, along with the list of websites queried, enhancing your awareness and control over the information process.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Admin Center
+
+- **AI administrator role** [Web]
+
+ Empower designated admins to manage Copilot securely with the new AI administrator role—providing control without full Global admin permissions.
+
+### Microsoft 365 Copilot Extensibility
+
- **Add image generation to agents** [Windows, Web]
+
Enhance your agents by including image generation capabilities in agent builder Learn more.
+
- **Create agents in Microsoft 365 Copilot via agent builder** [Windows, Web]
+
Use agent builder to create agents that contain specific instructions and knowledge, such as SharePoint files, to suit your needs. Learn more.
+
+### Microsoft Loop
+
+- **Reference documents within loop copilot prompts** [Web]
+
+ Enhance your Loop experience by linking directly to Word, Excel, or PowerPoint files—just add a command to summarize or extract key points from your documents.
+
+### PowerPoint
+
+- **Build a narrative with file-based topics** [Windows, Web, Mac]
+
+ Create compelling presentations by integrating topic suggestions linked to your documents—whether Word files, PDFs, or encrypted docs—for a well-grounded narrative.
+
### SharePoint
+
- **Control site creation permissions with Restricted Site Creation** [Web]
+
Administrators can now manage who can create different types of SharePoint sites. Configure specific user groups with permissions to create Team sites, Communication sites, or all sites, enhancing governance and control. Learn more.
+
- **Manage inactive sites with new lifecycle policies** [Web]
+
SharePoint administrators can now set up policies to detect inactive sites, notify site owners, and automatically archive or set sites to read-only if no action is taken. This helps in managing unused content and optimizing resources. Learn more.
+
- **Site Access Review for scalable governance** [Web]
+
SharePoint administrators can now request site owners to review permissions directly from Data Access Governance reports. This helps in identifying and correcting potential oversharing, enhancing security and compliance. Learn more.
+
- **Use Data Access Governance to analyze permissions and prevent Oversharing** [Web]
+
As a SharePoint admin, you can now leverage Data Access Governance (DAG) to understand your tenant's permission landscape. Generate reports that highlight sites with permissioned users exceeding your specified number to identify potential oversharing. Learn more.
+
+### Viva Glint
+
+- **Summarize survey comments for key insights** [Web]
+
+ Quickly uncover top issues and potential solutions from employee feedback by asking natural language questions—empowering leaders to act on valuable insights.
+
### Word
+
- **Reference larger files and write longer prompts with Copilot** [Windows, Web, Mac]
+
Create more detailed drafts by writing prompts over 2,000 characters and referencing files totaling up to 75,000 words. Learn more.
+
## October, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access local files in Microsoft 365 Copilot Chat** [Web]
+
Upload and reference your local files directly within Copilot Chat prompts by using the Local Files button or typing '/', making your interactions more informed and efficient. Learn more.
+
- **Get contextual summaries in Edge sidebar with Microsoft 365 Copilot Chat** [Web]
+
Receive instant contextual summaries directly in the Edge Sidebar while using Microsoft 365 Copilot Chat, helping you quickly grasp information without leaving your browsing experience.
+
- **Solve complex tasks in Copilot chat** [Web]
+
Use Copilot to solve complex math problems, analyze data, generate visualizations, and more in Copilot chat.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 12 additional languages across all features: Bulgarian, Croatian, Estonian, Greek, Indonesian, Latvian, Lithuanian, Romanian, Serbian (Latin), Slovak, Slovenian, and Vietnamese. Microsoft 365 Copilot also improved the handling of language variants: Dutch (Belgium), German (Switzerland), English (UK), Spanish (Mexico), and French (Canada). Learn more.
-### Microsoft 365 Copilot extensibility
+
+### Microsoft 365 Copilot Extensibility
+
- **Create agents in Copilot with instructions and knowledge sources** [Windows, Web]
+
Users can build Copilot agents that include specific instructions and knowledge, such as SharePoint files, directly from Copilot Chat using Copilot Studio Agent Builder. Learn more.
+
- **Customize your agent list in Copilot across apps** [Windows, Web]
+
Reorder or remove agents from your agent list, with updates based on your most recently used agents and admin-installed agents, available in Copilot Chat, Microsoft Teams, and Microsoft 365.
+
- **Invoke agents with @mentions across apps** [Windows, Web]
+
Users can now @mention agents to invoke them in-context within Copilot Chat, Word, and PowerPoint, enhancing workflow efficiency. Learn more.
+
- **Start conversations easily with Agent starter prompts** [Windows, Web]
+
Select from conversation starter prompts to begin using an agent quickly and effortlessly. Learn more.
+
### Outlook
+
- **Rewrite selected text in emails using Copilot** [Windows, Web, Android, iOS, Mac]
+
Select specific parts of your drafted email and ask Copilot in new Outlook to rewrite it or provide more information to rewrite it. Provide detailed instructions or adjust the tone and length to suit your needs.
+
### Word
+
- **Get started on a draft immediately with example prompts** [Web]
+
On blank documents, Copilot in Word offers one-click example prompts to help you get started quickly.
+
## September, 2024
+
### Microsoft 365 Copilot Chat
+
- **Convert Microsoft 365 Copilot Chat conversations into shareable pages** [Web]
+
Transform Microsoft 365 Copilot Chat Copilot responses in work mode into editable and shareable pages, so you can easily access and distribute important information.
+
- **Generate images in Microsoft 365 Copilot Chat** [Web]
+
Create custom images directly within Microsoft 365 Copilot Chat. Using natural language, ask Copilot to generate images. Learn more.
+
- **Get started quicker with grounded prompts** [Windows, Web]
+
Copilot Chat prompt suggestions now include relevant files, people, and meetings to help you get started with grounded prompts. Clicking the prompt card will add the prompt text and related file into the input box where you can select a different file, person, or meeting to fit your needs.
+
### Excel
+
- **Access Copilot from the cell context menu** [Windows, Web]
+
Easily launch Copilot in Excel directly from the cell context menu, streamlining your workflow. Learn more.
+
- **Copilot in Excel is generally available** [Windows, Web, iOS, Mac]
+
Copilot in Excel, now no longer in Preview but Generally Available, works alongside you to analyze and explore your data, answering questions in natural language and revealing insights without the need for complex formulas. Learn more.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Identify suggested candidates for Copilot licensing** [Web]
+
Improve license assignment decisions and maximize Microsoft 365 Copilot adoption. In the Microsoft 365 Copilot usage report readiness section, a new "Suggested Candidates" column helps you assign licenses to users who are most likely to get the most value for Microsoft 365 Copilot, based on factors such as usage of relevant Microsoft 365 apps. Learn more.
### Microsoft 365 Copilot
+
- **AI-generated Images with Copilot and Microsoft Designer** [Windows, Web, Mac]
+
Microsoft Designer integration in Copilot chat allows you to generate that perfect image, providing limitless creativity and bringing your presentations to life. Learn more.
+
- **Insert brand-approved images from SharePoint using Copilot** [Windows, Web]
+
Keep your documents and presentations on brand by adding company-approved images directly from your SharePoint organization asset library through Copilot. Learn more.
+
### OneDrive
+
- **Copilot in OneDrive** [Web]
+
Copilot in OneDrive, available on the web, allows you to ask questions and extract information from your files. Get summaries and insights from Word, PDF, PowerPoint, Excel, and text files. Learn more.
+
### Outlook
+
- **Instantly apply coaching suggestions from Copilot to your emails** [Web, Android, iOS, Mac]
+
Improve your email writing with Coaching by Copilot in new Outlook. Request a full rewrite based on Copilot's feedback or apply the suggestions with a single click. Learn more.
+
### PowerPoint
+
- **Create presentations with new slide types using Copilot** [Web, Mac]
+
When creating a presentation with Copilot, you'll now see agenda, section, and conclusion slides, giving your presentations better structure.
+
- **Improved template support with Copilot** [Windows, Web, Mac]
+
Update your templates to PowerPoint's best practices, and Copilot will generate beautiful, on-brand slides every time you create a presentation. Learn more.
+
### Viva Glint
+
- **View Glint and Pulse survey results in Viva Insights Copilot Dashboard** [Web]
+
Leaders and adoption specialists can now initiate Copilot impact surveys and view the results from Viva Glint or Viva Pulse directly within the Viva Insights Copilot Dashboard. Understand the ROI of deploying Copilot and AI tools in your organization. Learn more.
+
### Viva Learning
+
- **Providing Copilot Academy access to all Microsoft 365 Copilot users** [Web]
+
Microsoft Copilot Academy is now available for all users with a Microsoft 365 Copilot license or any Viva Learning license (premium, suite, or the Microsoft 365-included version). Learn more.
+
### Word
+
- **Easily write a prompt or choose quick actions from the Copilot icon in your Word doc** [Web]
+
The Copilot icon in your document margin now lets you easily write a prompt or choose quick actions, making AI assistance more accessible.
+
- **Reference up to 10 Items when drafting with Copilot** [Web, iOS]
+
Expand your drafting capabilities by referencing up to 10 items—such as files, emails, and meetings—when using Copilot in Word. Learn more.
+
## August, 2024
+
### Copilot Prompt Gallery
+
- **Try prompts directly from the Copilot Prompt Gallery website** [Windows, Web]
+
Quickly launch suggested prompts from the Copilot Prompt Gallery website in Microsoft 365 Copilot Chat by clicking the "Try in" button on the prompt card.
+
### Excel
+
- **Custom chart and PivotTable creation** [Windows, Web, iOS, Mac]
+
You can now ask Copilot for more specific charts and PivotTables, including specifying the X and Y axes. Customize your data presentations more precisely.
+
- **Formula data summaries from columns** [Windows, Web, iOS, Mac]
+
Add a single formula to summarize column data into one cell. This feature allows you to calculate data across columns and return a single result, simplifying data analysis.
+
- **Suggest conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Ask Copilot to suggest conditional formatting for your data. Receive a list of prompts that might highlight key insights in your data.
+
- **Summarize text columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can analyze columns of text to provide summaries, such as identifying main themes in survey responses. Understand your text data more effectively.
+
### Forms
+
- **Copilot helps students understand quiz solutions** [Web]
+
After submitting quizzes, students can now receive Copilot-assisted explanations for correct and incorrect answers. This feature aids learning by providing detailed solution steps.
+
### Outlook
+
- **Schedule meetings from an email with Copilot in new Outlook** [Windows, Web]
+
Quickly shift from an email thread to a meeting invite by clicking "Schedule with Copilot." Copilot summarizes the conversation, drafts an agenda, and includes key context automatically.
+
### PowerPoint
+
- **Build your story with Narrative Builder** [Windows, Web, iOS, Mac]
+
Copilot helps you form your narrative and turns it into a fully designed presentation, streamlining the creative process.
+
- **Custom slideshow of key slides** [Web]
+
Ask Copilot to show key slides, and you'll have one-click access to play a custom presentation of the most important slides.
+
- **Improved presentation summary richness** [Windows, Web, iOS, Mac]
+
Copilot now leverages the latest GPT models to provide richer summaries when generating presentations, enhancing the quality of your content.
+
### Viva Insights
+
- **Analyze Copilot impact over time** [Windows, Web, Android, iOS, Mac]
+
View trendlines of key productivity metrics over 6 months and estimate the financial value of Copilot-assisted hours. Learn more.
+
## July, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access cloud files via Context IQ in Microsoft 365 Copilot Chat** [Web]
+
Easily include relevant documents in your chats with Context IQ suggestions. Now access "Browse Cloud Files" from the "Attach Cloud Files" button. Learn more.
+
### Excel
+
- **Advanced conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Copilot now supports complex conditional formatting, such as highlighting rows based on multiple criteria. Enhance your data visualization with more formulaic formatting options.
+
- **Improved data insights in Copilot** [Windows, Web, iOS, Mac]
+
Copilot is now better at answering questions about data insights like trends and correlations. Get more meaningful analysis to make informed decisions.
+
- **Preview and apply changes suggested by Copilot** [Windows, Web, iOS, Mac]
+
Before Copilot makes changes to your Excel data, you'll now receive a description and an "Apply" button. This gives you more control over your data and allows for refinements before applying changes.
+
- **Preview conditional formatting rules** [Windows, Web, iOS, Mac]
+
When setting a conditional formatting rule, Copilot's response will include a preview of the style and an explanation of the formula. This helps you understand and apply formatting more confidently.
+
- **Support for data ranges resembling tables** [Windows, Web, iOS, Mac]
+
Copilot can now reason over data ranges with a single row of headers, even if they aren't formatted as formal tables. This makes data analysis more flexible.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Gain visibility into Microsoft 365 Copilot Chat usage** [Web]
+
Access usage metrics for Microsoft 365 Copilot Chat to inform your adoption strategies. Learn more.
+
### Microsoft Loop
+
- **Copilot-Assisted Loop Page Creation** [Web]
+
Collaborate with Copilot to create structured Loop pages quickly. Start from scratch or modify existing pages or templates with AI assistance for efficient teamwork.
+
### PowerPoint
+
- **Create presentations from encrypted Word documents** [Windows, Web, iOS, Mac]
+
Copilot for PowerPoint can now create presentations using Word documents that have a protected sensitivity label, expanding your content creation options securely.
+
- **Easier access to Copilot in PowerPoint** [Windows, Web, iOS, Mac]
+
Access Copilot in PowerPoint more easily with new on-canvas entry points. Start enhancing your presentations with AI assistance in fewer clicks.
+
### Viva Engage
+
- **Viva Engage Copilot Adoption Community** [Web]
+
Kickstart your Copilot adoption journey with a templatized community in Viva Engage. Get setup checklists, suggested content, suggested members, and top Q&A to engage your employees effectively. Learn more.
+
### Viva Insights
+
- **Microsoft Copilot Dashboard powered by Viva Insights** [Windows, Web, Android, iOS, Mac]
+
The Microsoft Copilot Dashboard available to all Microsoft 365 Copilot customers at no extra cost. Access it via the Viva Insights app to monitor Copilot adoption and impact. Learn more.
+
### Word
+
- **Summarize longer documents in chat** [Windows, Web, iOS, Mac]
+
Copilot in Word can now summarize longer documents, with the upper limit increased to about four times more words (approx. 80k words). Get comprehensive overviews of lengthy content.
+
## June, 2024
+
### Excel
+
- **Copilot works on any selection in Excel** [Windows, Web, iOS, Mac]
+
Copilot now enables the edit box on any worksheet, regardless of selection. It intelligently finds the nearest table or data range for your analysis queries, making data manipulation more flexible.
+
- **Excel Copilot Chat Helper for Your Data Queries** [Web]
+
Get conversational Excel-specific answers to your Excel-related questions with the Copilot chat helper.
+
### Forms
+
- **Copilot helps you draft quizzes and answers** [Web]
+
Teachers and staff can use Copilot in Forms to generate quizzes, including correct answers. Now they can focus more on helping students engage with assessments, icebreakers, and trivia, and less on writing and programming.
+
- **Gather more responses with Copilot suggestions** [Web]
+
Copilot in Forms now suggests the best distribution channels and settings when sending out forms or quizzes. Reach your audience more effectively and increase engagement.
+
### PowerPoint
+
- **Copilot adds transitions and animations automatically** [Windows, Web, iOS, Mac]
+
When creating presentations from prompts or files, Copilot will now automatically add transitions and animations. This enhancement brings your slides to life without extra effort.
+
- **Create presentations from PDF files with Copilot** [Windows, Web, iOS]
+
You can now generate PowerPoint presentations directly from PDF files using Copilot. This feature simplifies the process of turning documents into engaging presentations.
+
- **Improved content when creating presentations from prompts** [Windows, Web, iOS, Mac]
+
Experience increased depth and richness of content when you create a presentation from a prompt. Copilot now provides better formatting and more detailed slides to enhance your presentations.
+
### Viva Amplify
+
- **Copilot deployment kit now in Viva Amplify** [Web]
+
Prepare and launch Copilot in your organization effortlessly using the new deployment kit in Viva Amplify. Access pre-written and formatted publications to educate users on Copilot features and develop their AI skills, ensuring a smooth rollout. Learn more.
+
### Word
+
- **Find the perfect visual with Copilot + Designer in Word** [Windows, Web, Mac]
+
Enhance your documents with AI-generated images using the new integration of Microsoft Designer in Copilot Chat. Also search for stock images and brand assets to bring your content to life seamlessly.
+
## May, 2024
+
### Microsoft 365 Copilot Chat
+
- **Grounding suggestions when pasting cloud file URLs in Microsoft 365 Copilot Chat** [Web]
+
When you paste file URLs as references in your prompts, Microsoft 365 Copilot Chat now informs you about inline referencing via Context IQ. Access Context IQ in chat using "/" or the "Attach Clip" option to enhance your interactions.
+
- **Proactive file suggestions for enhanced grounding in Microsoft 365 Copilot Chat** [Web]
+
Microsoft 365 Copilot Chat now proactively informs you about grounding opportunities when typing prompts. Highlighted text and file data source insertions help you create more effective and context-rich prompts.
+
### Copilot Prompt Gallery
+
- **Explore curated prompt collections for various roles and industries in Copilot Prompt Gallery** [Windows, Web]
+
Discover and filter through a curated collection of Microsoft-authored prompts tailored for Marketing, HR, Finance, Retail, and Manufacturing roles. These prompts help you get the most out of Copilot with prompts tailored to your role or industry.
+
### Microsoft Loop
+
- **Use Copilot in Loop components across Teams and Outlook** [Web]
+
People with a Copilot license can now leverage Copilot in Loop when they paste Loop components into Teams, Outlook, and Meeting Notes.
+
### Outlook
+
- **Microsoft 365 Copilot Chat available in new Outlook for Windows and web** [Windows, Web, Android, iOS]
+
Access the power of Microsoft 365 Copilot Chat directly within Outlook on the web and the new Outlook for Windows. Access Microsoft 365 Copilot Chat through the left app bar.
+
### SharePoint
+
- **Introducing Restricted SharePoint Search for Copilot** [Web]
+
Administrators can now enable Restricted SharePoint Search to disable organization-wide search and select up to 100 specific SharePoint sites accessible in search and Copilot experiences. Users will still interact with their OneDrive content in Copilot, balancing accessibility and security.
+
### Word
+
- **Use Copilot to enhance pasted text in Word** [Web]
+
Copilot in Word now offers more options when you paste text. Reword content, transform it into tables or lists, and more, making it easier to format and organize your documents efficiently.
+
- **Use Draft with Copilot in Word based on text, list, or table selection** [Web]
+
Use Draft with Copilot in Word with the on-canvas Copilot menu when a user selects text, a list, or a table, which generates new content from Copilot and provides a richer, more interactive experience.
+
## April, 2024
+
### Microsoft 365 Copilot Chat
+
- **Use file links to reference files in your prompts** [Windows, Web]
+
Easily refer to files in your Copilot Chat prompts by pasting their URL links, streamlining your workflow and saving time.
+
### Excel
+
- **Create Formula Columns Using Data from Multiple Tables** [Windows, Web, iOS, Mac]
+
Support for functions like XLOOKUP and SUMIF allows you to create formula columns that utilize data across multiple tables.
+
- **Generate multiple formula columns with a single prompt** [Windows, Web, iOS, Mac]
+
Use Copilot in Excel to create several formula-based columns at once. For example, ask Copilot to split a full name into first and last name columns, and watch it generate both formulas in one go.
+
### Forms
+
- **Copilot helps you rewrite and extend your forms** [Web]
+
Beyond drafting from scratch, Copilot in Forms can now assist you in rewriting titles, descriptions, or questions, and adding more content to your surveys.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 17 additional languages across all features: Arabic, Chinese (Traditional), Czech, Danish, Dutch, Finnish, Hebrew, Hungarian, Korean, Norwegian (Bokmal), Polish, Portuguese (Portugal), Russian, Swedish, Thai, Turkish, and Ukrainian. Learn more.
+
- **Microsoft 365 Copilot Data Residency Commitments** [Web]
+
We have added new commitments covering stored content of interactions with Microsoft 365 Copilot to existing data residency commitments, enhancing data compliance.
+
### Microsoft Loop
+
- **Access Copilot in Loop easily from the right side of the page** [Web]
+
We have added an entry point on the right side of the page to make Loop Copilot's Draft and Rewrite capabilities more accessible.
+
### Microsoft Stream
+
- **Quickly summarize videos with Copilot in Stream** [Web]
+
Copilot in Stream uses AI to help you get insights from videos, allowing you to summarize content or ask in-depth questions efficiently. Learn more.
+
### OneDrive
+
- **Share Word documents with AI-generated summaries** [Web]
+
Users can now include an AI-generated summary when sharing Word documents, helping recipients understand content quickly and collaborate efficiently.
+
### Outlook
+
- **Control the 'Summary by Copilot' banner in new Outlook** [Web]
+
You can now choose to show or hide the 'Summary by Copilot' banner in your emails for a personalized experience.
+
- **Copilot chat now available in new Outlook** [Windows, Web]
+
Access Copilot chat within Outlook to type and receive responses while managing your emails, all in a convenient side panel.
+
### SharePoint
+
- **Advanced tenant rename in SharePoint Advanced Management** [Web]
+
Change your SharePoint domain with greater control, including prioritizing up to 4,000 sites for early execution and supporting tenants with up to 100,000 sites. Learn more.
+
- **Restricted Access Control** [Web]
+
Control permissions of sensitive data by restricting SharePoint sites and OneDrive's access to specific users and their corresponding Copilot. Learn more.
+
### Viva Engage
+
- **Copilot in Viva Engage enhances communication and connection** [Web]
+
Copilot in Viva Engage helps you catch up on what's happening in your network and write engaging communications that support your goals.
+
### Whiteboard
+
- **Discover Whiteboard Copilot with First Run Experience** [Windows, Web]
+
First-time users will be guided to discover and leverage the power of Whiteboard Copilot features through an interactive introduction.
+
### Word
+
- **Bing search integration brings the power of the web to your chats in Word** [Windows, Web]
+
Ask Copilot a question in Word chat, and Copilot generates an answer using the power of integrated Bing search. And you never have to leave the app.
+
- **Bring the latest from your organization into your Word chats with Microsoft Copilot Graph-grounded search.** [Windows, Web]
+
Bring the latest from your organization into your Word chats with Microsoft Graph-grounded search, enhancing the power of Copilot.
+
- **Draft with Copilot supports referencing files encrypted with sensitivity labels** [Windows, Web, Mac]
+
Draft with Copilot now allows you to reference files encrypted with sensitivity labels, ensuring secure document creation.
+
- **Fine-tune rewrite responses in Copilot in Word** [Web]
+
Customize the output from Copilot's Rewrite feature by specifying how the text should change to better suit your needs.
+
- **Use a url to reference supported files in Copilot in Word** [Web]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
## March, 2024
+
### Microsoft 365 Copilot Chat
+
- **Rich entity representations in Copilot responses** [Windows, Web, Android, iOS, Mac]
+
Copilot now provides richer representations of entities like people, events, and files within responses, enhancing context and usability.
+
### Excel
+
- **Speak to Copilot in Excel with new input methods** [Windows, Web, iOS, Mac]
+
You can now use your microphone to send prompts to Copilot in Excel, and explore the Prompt Guide for customized suggestions.
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Send Copilot welcome emails when assigning licenses to users** [Web]
+
Help users get started with Copilot faster. When assigning Microsoft 365 Copilot licenses, you can now send users a welcome email containing helpful resources and tips to maximize their Copilot experience.
+
### Word
+
- **Share Word documents with AI summaries** [Web]
+
Include an AI-generated document summary when sharing Word documents. Recipients get a rich preview, aiding quicker understanding and collaboration.
+
## February, 2024
+
### Forms
+
- **Create and customize Forms quickly with Copilot** [Web]
+
Use natural language to describe the form you need, and Copilot will generate it for you. Copilot can also help you customize your form with a theme or apply response settings, to help drive engagement from your audience.
+
## January, 2024
+
### Excel
+
- **Enjoy conversational Copilot in Excel** [Windows, Web, iOS, Mac]
+
Copilot in Excel now remembers the context of your chats, allowing for follow-up questions and clarifications for a smoother experience.
+
### Microsoft Purview
+
- **Communication Compliance-Detect Microsoft 365 Copilot interactions template** [Web]
+
Communication Compliance is introducing a new template dedicated to analyzing all Microsoft 365 Copilot prompts and responses, to help ensure content prohibited by customers' policies, such as harassing or threatening language, isn't being used Microsoft 365 interfaces. This scales Communication Compliance's reach, consistent with Microsoft 365's expanding interfaces. In addition, administrators are also able to select Copilot chats as a checked location in the policy creation wizard for any new or existing policies. This empowers administrators to fine-tune their management strategy precisely to their organization's needs, with a focus on user privacy protection. Whether it's setting specific conditions or deploying trainable classifiers, this feature provides flexibility and adaptability in compliance management, ensuring your organization's communications remain secure, compliant, and respectful of user privacy.
+
## December, 2023
-### Microsoft 365 admin center
+
+### Microsoft 365 Admin Center
+
- **Track Copilot readiness and usage across Microsoft 365** [Web]
+
Easily assess your organization's technical eligibility, license assignment, and active usage of Microsoft 365 Copilot. Understand which apps drive engagement, monitor trends over time, and use these insights to guide licensing and adoption strategy decisions. Learn more.
+
## November, 2023
+
### Microsoft 365 Copilot Chat
+
- **Access Microsoft 365 Copilot Chat on Microsoft365.com** [Windows, Web]
+
Use Microsoft 365 Copilot Chat directly from microsoft365.com/chat, providing a unified experience across platforms. Learn more.
+
- **Insert entities into prompts in Microsoft 365 Copilot Chat** [Windows, Web]
+
Use '/' to add entities in prompts submitted to Copilot, focusing responses on the most relevant information. Learn more.
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Mac]
+
Your single destination to take on any task, combining AI power with your work content to draft content, catch up, and get answers. Learn more.
+
### Excel
+
- **Add formula columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot provides formula suggestions with explanations, helping you create new columns based on your data. Learn more.
+
- **Generate data insights with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can suggest insights like summaries, trends, and outliers, returning results as charts or PivotTables to enhance your analysis. Learn more.
+
- **Use Copilot to highlight, filter, and sort data in Excel tables** [Windows, Web, iOS, Mac]
+
Transform your data by asking Copilot to format your Excel tables. You can highlight top values, filter specific entries, or sort data. For example, ask Copilot to highlight the top 3 values in a column, and it will apply conditional formatting. Learn more.
+
### Microsoft Loop
+
- **Collaborate with Copilot in Loop** [Web]
+
Work together with Copilot and your team to create content, generate ideas, and refine results collaboratively. Learn more.
+
- **Enjoy richer Copilot in Loop outputs with formatting and tables** [Web]
+
Copilot can now produce results with rich formatting, including headings and tables, for more organized content.
+
- **Experience visual updates to the Copilot Block** [Web]
+
The Copilot Block now blends more naturally into your page, with AI interactions happening in the right margin.
+
- **Generate Page Summaries with Copilot in Loop** [Web]
+
Insert a 'Page Summary' component to have Copilot summarize the content on your current Loop page. Learn more.
+
- **Get insights from your current page content** [Web]
+
Copilot can answer questions based on the content on your current Loop page, providing summaries and analyses. Learn more.
+
- **Rewrite existing content with Copilot** [Web]
+
Leverage Copilot to help rewrite, supplement, or gain insights from content that already exists in Loop. Learn more.
+
- **See when teammates are editing prompts** [Web]
+
Loop Copilot now indicates when a teammate is actively writing or refining a prompt, enhancing collaboration. Learn more.
+
- **Summarize and share changes with your team** [Web]
+
Use the Recap experience to have Copilot generate a summary of your changes and share it with your team. Learn more.
+
### Microsoft Purview
+
- **Microsoft Purview capabilities for Microsoft 365 Copilot** [Web]
- Microsoft Purview is launching several capabilities that help with security and compliance of data in Microsoft 365 Copilot. These are capabilities in Information Protection, Data Lifecycle Management, Audit, eDiscovery, and Communication Compliance.
+
+ Microsoft Purview is launching several capabilities that help with security and compliance of data in Microsoft 365 Copilot. These are capabilities in Information Protection, Data Lifecycle Management, Audit, eDiscovery, and Communication Compliance.
+
### Microsoft Teams
+
- **Copilot available in a channel post conversation** [Windows, Web, Android, iOS, Mac]
+
Copilot can summarize and support Q&A on a channel post conversation, assisting you directly in your channel conversations.
+
- **Copilot to summarize and answer Q&A in Teams Chat** [Windows, Web, Android, iOS, Mac]
+
Copilot helps you catch up on conversations by providing summaries and answering questions in Teams chats.
+
- **Use Copilot in meetings, 1:1 and group calls** [Windows, Web, Android, iOS, Mac]
+
Get summaries, action items, and more after meetings and calls through Copilot in the side panel.
+
### Outlook
+
- **Draft emails with Copilot in new Outlook** [Windows, Web, Mac]
+
Use Copilot to draft new emails from prompts, adjust length and tone, and even select parts of an email and use Copilot to rewrite those specific sections effortlessly. Learn more.
+
- **Get Coaching from Copilot for an email draft in new Outlook** [Web, Android, iOS, Mac]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness. Learn more.
+
- **Get quick summaries of email threads in new Outlook** [Web]
+
Receive concise summaries of email conversations, helping you stay informed without reading every message. Learn more.
+
- **Meeting Recap in Calendar** [Windows, Web]
+
After a meeting ends, open the event from your calendar in the new Outlook to view the meeting summary, mentions, tasks, and more, helping you catch up and collaborate asynchronously.
+
### PowerPoint
+
- **Automatically add an agenda slide to your presentation** [Windows, Web, iOS, Mac]
+
Generate and insert an agenda slide based on your existing content, helping you prepare your audience for what's ahead.
+
- **Create a presentation from a simple prompt** [Windows, Web, iOS, Mac]
+
Provide a prompt and Copilot will help you generate a presentation, saving you time and effort Learn more.
+
- **Create presentations using your organization's templates** [Windows, Web, iOS, Mac]
+
Generate presentations that utilize your company's templates, ensuring consistency and alignment with your brand. Learn more.
+
- **Edit your presentation in Copilot chat** [Windows, Web, iOS, Mac]
+
Add slides, add animations, or organize your presentation in Copilot chat, streamlining your editing process. Learn more.
+
- **Get answers about your presentation** [Windows, Web, iOS, Mac]
+
Ask questions about your existing PowerPoint presentation to quickly retrieve information and insights.
+
- **Organize your presentation's flow easily** [Windows, Web, iOS, Mac]
+
Structure your slides, add sections, and insert an agenda slide to improve the overall flow of your presentation. Learn more.
+
- **Summarize your presentation and identify key points** [Windows, Web, iOS, Mac]
+
Generate summaries, highlight key slides, and identify action items from your presentation, making it easier to review and share essential information. Learn more.
+
### Whiteboard
+
- **Generate ideas effortlessly** [Windows, Web, Android, iOS]
+
Brainstorm by generating short text ideas, fueling your creativity during collaborative sessions.
+
- **Organize your ideas into themes** [Windows, Web, Android, iOS]
+
Categorize and group your ideas into themes, helping you visualize and structure your brainstorming sessions.
+
- **Summarize your Whiteboard sessions** [Windows, Web, Android, iOS]
+
Create summaries of your Whiteboard content, capturing key points from your collaborative work.
+
### Word
+
- **Apply highest sensitivity label to generated content** [Windows, Web, iOS, Mac]
+
Ensure your documents maintain appropriate confidentiality levels as labels are automatically updated when referencing files with higher sensitivity.
+
- **Draft with Copilot** [Windows, Web, iOS, Mac]
+
Draft new content for your blank or existing documents, helping you write faster and with ease. Learn more.
+
- **Get answers and enhance content with chat in Word** [Windows, Web, Mac]
+
Ask specific questions about your document or request additional details to enhance your content, making your writing process more efficient. Learn more.
+
- **Rewrite with Copilot** [Windows, Web, iOS, Mac]
+
Get suggestions for how to rewrite any text in your document, enhancing clarity and effectiveness. Learn more.
+
- **Summarize your document using chat prompts** [Windows, Web, Mac]
+
Ask via chat to summarize your document, highlighting key points for quick understanding and review. Learn more.
+
- **Use voice prompts for assistance** [Windows, Web, Mac]
+
Use voice to dictate into the Copilot chat prompt field
+
- **Visualize as table** [Web]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling. Learn more.
## [Android](#tab/androidos)
+
+## April 2, 2025
+Updates released between March 20, 2025, and April 2, 2025.
+### Microsoft 365 Copilot Chat
+- **Ask questions about images with natural language** [Android, iOS, Web]
+
+ Easily gain insights from images by asking natural language questions. Upload images for quick analysis using advanced vision models—helping you make sense of visual data across your apps.
+
+## March 19, 2025
+Updates released between March 5, 2025, and March 19, 2025.
+### Microsoft 365 Copilot App
+
+- **View, edit and share Copilot Pages on mobile** [Android, iOS]
+
+ Stay productive while on the go—use the Microsoft 365 mobile app to view, edit, or share Copilot-generated pages instantly. Collaborate with colleagues in real time, whether you’re commuting or between meetings. Learn more.
+
## March 4, 2025
-Updates released between February 19, 2025, and March 4, 2025.
+
+Updates released between February 20, 2025, and March 4, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Search archived mailboxes in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Leverage Copilot to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in my archives' in your prompts to quickly locate key messages.
+
## February 19, 2025
+
Updates released between February 5, 2025, and February 19, 2025.
+
### Microsoft Teams
+
- **AI-enabled file summaries on mobile** [Android, iOS]
+
Summarize Word, PowerPoint, and PDF files on mobile by tapping the summary icon or selecting “Summarize with Copilot” for a quick, digestible overview—even on small screens.
+
### Viva Insights
+
- **Copilot dashboard for usage and retention insights** [Windows, Web, Android, iOS, Mac]
+
Dive into usage frequency, compare top user groups, and track retention metrics—all in a single, comprehensive dashboard for actionable insights. Learn more.
+
## February 4, 2025
+
Updates released between January 24, 2025, and February 4, 2025.
### Microsoft 365 Copilot App
+
- **Updates to the Microsoft 365 (Office) app** [Windows, Web, Android, iOS]
+
The Microsoft 365 Copilot app (formerly Microsoft 365 app) has a new name and icon. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Access support pages in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
View organizational support pages directly within Copilot Chat, for quick help and guidance in your workflow.
+
- **Accommodate user’s time zones in Copilot** [Windows, Web, Android, iOS]
+
Copilot now references your local time zone when responding helping to avoid confusion and scheduling errors.
+
+
## January 23, 2025
+
Updates released between January 8, 2025, and January 23, 2025.
### Microsoft 365 Copilot Chat
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS]
+
Microsoft 365 Copilot Chat—free, secure AI chat powered by GPT-4o with agents accessible right in chat, and IT controls including enterprise data protection and agent management. Copilot Chat serves as a powerful new on-ramp for everyone in your organization to build an AI habit. Get started with Copilot Chat with the updated Microsoft 365 Copilot app (formerly Microsoft 365 app). Learn more.
+
## January 7, 2025
+
+Updates released between December 18, 2024, and January 7, 2025.
### Copilot Prompt Gallery
+
- **Access Copilot Prompt Gallery in Word and PowerPoint mobile apps** [Android, iOS]
+
Discover and use suggested Copilot prompts in Prompt Gallery within the Word and PowerPoint apps on iOS and Android. Enhance your productivity on the go with helpful AI suggestions.
+
### Outlook
+
- **Switch between Work and Web grounding in Microsoft 365 Copilot Chat** [Android, iOS]
+
In Outlook mobile apps, you can now toggle between Microsoft 365 Graph (Work) and Web grounding in Microsoft 365 Copilot Chat. Choose the grounding source that best suits your needs for more personalized assistance.
+
### Viva Insights
+
- **New metrics for enterprise data-protected prompts** [Windows, Web, Android, iOS, Mac]
+
Gain visibility into prompts submitted through Microsoft 365 Copilot Chat (web) and enterprise data-protected Copilot scenarios. Learn more.
+
+## December 17, 2024
+
+### Viva Pulse
+
+- **Templates for Copilot readiness, adoption and impact** [Windows, Web, Android, iOS, Mac]
+
+ Use new templates to measure employee sentiment and assess your organization's Copilot adoption—all within your Viva Pulse subscription.
+
## November, 2024
+
### Microsoft 365 Copilot Chat
+
- **Focus Copilot responses on specific emails in Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Narrow down Copilot responses by specifying a particular email folder, sub-folder, or subject line. Get more precise assistance by directing Copilot to the emails that matter most to you.
+
### Microsoft Teams
+
- **Disable Copilot in meetings** [Windows, Android, iOS, Mac]
+
You can now turn Copilot off in your meeting settings. Copilot, recording, and transcription are disabled for meetings where Copilot is off. Learn more.
+
## October, 2024
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 12 additional languages across all features: Bulgarian, Croatian, Estonian, Greek, Indonesian, Latvian, Lithuanian, Romanian, Serbian (Latin), Slovak, Slovenian, and Vietnamese. Microsoft 365 Copilot also improved the handling of language variants: Dutch (Belgium), German (Switzerland), English (UK), Spanish (Mexico), and French (Canada). Learn more.
+
### Microsoft Teams
+
- **Empower meeting organizers to adjust Copilot availability** [Windows, Android, iOS, Mac]
+
Admins can now set Copilot in Teams meetings to 'During and After Meeting' and allow meeting organizers to change it. Learn more.
+
### Outlook
+
- **Rewrite selected text in emails using Copilot** [Windows, Web, Android, iOS, Mac]
+
Select specific parts of your drafted email and ask Copilot in new Outlook to rewrite it or provide more information to rewrite it. Provide detailed instructions or adjust the tone and length to suit your needs.
+
## September, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access Microsoft 365 Copilot Chat work mode in Microsoft 365 app on mobile** [Android, iOS]
+
Ground your Copilot conversations in your work content with Microsoft 365 Copilot Chat in the Microsoft 365 app.
+
### Outlook
+
- **Instantly apply coaching suggestions from Copilot to your emails** [Web, Android, iOS, Mac]
+
Improve your email writing with Coaching by Copilot in new Outlook. Request a full rewrite based on Copilot's feedback or apply the suggestions with a single click. Learn more.
+
## August, 2024
+
### Copilot Prompt Gallery
+
- **Copilot Prompt Gallery is now available on iOS and Android** [Android, iOS]
+
Explore and use suggested prompts in Copilot Prompt Gallery within the Teams app on iOS and Android. Stay productive with ready-made prompts to use on the go.
+
### Microsoft Teams
+
- **Copilot summarizes content over specified time periods** [Windows, Android, iOS, Mac]
+
Copilot can now identify and summarize information over specific time periods, responding accurately to queries like "yesterday," "last month," or "last year." Learn more.
+
- **Linked files in Copilot replies** [Windows, Android, iOS, Mac]
+
We have optimized Copilot in Microsoft Teams to include linked files in Copilot answers for quicker and more reliable retrieval of files and links, making your experience smoother and more efficient.
+
### Outlook
+
- **Microsoft 365 Copilot Chat in Outlook Mobile** [Android, iOS]
+
The Microsoft 365 Copilot Chat experience is now available in Outlook for iOS and Android. Enhance your mobile email experience with AI-powered assistance on the go.
+
### Viva Insights
+
- **Analyze Copilot impact over time** [Windows, Web, Android, iOS, Mac]
+
View trendlines of key productivity metrics over 6 months and estimate the financial value of Copilot-assisted hours. Learn more.
+
## July, 2024
+
### Viva Insights
+
- **Microsoft Copilot Dashboard powered by Viva Insights** [Windows, Web, Android, iOS, Mac]
+
The Microsoft Copilot Dashboard available to all Microsoft 365 Copilot customers at no extra cost. Access it via the Viva Insights app to monitor Copilot adoption and impact. Learn more.
+
## June, 2024
+
### Microsoft Teams
+
- **Admins can enforce Copilot during and after meetings** [Windows, Android, iOS, Mac]
+
Admins can set Copilot in Teams meetings to 'During and After Meeting' and prevent meeting organizers from changing it. Learn more.
+
- **Control access to recordings and transcripts** [Windows, Android, iOS, Mac]
+
Introducing new meeting settings that allow you to control who can access recordings, transcripts, and prompt Copilot. Enhance your meeting security and privacy with these granular controls.
+
## May, 2024
+
### Microsoft Teams
+
- **Copilot notification in unrecorded meetings** [Windows, Android, iOS, Mac]
+
When Copilot is started in a meeting that isn't being recorded, every participant is notified that Copilot is active.
+
+
### Outlook
+
- **Microsoft 365 Copilot Chat available in new Outlook for Windows and web** [Windows, Web, Android, iOS]
+
Access the power of Microsoft 365 Copilot Chat directly within Outlook on the web and the new Outlook for Windows. Access Microsoft 365 Copilot Chat through the left app bar.
+
## April, 2024
+
### Microsoft 365 Copilot Chat
+
- **Microsoft 365 Copilot Chat now available in the Microsoft 365 app** [Android, iOS]
+
Microsoft 365 mobile app users with a Microsoft 365 Copilot license can receive answers grounded in their organizational Graph data, enhancing mobile productivity.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 17 additional languages across all features: Arabic, Chinese (Traditional), Czech, Danish, Dutch, Finnish, Hebrew, Hungarian, Korean, Norwegian (Bokmal), Polish, Portuguese (Portugal), Russian, Swedish, Thai, Turkish, and Ukrainian. Learn more.
+
### Microsoft Teams
+
- **Copilot understands previous conversations in chats and channels** [Windows, Android, iOS, Mac]
+
When you ask follow-up questions in chats or channels, Copilot now has context from past interactions to provide more accurate answers.
+
## March, 2024
+
### Microsoft 365 Copilot Chat
+
- **Rich entity representations in Copilot responses** [Windows, Web, Android, iOS, Mac]
+
Copilot now provides richer representations of entities like people, events, and files within responses, enhancing context and usability.
+
### Microsoft Teams
+
- **Customize your draft message when you compose with Copilot** [Windows, Android, iOS, Mac]
+
You can now instruct Copilot to adjust your draft message however you'd like. Adjust the message with a custom prompt, like "add a call to action" or "make it persuasive". Learn more.
+
- **Enhanced Copilot UI with new date dividers** [Windows, Android, iOS, Mac]
+
We have improved the Copilot user interface with new date dividers for chats, channels, and meeting Copilot.
+
+
## November, 2023
+
### Microsoft Teams
+
- **Copilot available in a channel post conversation** [Windows, Web, Android, iOS, Mac]
+
Copilot can summarize and support Q&A on a channel post conversation, assisting you directly in your channel conversations.
+
- **Copilot to summarize and answer Q&A in Teams Chat** [Windows, Web, Android, iOS, Mac]
+
Copilot helps you catch up on conversations by providing summaries and answering questions in Teams chats.
+
- **Use Copilot in meetings, 1:1 and group calls** [Windows, Web, Android, iOS, Mac]
+
Get summaries, action items, and more after meetings and calls through Copilot in the side panel.
+
### Outlook
+
- **Compose emails effortlessly on Outlook for Android and iOS** [Android, iOS]
+
Provide a prompt and generate a full email. Customize the tone and length to suit your needs, streamlining your email writing process. Learn more.
+
- **Get Coaching from Copilot for an email draft in new Outlook** [Web, Android, iOS, Mac]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness. Learn more.
+
- **Summarize email conversations on Outlook for Android and iOS** [Android, iOS]
+
Quickly get summaries of entire email threads, helping you catch up on conversations efficiently. Learn more.
+
### Whiteboard
+
- **Generate ideas effortlessly** [Windows, Web, Android, iOS]
+
Brainstorm by generating short text ideas, fueling your creativity during collaborative sessions.
+
- **Organize your ideas into themes** [Windows, Web, Android, iOS]
+
Categorize and group your ideas into themes, helping you visualize and structure your brainstorming sessions.
+
- **Summarize your Whiteboard sessions** [Windows, Web, Android, iOS]
+
Create summaries of your Whiteboard content, capturing key points from your collaborative work.
## [iOS](#tab/appleios)
+
+## April 2, 2025
+Updates released between March 20, 2025, and April 2, 2025.
+### Microsoft 365 Copilot Chat
+- **Ask questions about images with natural language** [Android, iOS, Web]
+
+ Easily gain insights from images by asking natural language questions. Upload images for quick analysis using advanced vision models—helping you make sense of visual data across your apps.
+### Word
+- **Narrate your ideas to Copilot** [iOS]
+
+ Brainstorm out loud and let Copilot convert your voice notes into structured documents, making it easier to organize and develop your ideas.
+- **Rewrite with Copilot** [iOS]
+
+ Get suggestions from Copilot on how to rewrite any text, helping you improve clarity and style effortlessly.
+- **Visualize as table** [iOS]
+
+ Easily convert plain text into structured tables, helping you organize and present data more effectively in your daily work.
+
+## March 19, 2025
+
+Updates released between March 5, 2025, and March 19, 2025.
+### Microsoft 365 Copilot App
+
+- **View, edit and share Copilot Pages on mobile** [Android, iOS]
+
+ Stay productive while on the go—use the Microsoft 365 mobile app to view, edit, or share Copilot-generated pages instantly. Collaborate with colleagues in real time, whether you’re commuting or between meetings. Learn more.
+
## March 4, 2025
-Updates released between February 19, 2025, and March 4, 2025.
+
+Updates released between February 20, 2025, and March 4, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Search archived mailboxes in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Leverage Copilot to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in my archives' in your prompts to quickly locate key messages.
-### Microsoft 365 App
+
+### Microsoft 365 Copilot App
+
- **View, edit and share Copilot Pages on mobile** [iOS]
+
Stay productive no matter where you are. With mobile access to Copilot Pages, you can view, edit, and share content on the go, ensuring seamless collaboration with colleagues. Learn more.
+
## February 19, 2025
+
Updates released between February 5, 2025, and February 19, 2025.
+
+
### Microsoft Teams
+
- **AI-enabled file summaries on mobile** [Android, iOS]
+
Summarize Word, PowerPoint, and PDF files on mobile by tapping the summary icon or selecting “Summarize with Copilot” for a quick, digestible overview—even on small screens.
+
### Viva Insights
+
- **Copilot dashboard for usage and retention insights** [Windows, Web, Android, iOS, Mac]
+
Dive into usage frequency, compare top user groups, and track retention metrics—all in a single, comprehensive dashboard for actionable insights. Learn more.
+
+
## February 4, 2025
+
Updates released between January 24, 2025, and February 4, 2025.
+
### Microsoft 365 Copilot App
+
- **Updates to the Microsoft 365 (Office) app** [Windows, Web, Android, iOS]
+
The Microsoft 365 Copilot app (formerly Microsoft 365 app) has a new name and icon. Learn more.
+
### Microsoft 365 Copilot Chat
+
- **Access support pages in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
View organizational support pages directly within Copilot Chat, for quick help and guidance in your workflow.
+
- **Accommodate user’s time zones in Copilot** [Windows, Web, Android, iOS]
+
Copilot now references your local time zone when responding helping to avoid confusion and scheduling errors.
+
### Word
+
- **Draft from selected text, lists, or tables** [iOS]
+
Generate new content right where you work by selecting text, lists, or tables and tapping into Copilot’s on-canvas menu. Quickly refine drafts and collaborate more interactively. Learn more.
+
- **Draft with Copilot** [iOS]
+
Quickly produce paragraphs or entire sections for your documents, whether you’re creating a brand-new file or adding to existing text. Learn more.
+
## January 23, 2025
+
Updates released between January 8, 2025, and January 23, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS]
+
Microsoft 365 Copilot Chat—free, secure AI chat powered by GPT-4o with agents accessible right in chat, and IT controls including enterprise data protection and agent management. Copilot Chat serves as a powerful new on-ramp for everyone in your organization to build an AI habit. Get started with Copilot Chat with the updated Microsoft 365 Copilot app (formerly Microsoft 365 app). Learn more.
+
### Viva Insights
+
- **New Copilot adoption metrics and completing total actions taken** [Windows, iOS, Mac]
+
This adds seven new Copilot adoption metrics to the Copilot dashboard and Viva Insights Advanced insights. It also updates the "total actions taken" metric in the Copilot dashboard to include these new Copilot adoption metrics. Learn more.
+
## January 7, 2025
+
+Updates released between December 18, 2024, and January 7, 2025.
+
### Copilot Prompt Gallery
+
- **Access Copilot Prompt Gallery in Word and PowerPoint mobile apps** [Android, iOS]
+
Discover and use suggested Copilot prompts in Prompt Gallery within the Word and PowerPoint apps on iOS and Android. Enhance your productivity on the go with helpful AI suggestions.
+
### Outlook
+
- **Switch between Work and Web grounding in Microsoft 365 Copilot Chat** [Android, iOS]
+
In Outlook mobile apps, you can now toggle between Microsoft 365 Graph (Work) and Web grounding in Microsoft 365 Copilot Chat. Choose the grounding source that best suits your needs for more personalized assistance.
+
### Viva Insights
+
- **Expand your understanding of Copilot adoption with enhanced metrics** [Windows, iOS, Mac]
+
Access seven new Copilot metrics and see them reflected in "total actions taken," helping you better track how teams use Copilot. Learn more.
+
- **New metrics for enterprise data-protected prompts** [Windows, Web, Android, iOS, Mac]
+
Gain visibility into prompts submitted through Microsoft 365 Copilot Chat (web) and enterprise data-protected Copilot scenarios. Learn more.
+
+## December, 2024
+
+### Viva Pulse
+
+- **Templates for Copilot readiness, adoption and impact** [Windows, Web, Android, iOS, Mac]
+
+ Use new templates to measure employee sentiment and assess your organization's Copilot adoption—all within your Viva Pulse subscription.
+
## November, 2024
+
### Microsoft 365 Copilot Chat
+
- **Focus Copilot responses on specific emails in Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Narrow down Copilot responses by specifying a particular email folder, sub-folder, or subject line. Get more precise assistance by directing Copilot to the emails that matter most to you.
+
+### Copilot Prompt Gallery
+
+- **Copilot Prompt Gallery available in Word and PowerPoint on iOS** [iOS]
+
+ Use suggested prompts directly from your Word and PowerPoint apps on iOS to spark creativity and streamline your workflow.
+
### Microsoft Teams
+
- **Disable Copilot in meetings** [Windows, Android, iOS, Mac]
+
You can now turn Copilot off in your meeting settings. Copilot, recording, and transcription are disabled for meetings where Copilot is off. Learn more.
+
## October, 2024
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 12 additional languages across all features: Bulgarian, Croatian, Estonian, Greek, Indonesian, Latvian, Lithuanian, Romanian, Serbian (Latin), Slovak, Slovenian, and Vietnamese. Microsoft 365 Copilot also improved the handling of language variants: Dutch (Belgium), German (Switzerland), English (UK), Spanish (Mexico), and French (Canada). Learn more.
+
### Microsoft Teams
+
- **Empower meeting organizers to adjust Copilot availability** [Windows, Android, iOS, Mac]
+
Admins can now set Copilot in Teams meetings to 'During and After Meeting' and allow meeting organizers to change it. Learn more.
+
### Outlook
+
- **Rewrite selected text in emails using Copilot** [Windows, Web, Android, iOS, Mac]
+
Select specific parts of your drafted email and ask Copilot in new Outlook to rewrite it or provide more information to rewrite it. Provide detailed instructions or adjust the tone and length to suit your needs.
+
### Viva Insights
+
- **New Microsoft 365 Copilot Chat prompts submitted through Teams** [Windows, iOS, Mac]
+
Adding new Microsoft 365 Copilot Chat prompts submitted through Teams metric to Copilot dashboard and Viva Insights Advanced insights.
+
## September, 2024
+
### Microsoft 365 Copilot Chat
+
- **Access Microsoft 365 Copilot Chat work mode in Microsoft 365 app on mobile** [Android, iOS]
+
Ground your Copilot conversations in your work content with Microsoft 365 Copilot Chat in the Microsoft 365 app.
+
### Excel
+
- **Copilot in Excel is generally available** [Windows, Web, iOS, Mac]
+
Copilot in Excel, now no longer in Preview but Generally Available, works alongside you to analyze and explore your data, answering questions in natural language and revealing insights without the need for complex formulas. Learn more.
+
### Outlook
+
- **Instantly apply coaching suggestions from Copilot to your emails** [Web, Android, iOS, Mac]
+
Improve your email writing with Coaching by Copilot in new Outlook. Request a full rewrite based on Copilot's feedback or apply the suggestions with a single click. Learn more.
+
### Word
+
- **Reference up to 10 Items when drafting with Copilot** [Web, iOS]
+
Expand your drafting capabilities by referencing up to 10 items—such as files, emails, and meetings—when using Copilot in Word. Learn more.
+
## August, 2024
+
### Copilot Prompt Gallery
+
- **Copilot Prompt Gallery is now available on iOS and Android** [Android, iOS]
+
Explore and use suggested prompts in Copilot Prompt Gallery within the Teams app on iOS and Android. Stay productive with ready-made prompts to use on the go.
+
### Excel
+
- **Custom chart and PivotTable creation** [Windows, Web, iOS, Mac]
+
You can now ask Copilot for more specific charts and PivotTables, including specifying the X and Y axes. Customize your data presentations more precisely.
+
- **Formula data summaries from columns** [Windows, Web, iOS, Mac]
+
Add a single formula to summarize column data into one cell. This feature allows you to calculate data across columns and return a single result, simplifying data analysis.
+
- **Suggest conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Ask Copilot to suggest conditional formatting for your data. Receive a list of prompts that might highlight key insights in your data.
+
- **Summarize text columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can analyze columns of text to provide summaries, such as identifying main themes in survey responses. Understand your text data more effectively.
+
### Microsoft Teams
+
- **Copilot summarizes content over specified time periods** [Windows, Android, iOS, Mac]
+
Copilot can now identify and summarize information over specific time periods, responding accurately to queries like "yesterday," "last month," or "last year." Learn more.
+
- **Linked files in Copilot replies** [Windows, Android, iOS, Mac]
+
We have optimized Copilot in Microsoft Teams to include linked files in Copilot answers for quicker and more reliable retrieval of files and links, making your experience smoother and more efficient.
+
### Outlook
+
- **Microsoft 365 Copilot Chat in Outlook Mobile** [Android, iOS]
+
The Microsoft 365 Copilot Chat experience is now available in Outlook for iOS and Android. Enhance your mobile email experience with AI-powered assistance on the go.
+
### PowerPoint
+
- **Build your story with Narrative Builder** [Windows, Web, iOS, Mac]
+
Copilot helps you form your narrative and turns it into a fully designed presentation, streamlining the creative process.
+
- **Improved presentation summary richness** [Windows, Web, iOS, Mac]
+
Copilot now leverages the latest GPT models to provide richer summaries when generating presentations, enhancing the quality of your content.
+
### Viva Insights
+
- **Analyze Copilot impact over time** [Windows, Web, Android, iOS, Mac]
+
View trendlines of key productivity metrics over 6 months and estimate the financial value of Copilot-assisted hours. Learn more.
+
### Word
+
- **Document Summaries in Microsoft 365 Mobile App Previews** [iOS]
+
Copilot generates summaries of files that you can view in the file browser of the Microsoft 365 mobile app, helping you understand content without opening the file.
+
## July, 2024
+
### Excel
+
- **Advanced conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Copilot now supports complex conditional formatting, such as highlighting rows based on multiple criteria. Enhance your data visualization with more formulaic formatting options.
+
- **Improved data insights in Copilot** [Windows, Web, iOS, Mac]
+
Copilot is now better at answering questions about data insights like trends and correlations. Get more meaningful analysis to make informed decisions.
+
- **Preview and apply changes suggested by Copilot** [Windows, Web, iOS, Mac]
+
Before Copilot makes changes to your Excel data, you'll now receive a description and an "Apply" button. This gives you more control over your data and allows for refinements before applying changes.
+
- **Preview conditional formatting rules** [Windows, Web, iOS, Mac]
+
When setting a conditional formatting rule, Copilot's response will include a preview of the style and an explanation of the formula. This helps you understand and apply formatting more confidently.
+
- **Support for data ranges resembling tables** [Windows, Web, iOS, Mac]
+
Copilot can now reason over data ranges with a single row of headers, even if they aren't formatted as formal tables. This makes data analysis more flexible.
+
### PowerPoint
+
- **Create presentations from encrypted Word documents** [Windows, Web, iOS, Mac]
+
Copilot for PowerPoint can now create presentations using Word documents that have a protected sensitivity label, expanding your content creation options securely.
+
- **Easier access to Copilot in PowerPoint** [Windows, Web, iOS, Mac]
+
Access Copilot in PowerPoint more easily with new on-canvas entry points. Start enhancing your presentations with AI assistance in fewer clicks.
+
### Viva Insights
+
- **Microsoft Copilot Dashboard powered by Viva Insights** [Windows, Web, Android, iOS, Mac]
+
The Microsoft Copilot Dashboard available to all Microsoft 365 Copilot customers at no extra cost. Access it via the Viva Insights app to monitor Copilot adoption and impact. Learn more.
+
### Word
+
- **Summarize longer documents in chat** [Windows, Web, iOS, Mac]
+
Copilot in Word can now summarize longer documents, with the upper limit increased to about four times more words (approx. 80k words). Get comprehensive overviews of lengthy content.
+
## June, 2024
+
### Excel
+
- **Copilot works on any selection in Excel** [Windows, Web, iOS, Mac]
+
Copilot now enables the edit box on any worksheet, regardless of selection. It intelligently finds the nearest table or data range for your analysis queries, making data manipulation more flexible.
+
### Microsoft Teams
+
- **Admins can enforce Copilot during and after meetings** [Windows, Android, iOS, Mac]
+
Admins can set Copilot in Teams meetings to 'During and After Meeting' and prevent meeting organizers from changing it. Learn more.
+
- **Control access to recordings and transcripts** [Windows, Android, iOS, Mac]
+
Introducing new meeting settings that allow you to control who can access recordings, transcripts, and prompt Copilot. Enhance your meeting security and privacy with these granular controls.
+
### PowerPoint
+
- **Copilot adds transitions and animations automatically** [Windows, Web, iOS, Mac]
+
When creating presentations from prompts or files, Copilot will now automatically add transitions and animations. This enhancement brings your slides to life without extra effort.
+
- **Create presentations from PDF files with Copilot** [Windows, Web, iOS]
+
You can now generate PowerPoint presentations directly from PDF files using Copilot. This feature simplifies the process of turning documents into engaging presentations.
+
- **Improved content when creating presentations from prompts** [Windows, Web, iOS, Mac]
+
Experience increased depth and richness of content when you create a presentation from a prompt. Copilot now provides better formatting and more detailed slides to enhance your presentations.
+
### Word
+
- **Use a url to reference supported files in Copilot in Word** [iOS]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
- **Visualize as table** [iOS]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling.
+
## May, 2024
+
### Microsoft Teams
+
- **Copilot notification in unrecorded meetings** [Windows, Android, iOS, Mac]
+
When Copilot is started in a meeting that is not being recorded, every participant is notified that Copilot is active.
+
### Outlook
+
- **Microsoft 365 Copilot Chat available in new Outlook for Windows and web** [Windows, Web, Android, iOS]
+
Access the power of Microsoft 365 Copilot Chat directly within Outlook on the web and the new Outlook for Windows. Access Microsoft 365 Copilot Chat through the left app bar.
+
## April, 2024
+
### Microsoft 365 Copilot Chat
+
- **Microsoft 365 Copilot Chat now available in the Microsoft 365 app** [Android, iOS]
+
Microsoft 365 mobile app users with a Microsoft 365 Copilot license can receive answers grounded in their organizational Graph data, enhancing mobile productivity.
+
### Excel
+
- **Create Formula Columns Using Data from Multiple Tables** [Windows, Web, iOS, Mac]
+
Support for functions like XLOOKUP and SUMIF allows you to create formula columns that utilize data across multiple tables.
+
- **Generate multiple formula columns with a single prompt** [Windows, Web, iOS, Mac]
+
Use Copilot in Excel to create several formula-based columns at once. For example, ask Copilot to split a full name into first and last name columns, and watch it generate both formulas in one go.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 17 additional languages across all features: Arabic, Chinese (Traditional), Czech, Danish, Dutch, Finnish, Hebrew, Hungarian, Korean, Norwegian (Bokmal), Polish, Portuguese (Portugal), Russian, Swedish, Thai, Turkish, and Ukrainian. Learn more.
+
### Microsoft Teams
+
- **Copilot understands previous conversations in chats and channels** [Windows, Android, iOS, Mac]
+
When you ask follow-up questions in chats or channels, Copilot now has context from past interactions to provide more accurate answers.
+
## March, 2024
+
### Microsoft 365 Copilot Chat
+
- **Rich entity representations in Copilot responses** [Windows, Web, Android, iOS, Mac]
+
Copilot now provides richer representations of entities like people, events, and files within responses, enhancing context and usability.
+
### Excel
+
- **Speak to Copilot in Excel with new input methods** [Windows, Web, iOS, Mac]
+
You can now use your microphone to send prompts to Copilot in Excel, and explore the Prompt Guide for customized suggestions.
+
### Microsoft Teams
+
- **Customize your draft message when you compose with Copilot** [Windows, Android, iOS, Mac]
+
You can now instruct Copilot to adjust your draft message however you'd like. Adjust the message with a custom prompt, like "add a call to action" or "make it persuasive". Learn more.
+
- **Enhanced Copilot UI with new date dividers** [Windows, Android, iOS, Mac]
+
We have improved the Copilot user interface with new date dividers for chats, channels, and meeting Copilot.
+
## February, 2024
+
### Word
+
- **Summarize your document using chat prompts** [iOS]
+
Ask via chat to summarize your document, highlighting key points for quick understanding and review.
+
## January, 2024
+
### Excel
+
- **Enjoy conversational Copilot in Excel** [Windows, Web, iOS, Mac]
+
Copilot in Excel now remembers the context of your chats, allowing for follow-up questions and clarifications for a smoother experience.
+
### Word
+
- **Get answers and enhance content with chat in Word** [iOS]
+
Ask specific questions about your document or request additional details to enhance your content, making your writing process more efficient.
+
## November, 2023
+
### Excel
+
- **Add formula columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot provides formula suggestions with explanations, helping you create new columns based on your data. Learn more.
+
- **Generate data insights with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can suggest insights like summaries, trends, and outliers, returning results as charts or PivotTables to enhance your analysis. Learn more.
+
- **Use Copilot to highlight, filter, and sort data in Excel tables** [Windows, Web, iOS, Mac]
+
Transform your data by asking Copilot to format your Excel tables. You can highlight top values, filter specific entries, or sort data. For example, ask Copilot to highlight the top 3 values in a column, and it will apply conditional formatting. Learn more.
+
### Microsoft Teams
+
- **Copilot available in a channel post conversation** [Windows, Web, Android, iOS, Mac]
+
Copilot can summarize and support Q&A on a channel post conversation, assisting you directly in your channel conversations.
+
- **Copilot to summarize and answer Q&A in Teams Chat** [Windows, Web, Android, iOS, Mac]
+
Copilot helps you catch up on conversations by providing summaries and answering questions in Teams chats.
+
- **Use Copilot in meetings, 1:1 and group calls** [Windows, Web, Android, iOS, Mac]
+
Get summaries, action items, and more after meetings and calls through Copilot in the side panel.
+
### Outlook
+
- **Compose emails effortlessly on Outlook for Android and iOS** [Android, iOS]
+
Provide a prompt and generate a full email. Customize the tone and length to suit your needs, streamlining your email writing process. Learn more.
+
- **Get Coaching from Copilot for an email draft in new Outlook** [Web, Android, iOS, Mac]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness. Learn more.
+
- **Summarize email conversations on Outlook for Android and iOS** [Android, iOS]
+
Quickly get summaries of entire email threads, helping you catch up on conversations efficiently. Learn more.
+
### PowerPoint
+
- **Automatically add an agenda slide to your presentation** [Windows, Web, iOS, Mac]
+
Generate and insert an agenda slide based on your existing content, helping you prepare your audience for what's ahead.
+
- **Convert Word documents into presentations** [Windows, iOS, Mac]
+
Transform your Word documents into fully designed PowerPoint presentations, simplifying the creation process. Learn more.
+
- **Create a presentation from a simple prompt** [Windows, Web, iOS, Mac]
+
Provide a prompt and Copilot will help you generate a presentation, saving you time and effort Learn more.
+
- **Create presentations using your organization's templates** [Windows, Web, iOS, Mac]
+
Generate presentations that utilize your company's templates, ensuring consistency and alignment with your brand. Learn more.
+
- **Edit your presentation in Copilot chat** [Windows, Web, iOS, Mac]
+
Add slides, add animations, or organize your presentation in Copilot chat, streamlining your editing process. Learn more.
+
- **Get answers about your presentation** [Windows, Web, iOS, Mac]
+
Ask questions about your existing PowerPoint presentation to quickly retrieve information and insights.
+
- **Organize your presentation's flow easily** [Windows, Web, iOS, Mac]
+
Structure your slides, add sections, and insert an agenda slide to improve the overall flow of your presentation. Learn more.
+
- **Summarize your presentation and identify key points** [Windows, Web, iOS, Mac]
+
Generate summaries, highlight key slides, and identify action items from your presentation, making it easier to review and share essential information. Learn more.
+
### Whiteboard
+
- **Generate ideas effortlessly** [Windows, Web, Android, iOS]
+
Brainstorm by generating short text ideas, fueling your creativity during collaborative sessions.
+
- **Organize your ideas into themes** [Windows, Web, Android, iOS]
+
Categorize and group your ideas into themes, helping you visualize and structure your brainstorming sessions.
+
- **Summarize your Whiteboard sessions** [Windows, Web, Android, iOS]
+
Create summaries of your Whiteboard content, capturing key points from your collaborative work.
+
### Word
+
- **Apply highest sensitivity label to generated content** [Windows, Web, iOS, Mac]
+
Ensure your documents maintain appropriate confidentiality levels as labels are automatically updated when referencing files with higher sensitivity.
+
- **Draft with Copilot** [Windows, Web, iOS, Mac]
+
Draft new content for your blank or existing documents, helping you write faster and with ease. Learn more.
+
- **Rewrite with Copilot** [Windows, Web, iOS, Mac]
+
Get suggestions for how to rewrite any text in your document, enhancing clarity and effectiveness. Learn more.
## [Mac](#tab/mac)
+## April 2, 2025
+Updates released between March 20, 2025, and April 2, 2025.
+### PowerPoint
+- **Translate your presentation** [Windows, Web, Mac]
+
+ Produce a translated copy of your entire presentation in about 40 languages while preserving your slide design and structure, making global collaboration effortless.
+ Learn more.
+
+## March 19, 2025
+Updates released between March 5, 2025, and March 19, 2025.
+
+### Microsoft 365 Copilot Chat
+
+- **Prompt suggestions in Copilot chat** [Windows, Web, Mac]
+
+ Get started in Copilot chat quickly with automatic prompt suggestions that enhance your productivity by providing relevant and context-aware prompts based on your previous interactions.
+
## March 4, 2025
-Updates released between February 19, 2025, and March 4, 2025.
+
+Updates released between February 20, 2025, and March 4, 2025.
+
### Microsoft 365 Copilot Chat
+
- **Search archived mailboxes in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Leverage Copilot to search emails across both primary and archived mailboxes by appending 'from my archives' or 'also look for emails in my archives' in your prompts to quickly locate key messages.
+
### PowerPoint
+
- **Narrative builder creates slides with tables** [Windows, Web, Mac]
+
Convert grounded content from Word documents into dynamic slides with tables. Enhance your presentations with structured, data-driven visuals effortlessly.
+
## February 19, 2025
+
Updates released between February 5, 2025, and February 19, 2025.
+
+
### Microsoft Teams
+
- **Intelligent meeting recap for instant meetings (premium)** [Windows, Mac]
+
Effortlessly browse meeting recordings by speaker and topic and access AI-generated notes, tasks, and mentions for instant meetings—empowering premium Copilot users with comprehensive insights. Learn more.
+
### PowerPoint
+
- **Create a presentation from a file-based prompt** [Windows, Web, Mac]
+
Pull key facts and data from a selected file to shape your narrative. Simply provide Copilot with a prompt and quickly build your deck with relevant information. Learn more.
+
### Viva Insights
+
- **Copilot dashboard for usage and retention insights** [Windows, Web, Android, iOS, Mac]
+
Dive into usage frequency, compare top user groups, and track retention metrics—all in a single, comprehensive dashboard for actionable insights. Learn more.
+
### Word
+
- **Chat with Copilot about selected text** [Windows, Web, Mac]
+
Highlight text, start a chat with Copilot, and receive responses tailored to what you’ve selected. Get targeted writing assistance and refine your content in real time.
+
+
## February 4, 2025
+
Updates released between January 24, 2025, and February 4, 2025.
### Microsoft 365 Copilot Chat
+
- **Access support pages in Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
View organizational support pages directly within Copilot Chat, for quick help and guidance in your workflow.
+
### Microsoft Teams
+
- **Speaker recognition and attribution in BYOD rooms with Copilot** [Windows, Mac]
+
Take advantage of speaker recognition and transcript attribution, unleashing new AI capabilities in any meeting space, whether or not it has a Teams Rooms system deployed. This feature identifies and attributes people in live transcripts, utilizing a unique voice profile for each participant enabling intelligent recaps and unlocking maximum value from Microsoft 365 Copilot in Teams meetings. Users can easily and securely enroll their voices via Teams Settings. This feature requires a Microsoft 365 Copilot or Teams Premium license for the user hosting the meeting for Copilot experiences and intelligent recaps, respectively. Learn more.
+
### PowerPoint
+
- **Use Copilot to rewrite, trim, or formalize text** [Web, Mac]
+
Transform your presentation text by letting Copilot fix grammar, shorten lengthy content, or adopt a more professional tone—perfect for crafting clear, polished slides.
+
### Word
+
- **Browse cloud files with the file picker** [Mac]
+
Use a file picker to browse your cloud directory and include relevant files without searching by name, making it easy to add key references to your draft.
-- **Reference cloud files when drafting** [Mac]
- Use a file picker to browse your cloud directory and include relevant files without searching by name, making it easy to add key references to your draft.
+
- **Reference data from the Microsoft cloud when drafting with Copilot in Word** [Windows, Web, Mac]
+
Draft with Copilot now supports attaching rich content from the Microsoft cloud—including emails and meetings—resulting in more contextually relevant content. Learn more.
+
- **Reference plain text files in Copilot** [Windows, Web, Mac]
+
Add .txt files as sources with Copilot in Word, streamlining your process when working with text-based research or background content.
+
## January 23, 2025
+
Updates released between January 8, 2025, and January 23, 2025.
### PowerPoint
+
- **Generate summaries for longer presentations** [Windows, Web, Mac]
+
Copilot now supports text summaries up to 40k words (around 150 slides), giving you richer information and more polished layouts. Learn more.
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
### Viva Insights
+
- **New Copilot adoption metrics and completing total actions taken** [Windows, iOS, Mac]
+
This adds seven new Copilot adoption metrics to the Copilot dashboard and Viva Insights Advanced insights. It also updates the "total actions taken" metric in the Copilot dashboard to include these new Copilot adoption metrics. Learn more.
+
### Word
+
- **Get started on a draft immediately with example prompts** [Windows, Mac]
+
On blank documents, Copilot in Word offers one-click example prompts to help you get started quickly. Learn more.
+
- **Listen to Copilot's responses with Read Aloud** [Windows, Web, Mac]
+
Hear Copilot’s replies in the chat pane, letting you stay hands-free while reviewing your content.
+
## January 7, 2025
+
+Updates released between December 18, 2024, and January 7, 2025.
### Viva Insights
+
- **Expand your understanding of Copilot adoption with enhanced metrics** [Windows, iOS, Mac]
+
Access seven new Copilot metrics and see them reflected in "total actions taken," helping you better track how teams use Copilot. Learn more.
+
- **New metrics for enterprise data-protected prompts** [Windows, Web, Android, iOS, Mac]
+
Gain visibility into prompts submitted through Microsoft 365 Copilot Chat (web) and enterprise data-protected Copilot scenarios. Learn more.
+
## December 17, 2024
+
### OneNote
+
- **Use Copilot in OneNote on Mac and iPad** [iOS, Mac]
+
Experience the power of Copilot across OneNote for Mac and iPad. Quickly summarize, rewrite, and understand your notes, whether at your desk or on the go. Learn more.
+
+### Viva Pulse
+
+- **Templates for Copilot readiness, adoption and impact** [Windows, Web, Android, iOS, Mac]
+
+ Use new templates to measure employee sentiment and assess your organization's Copilot adoption—all within your Viva Pulse subscription.
+
## November, 2024
+
### Microsoft 365 Copilot Chat
+
- **Focus Copilot responses on specific emails in Microsoft 365 Copilot Chat** [Windows, Web, Android, iOS, Mac]
+
Narrow down Copilot responses by specifying a particular email folder, sub-folder, or subject line. Get more precise assistance by directing Copilot to the emails that matter most to you.
+
+### OneNote
+
+- **Copilot chat on Mac** [Mac]
+
+ Transform your note-taking on Mac with natural language commands that help you understand, summarize, and rewrite notes—perfect for meeting prep and creative brainstorming.
+
+### PowerPoint
+
+- **Build a narrative with file-based topics** [Windows, Web, Mac]
+
+ Create compelling presentations by integrating topic suggestions linked to your documents—whether Word files, PDFs, or encrypted docs—for a well-grounded narrative.
+
### Microsoft Teams
+
- **Disable Copilot in meetings** [Windows, Android, iOS, Mac]
+
You can now turn Copilot off in your meeting settings. Copilot, recording, and transcription are disabled for meetings where Copilot is off. Learn more.
+
### Word
+
- **Reference larger files and write longer prompts with Copilot** [Windows, Web, Mac]
+
Create more detailed drafts by writing prompts over 2,000 characters and referencing files totaling up to 75,000 words. Learn more.
+
## October, 2024
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 12 additional languages across all features: Bulgarian, Croatian, Estonian, Greek, Indonesian, Latvian, Lithuanian, Romanian, Serbian (Latin), Slovak, Slovenian, and Vietnamese. Microsoft 365 Copilot also improved the handling of language variants: Dutch (Belgium), German (Switzerland), English (UK), Spanish (Mexico), and French (Canada). Learn more.
+
### Microsoft Teams
+
- **Empower meeting organizers to adjust Copilot availability** [Windows, Android, iOS, Mac]
+
Admins can now set Copilot in Teams meetings to 'During and After Meeting' and allow meeting organizers to change it. Learn more.
+
### Outlook
+
- **Rewrite selected text in emails using Copilot** [Windows, Web, Android, iOS, Mac]
+
Select specific parts of your drafted email and ask Copilot in new Outlook to rewrite it or provide more information to rewrite it. Provide detailed instructions or adjust the tone and length to suit your needs.
+
### Viva Insights
+
- **New Microsoft 365 Copilot Chat prompts submitted through Teams** [Windows, iOS, Mac]
+
Adding new Microsoft 365 Copilot Chat prompts submitted through Teams metric to Copilot dashboard and Viva Insights Advanced insights.
+
### Word
+
- **Fine-tune rewrite responses in Copilot in Word** [Mac]
+
Customize the output from Copilot's Rewrite feature by specifying how the text should change to better suit your needs. Learn more.
+
- **Reference up to 10 Items when drafting with Copilot** [Windows, Mac]
+
Expand your drafting capabilities by referencing up to 10 items—such as files, emails, and meetings—when using Copilot in Word. Learn more.
+
## September, 2024
+
### Excel
+
- **Copilot in Excel is generally available** [Windows, Web, iOS, Mac]
+
Copilot in Excel, now no longer in Preview but Generally Available, works alongside you to analyze and explore your data, answering questions in natural language and revealing insights without the need for complex formulas. Learn more.
+
### Microsoft 365 Copilot
+
- **AI-generated Images with Copilot and Microsoft Designer** [Windows, Web, Mac]
+
Microsoft Designer integration in Copilot chat allows you to generate that perfect image, providing limitless creativity and bringing your presentations to life. Learn more.
+
+### PowerPoint
+
+- **Access your organization’s approved images** [Mac]
+
+ Seamlessly connect to your SharePoint asset library to find and add brand-approved images, keeping your presentations and documents consistently on brand.
+
### Microsoft Teams
+
- **Copilot in Teams meetings considers meeting chat** [Windows, Mac]
+
When generating meeting summaries or answering questions, Copilot in Teams will now use the chat and transcript as context, providing more accurate and relevant responses. Learn more.
+
### Outlook
+
- **Instantly apply coaching suggestions from Copilot to your emails** [Web, Android, iOS, Mac]
+
Improve your email writing with Coaching by Copilot in new Outlook. Request a full rewrite based on Copilot's feedback or apply the suggestions with a single click. Learn more.
+
### PowerPoint
+
- **Create presentations with new slide types using Copilot** [Web, Mac]
+
When creating a presentation with Copilot, you'll now see agenda, section, and conclusion slides, giving your presentations better structure.
+
- **Custom slideshow of key slides** [Mac]
+
Ask Copilot to show key slides, and you'll have one-click access to play a custom presentation of the most important slides.
+
- **Improved template support with Copilot** [Windows, Web, Mac]
+
Update your templates to PowerPoint's best practices, and Copilot will generate beautiful, on-brand slides every time you create a presentation. Learn more.
+
### Word
+
- **Use Copilot to enhance pasted text in Word** [Windows, Mac]
+
Copilot in Word now offers more options when you paste text. Reword content, transform it into tables or lists, and more, making it easier to format and organize your documents efficiently.
+
## August, 2024
+
### Excel
+
- **Custom chart and PivotTable creation** [Windows, Web, iOS, Mac]
+
You can now ask Copilot for more specific charts and PivotTables, including specifying the X and Y axes. Customize your data presentations more precisely.
+
- **Formula data summaries from columns** [Windows, Web, iOS, Mac]
+
Add a single formula to summarize column data into one cell. This feature allows you to calculate data across columns and return a single result, simplifying data analysis.
+
- **Suggest conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Ask Copilot to suggest conditional formatting for your data. Receive a list of prompts that might highlight key insights in your data.
+
- **Summarize text columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can analyze columns of text to provide summaries, such as identifying main themes in survey responses. Understand your text data more effectively.
+
### Microsoft Teams
+
- **Copilot summarizes content over specified time periods** [Windows, Android, iOS, Mac]
+
Copilot can now identify and summarize information over specific time periods, responding accurately to queries like "yesterday," "last month," or "last year." Learn more.
+
- **Linked files in Copilot replies** [Windows, Android, iOS, Mac]
+
We have optimized Copilot in Microsoft Teams to include linked files in Copilot answers for quicker and more reliable retrieval of files and links, making your experience smoother and more efficient.
+
### PowerPoint
+
- **Build your story with Narrative Builder** [Windows, Web, iOS, Mac]
+
Copilot helps you form your narrative and turns it into a fully designed presentation, streamlining the creative process.
+
- **Improved presentation summary richness** [Windows, Web, iOS, Mac]
+
Copilot now leverages the latest GPT models to provide richer summaries when generating presentations, enhancing the quality of your content.
+
### Viva Insights
+
- **Analyze Copilot impact over time** [Windows, Web, Android, iOS, Mac]
+
View trendlines of key productivity metrics over 6 months and estimate the financial value of Copilot-assisted hours. Learn more.
+
## July, 2024
+
### Excel
+
- **Advanced conditional formatting with Copilot** [Windows, Web, iOS, Mac]
+
Copilot now supports complex conditional formatting, such as highlighting rows based on multiple criteria. Enhance your data visualization with more formulaic formatting options.
+
- **Improved data insights in Copilot** [Windows, Web, iOS, Mac]
+
Copilot is now better at answering questions about data insights like trends and correlations. Get more meaningful analysis to make informed decisions.
+
- **Preview and apply changes suggested by Copilot** [Windows, Web, iOS, Mac]
+
Before Copilot makes changes to your Excel data, you'll now receive a description and an "Apply" button. This gives you more control over your data and allows for refinements before applying changes.
+
- **Preview conditional formatting rules** [Windows, Web, iOS, Mac]
+
When setting a conditional formatting rule, Copilot's response will include a preview of the style and an explanation of the formula. This helps you understand and apply formatting more confidently.
+
- **Support for data ranges resembling tables** [Windows, Web, iOS, Mac]
+
Copilot can now reason over data ranges with a single row of headers, even if they aren't formatted as formal tables. This makes data analysis more flexible.
+
### PowerPoint
+
- **Create presentations from encrypted Word documents** [Windows, Web, iOS, Mac]
+
Copilot for PowerPoint can now create presentations using Word documents that have a protected sensitivity label, expanding your content creation options securely.
+
- **Easier access to Copilot in PowerPoint** [Windows, Web, iOS, Mac]
+
Access Copilot in PowerPoint more easily with new on-canvas entry points. Start enhancing your presentations with AI assistance in fewer clicks.
+
### Viva Insights
+
- **Microsoft Copilot Dashboard powered by Viva Insights** [Windows, Web, Android, iOS, Mac]
+
The Microsoft Copilot Dashboard available to all Microsoft 365 Copilot customers at no extra cost. Access it via the Viva Insights app to monitor Copilot adoption and impact. Learn more.
+
### Word
+
- **Bing search integration brings the power of the web to your chats in Word** [Mac]
+
Ask Copilot a question in Word chat, and Copilot generates an answer using the power of integrated Bing search. And you never have to leave the app.
+
- **Bring the latest from your organization into your Word chats with Microsoft Copilot Graph-grounded search.** [Mac]
+
Bring the latest from your organization into your Word chats with Microsoft Graph-grounded search. Access people-centric data and insights seamlessly.
+
- **Summarize longer documents in chat** [Windows, Web, iOS, Mac]
+
Copilot in Word can now summarize longer documents, with the upper limit increased to about four times more words (approx. 80k words). Get comprehensive overviews of lengthy content.
+
## June, 2024
+
### Excel
+
- **Copilot works on any selection in Excel** [Windows, Web, iOS, Mac]
+
Copilot now enables the edit box on any worksheet, regardless of selection. It intelligently finds the nearest table or data range for your analysis queries, making data manipulation more flexible.
+
### Microsoft Teams
+
- **Admins can enforce Copilot during and after meetings** [Windows, Android, iOS, Mac]
+
Admins can set Copilot in Teams meetings to 'During and After Meeting' and prevent meeting organizers from changing it. Learn more.
+
- **Control access to recordings and transcripts** [Windows, Android, iOS, Mac]
+
Introducing new meeting settings that allow you to control who can access recordings, transcripts, and prompt Copilot. Enhance your meeting security and privacy with these granular controls.
+
- **Intelligent Recap available for Copilot users** [Windows, Mac]
+
Copilot users can now access Intelligent Recap after meetings and calls. Browse recordings by speakers and topics, and access AI-generated meeting notes, action items, and @mentions, all designed to keep you informed.
+
### PowerPoint
+
- **Copilot adds transitions and animations automatically** [Windows, Web, iOS, Mac]
+
When creating presentations from prompts or files, Copilot will now automatically add transitions and animations. This enhancement brings your slides to life without extra effort.
+
- **Improved content when creating presentations from prompts** [Windows, Web, iOS, Mac]
+
Experience increased depth and richness of content when you create a presentation from a prompt. Copilot now provides better formatting and more detailed slides to enhance your presentations.
+
### Word
+
- **Find the perfect visual with Copilot + Designer in Word** [Windows, Web, Mac]
+
Enhance your documents with AI-generated images using the new integration of Microsoft Designer in Copilot Chat. Also search for stock images and brand assets to bring your content to life seamlessly.
+
- **Use Draft with Copilot in Word based on text, list, or table selection** [Windows, Mac]
+
Use Draft with Copilot in Word with the on-canvas Copilot menu when a user selects text, a list, or a table, which generates new content from Copilot and provides a richer, more interactive experience.
+
## May, 2024
+
### Microsoft Teams
+
- **Copilot notification in unrecorded meetings** [Windows, Android, iOS, Mac]
+
When Copilot is started in a meeting that is not being recorded, every participant is notified that Copilot is active.
+
### Word
+
- **Use a url to reference supported files in Copilot in Word** [Windows, Mac]
+
Users can copy-paste a link of a supported file into the Draft with Copilot UI as a reference, instead of searching for it in the file reference menu.
+
## April, 2024
+
### Excel
+
- **Create Formula Columns Using Data from Multiple Tables** [Windows, Web, iOS, Mac]
+
Support for functions like XLOOKUP and SUMIF allows you to create formula columns that utilize data across multiple tables.
+
- **Generate multiple formula columns with a single prompt** [Windows, Web, iOS, Mac]
+
Use Copilot in Excel to create several formula-based columns at once. For example, ask Copilot to split a full name into first and last name columns, and watch it generate both formulas in one go.
+
### Microsoft 365 Copilot
+
- **Language expansion in Microsoft 365 Copilot** [Windows, Web, Android, iOS, Mac]
+
Microsoft 365 Copilot now supports 17 additional languages across all features: Arabic, Chinese (Traditional), Czech, Danish, Dutch, Finnish, Hebrew, Hungarian, Korean, Norwegian (Bokmal), Polish, Portuguese (Portugal), Russian, Swedish, Thai, Turkish, and Ukrainian. Learn more.
+
### Microsoft Teams
+
- **Copilot understands previous conversations in chats and channels** [Windows, Android, iOS, Mac]
+
When you ask follow-up questions in chats or channels, Copilot now has context from past interactions to provide more accurate answers.
+
### Word
+
- **Draft with Copilot supports referencing files encrypted with sensitivity labels** [Windows, Web, Mac]
+
Draft with Copilot now allows you to reference files encrypted with sensitivity labels, ensuring secure document creation.
+
## March, 2024
+
### Microsoft 365 Copilot Chat
+
- **Rich entity representations in Copilot responses** [Windows, Web, Android, iOS, Mac]
+
Copilot now provides richer representations of entities like people, events, and files within responses, enhancing context and usability.
+
### Excel
+
- **Enable Copilot in Excel by saving files to OneDrive or SharePoint** [Windows, Mac]
+
To use Copilot in Excel, save your files to OneDrive or SharePoint with AutoSave on. You'll receive prompts to help you set this up if needed.
+
- **Speak to Copilot in Excel with new input methods** [Windows, Web, iOS, Mac]
+
You can now use your microphone to send prompts to Copilot in Excel, and explore the Prompt Guide for customized suggestions.
+
### Microsoft Teams
+
- **Customize your draft message when you compose with Copilot** [Windows, Android, iOS, Mac]
+
You can now instruct Copilot to adjust your draft message however you'd like. Adjust the message with a custom prompt, like "add a call to action" or "make it persuasive". Learn more.
+
- **Enhanced Copilot UI with new date dividers** [Windows, Android, iOS, Mac]
+
We have improved the Copilot user interface with new date dividers for chats, channels, and meeting Copilot.
+
## February, 2024
+
### Microsoft Teams
+
- **Copilot side pane stays open across group chats** [Windows, Mac]
+
When you open Copilot in a group chat, it will remain open even as you navigate between different chats, saving you time.
+
## January, 2024
+
### Excel
+
- **Enjoy conversational Copilot in Excel** [Windows, Web, iOS, Mac]
+
Copilot in Excel now remembers the context of your chats, allowing for follow-up questions and clarifications for a smoother experience.
+
## December, 2023
+
### Word
+
- **Visualize as table** [Mac]
+
Easily turn plain text or lists into clear, organized tables for better readability and effortless data handling. Learn more.
+
## November, 2023
+
### Microsoft 365 Copilot Chat
+
- **Introducing Microsoft 365 Copilot Chat** [Windows, Web, Mac]
+
Your single destination to take on any task, combining AI power with your work content to draft content, catch up, and get answers. Learn more.
+
### Excel
+
- **Add formula columns with Copilot** [Windows, Web, iOS, Mac]
+
Copilot provides formula suggestions with explanations, helping you create new columns based on your data. Learn more.
+
- **Generate data insights with Copilot** [Windows, Web, iOS, Mac]
+
Copilot can suggest insights like summaries, trends, and outliers, returning results as charts or PivotTables to enhance your analysis. Learn more.
+
- **Use Copilot to highlight, filter, and sort data in Excel tables** [Windows, Web, iOS, Mac]
+
Transform your data by asking Copilot to format your Excel tables. You can highlight top values, filter specific entries, or sort data. For example, ask Copilot to highlight the top 3 values in a column, and it will apply conditional formatting. Learn more.
+
### Microsoft Teams
+
- **Copilot available in a channel post conversation** [Windows, Web, Android, iOS, Mac]
+
Copilot can summarize and support Q&A on a channel post conversation, assisting you directly in your channel conversations.
+
- **Copilot to summarize and answer Q&A in Teams Chat** [Windows, Web, Android, iOS, Mac]
+
Copilot helps you catch up on conversations by providing summaries and answering questions in Teams chats.
+
- **Use Copilot in meetings, 1:1 and group calls** [Windows, Web, Android, iOS, Mac]
+
Get summaries, action items, and more after meetings and calls through Copilot in the side panel.
+
### Outlook
+
- **Draft emails with Copilot in new Outlook** [Windows, Web, Mac]
+
Use Copilot to draft new emails from prompts, adjust length and tone, and even select parts of an email and use Copilot to rewrite those specific sections effortlessly. Learn more.
+
- **Get Coaching from Copilot for an email draft in new Outlook** [Web, Android, iOS, Mac]
+
Copilot combines AI with your Outlook data to help you craft better emails, offering suggestions on tone and message effectiveness. Learn more.
+
### PowerPoint
+
- **Automatically add an agenda slide to your presentation** [Windows, Web, iOS, Mac]
+
Generate and insert an agenda slide based on your existing content, helping you prepare your audience for what's ahead.
+
- **Convert Word documents into presentations** [Windows, iOS, Mac]
+
Transform your Word documents into fully designed PowerPoint presentations, simplifying the creation process. Learn more.
+
- **Create a presentation from a simple prompt** [Windows, Web, iOS, Mac]
+
Provide a prompt and Copilot will help you generate a presentation, saving you time and effort Learn more.
+
- **Create presentations using your organization's templates** [Windows, Web, iOS, Mac]
+
Generate presentations that utilize your company's templates, ensuring consistency and alignment with your brand. Learn more.
+
- **Edit your presentation in Copilot chat** [Windows, Web, iOS, Mac]
+
Add slides, add animations, or organize your presentation in Copilot chat, streamlining your editing process. Learn more.
+
- **Get answers about your presentation** [Windows, Web, iOS, Mac]
+
Ask questions about your existing PowerPoint presentation to quickly retrieve information and insights.
+
- **Organize your presentation's flow easily** [Windows, Web, iOS, Mac]
+
Structure your slides, add sections, and insert an agenda slide to improve the overall flow of your presentation. Learn more.
+
- **Summarize your presentation and identify key points** [Windows, Web, iOS, Mac]
+
Generate summaries, highlight key slides, and identify action items from your presentation, making it easier to review and share essential information. Learn more.
+
### Word
+
- **Apply highest sensitivity label to generated content** [Windows, Web, iOS, Mac]
+
Ensure your documents maintain appropriate confidentiality levels as labels are automatically updated when referencing files with higher sensitivity.
+
- **Draft with Copilot** [Windows, Web, iOS, Mac]
+
Draft new content for your blank or existing documents, helping you write faster and with ease. Learn more.
+
- **Get answers and enhance content with chat in Word** [Windows, Web, Mac]
+
Ask specific questions about your document or request additional details to enhance your content, making your writing process more efficient. Learn more.
+
- **Rewrite with Copilot** [Windows, Web, iOS, Mac]
+
Get suggestions for how to rewrite any text in your document, enhancing clarity and effectiveness. Learn more.
+
- **Summarize your document using chat prompts** [Windows, Web, Mac]
+
Ask via chat to summarize your document, highlighting key points for quick understanding and review. Learn more.
+
- **Use chat in Word's Viewing mode** [Windows, Mac]
+
Access chat while in Viewing mode to ask questions about the document's content without switching to Editing mode, improving your reading experience. Learn more.
+
- **Use voice prompts for assistance** [Windows, Web, Mac]
+
Use voice to dictate into the Copilot chat prompt field.
diff --git a/copilot/which-copilot-for-your-organization.md b/copilot/which-copilot-for-your-organization.md
index 48c6d9afd3c..7e44bc0eae1 100644
--- a/copilot/which-copilot-for-your-organization.md
+++ b/copilot/which-copilot-for-your-organization.md
@@ -6,7 +6,7 @@ f1.keywords:
ms.author: mandia
author: MandiOhlinger
manager: laurawi
-ms.date: 02/11/2025
+ms.date: 04/03/2025
ms.reviewer:
audience: Admin
ms.topic: get-started
@@ -34,27 +34,29 @@ There are different Copilots available.
## Microsoft 365 Copilot Chat
-✅ Use for work tasks
-✅ Free to organizations with a Microsoft 365 license
-✅ Use for personal tasks, with caution
+✅ Secure with [enterprise data protection](enterprise-data-protection.md)
+✅ Scalable with [pay-as-you-go](./pay-as-you-go/overview.md)
+✅ Free to organizations with a Microsoft 365 license
-**Microsoft 365 Copilot Chat** is available free to organizations that have a Microsoft 365 license. Copilot Chat is a prompt and response experience, and uses information from the internet (web-based chat). You can also create images and use [Copilot Pages](https://support.microsoft.com/en-us/topic/introducing-microsoft-365-copilot-pages-6674bd51-9ff5-42c4-9256-44d9428a726f) to save, edit, and share AI-generated content.
+**Microsoft 365 Copilot Chat** is an AI prompt and response experience that's [grounded in the web](/copilot/privacy-and-protections#privacy-and-security-of-generated-search-queries) and powered by [large language models (LLMs)](https://azure.microsoft.com/resources/cloud-computing-dictionary/what-are-large-language-models-llms).
-When you open Copilot Chat, it looks similar to the following image:
+It's free to organizations that have a Microsoft 365 license. With Copilot Chat:
-:::image type="content" source="media/which-copilot-for-your-organization/microsoft-365-copilot-chat.png" alt-text="Screenshot that shows Microsoft 365 Copilot Chat and sample prompts that get information from the internet with web-based chat.":::
+- You can also create images and use [Copilot Pages](https://support.microsoft.com/topic/introducing-microsoft-365-copilot-pages-6674bd51-9ff5-42c4-9256-44d9428a726f) to save, edit, and share AI-generated content.
+- You can use for work and education, and know that you're protected with [enterprise data protection](enterprise-data-protection.md).
+- You can manage it using [IT controls for admins](/copilot/manage).
-You can use Copilot Chat for personal tasks, but be cautious. Never add sensitive or proprietary work information in a prompt.
+Microsoft 365 Copilot Chat is available on the web at [https://m365copilot.com](https://m365copilot.com), in the [Microsoft 365 Copilot app](https://apps.microsoft.com/detail/9wzdncrd29v9), and in Teams, Outlook, & Microsoft Edge.
-Microsoft 365 Copilot Chat is available at [https://m365.cloud.microsoft/chat](https://m365.cloud.microsoft/chat), in the [Microsoft 365 Copilot app](https://apps.microsoft.com/detail/9wzdncrd29v9) that can be installed on devices, in Microsoft Edge, and when you use [Microsoft Bing](https://www.bing.com).
+> [!TIP]
+> If you [pin Copilot Chat](pin-copilot.md) in the Microsoft 365 Copilot app, when users go to `https://m365copilot.com`, then they're automatically redirected to `https://m365.cloud.microsoft/chat`.
-If you want users in your organization to have prompt and response interchanges with information on the internet, then use Microsoft 365 Copilot Chat.
+If you want users in your organization to have prompt and response interchanges with information on the internet and [enterprise data protection](enterprise-data-protection.md), then use Microsoft 365 Copilot Chat.
To learn more, see:
- [Learn more about Microsoft 365 Copilot Chat](/copilot/overview)
-- [Read about Copilot for all: Introducing Microsoft 365 Copilot Chat](https://www.microsoft.com/microsoft-365/blog/2025/01/15/copilot-for-all-introducing-microsoft-365-copilot-chat)
-- [Add apps to Microsoft Intune](/mem/intune/apps/apps-add) and [assign apps to groups](/mem/intune/apps/apps-deploy)
+- [Read about Copilot for all: Introducing Microsoft 365 Copilot Chat - blog](https://www.microsoft.com/microsoft-365/blog/2025/01/15/copilot-for-all-introducing-microsoft-365-copilot-chat)
## Microsoft 365 Copilot
@@ -63,16 +65,29 @@ To learn more, see:
✅ Use for personal tasks, with caution. This Copilot accesses work data.
✅ Personally licensed by end users
-**Microsoft 365 Copilot** is licensed by your work organization. It includes all the features in Microsoft 365 Copilot Chat, and can be used for web-based (internet) and work-based ([Microsoft Graph](/graph/overview)) chat.
+**Microsoft 365 Copilot** is licensed by your work organization. It includes features that can help end users and admins with work tasks, like:
+
+- Use Microsoft 365 Copilot Chat for web-based (internet) and work-based ([Microsoft Graph](/graph/overview)) chat.
+- Get in-app experiences in your Microsoft 365 apps, like Teams, Word, Excel, PowerPoint, and Outlook.
+- Create [Copilot Agents](/microsoft-365-copilot/extensibility/overview-declarative-agent).
+- Measure insights with [Copilot Analytics](https://techcommunity.microsoft.com/blog/microsoftvivablog/introducing-copilot-analytics-to-measure-ai-impact-on-your-business/4301717).
+
+With a Microsoft 365 Copilot license, when you open Copilot Chat, it looks similar to the following image:
+
+:::image type="content" source="media/which-copilot-for-your-organization/microsoft-365-copilot-chat.png" alt-text="Screenshot that shows Microsoft 365 Copilot Chat and sample prompts that get information from the internet with web-based chat.":::
When users sign in with their Microsoft Entra work or school account (`user@contoso.com`), they can use Microsoft 365 Copilot Chat **work** or **web** version:
:::image type="content" source="media/which-copilot-for-your-organization/copilot-work-web.png" alt-text="Screenshot that shows Microsoft Entra users can select work or web in Microsoft 365 Copilot Chat.":::
-- When users select **work**, Copilot shows results that their Microsoft Entra work or school account can access.
-- When users select **web**, Copilot shows results that their Microsoft Entra work or school account can access and also shows results from the internet.
+- When users select **work**, Copilot Chat is a work-based ([Microsoft Graph](/graph/overview)) chat experience. It shows results that their Microsoft Entra work or school account can access.
+
+- When users select **web**, Copilot Chat shows results that their Microsoft Entra work or school account can access, and also shows results from the internet.
+
+ To learn about data privacy, see:
-With your Microsoft 365 Copilot license, you can use Copilot in Microsoft 365 apps, like Teams and Word, use [Copilot Agents](https://support.microsoft.com/topic/get-started-with-agents-for-microsoft-365-copilot-169469d7-328d-4d37-9090-bfc2058a39bd), and use [Copilot Analytics](https://techcommunity.microsoft.com/blog/microsoftvivablog/introducing-copilot-analytics-to-measure-ai-impact-on-your-business/4301717). These features can help end users and admins with work tasks.
+ - [Data, privacy, and security for web search in Microsoft 365 Copilot and Microsoft 365 Copilot Chat](manage-public-web-access.md)
+ - [Enterprise data protection in Microsoft 365 Copilot and Microsoft 365 Copilot Chat](enterprise-data-protection.md)
Copilot accesses data that your Microsoft Entra account has access to, like your emails and files. So, you can use Microsoft 365 Copilot to:
@@ -162,7 +177,7 @@ To learn more, see [What is Microsoft Security Copilot?](/copilot/security/micro
✅ Licensed by your work organization
✅ Free for some people, like verified students and teachers
-**GitHub Copilot** is an AI coding assistant that can help you write code faster. This Copilot is typically licensed by your work organization and is also free for some people, like verified students and teachers.
+**GitHub Copilot** is an AI coding assistant that can help you write code faster. This Copilot is licensed by your work organization and is also free for some people, like verified students and teachers.
You can use GitHub Copilot to:
@@ -203,3 +218,4 @@ To learn more, see:
- [Microsoft 365 Copilot overview](microsoft-365-copilot-overview.md)
- [Microsoft 365 Copilot adoption](https://adoption.microsoft.com/copilot/)
- [Unified cloud.microsoft domain for Microsoft 365 apps](/microsoft-365/enterprise/cloud-microsoft-domain)
+- [Get your data ready for Microsoft 365 Copilot - Admin guide for E3 + SAM licenses](microsoft-365-copilot-e3-guide.md)
diff --git a/microsoft-365/admin/TOC.yml b/microsoft-365/admin/TOC.yml
index 060fd324822..9ac59215fdb 100644
--- a/microsoft-365/admin/TOC.yml
+++ b/microsoft-365/admin/TOC.yml
@@ -300,6 +300,8 @@ items:
href: activity-reports/email-activity-ww.md
- name: Email apps usage
href: activity-reports/email-apps-usage-ww.md
+ - name: Exchange Web Services usage
+ href: activity-reports/ews-usage.md
- name: Forms activity
href: activity-reports/forms-activity-ww.md
- name: Mailbox usage
@@ -557,7 +559,7 @@ items:
- name: Contact support
href: get-help-support.md
- name: Find support phone numbers
- href: support-contact-info.md
+ href: https://support.microsoft.com/topic/customer-service-phone-numbers-c0389ade-5640-e588-8b0e-28de8afeb3f2#ID0EBBD=signinorgid
- name: Navigation guide
href: ../microsoft-365-docs-navigation-guide.md?bc=%2foffice365%2fadmin%2fbreadcrumb%2ftoc.json&toc=%2foffice365%2fadmin%2ftoc.json
diff --git a/microsoft-365/admin/activity-reports/activity-reports.md b/microsoft-365/admin/activity-reports/activity-reports.md
index 3ffc9358491..4735cfd791a 100644
--- a/microsoft-365/admin/activity-reports/activity-reports.md
+++ b/microsoft-365/admin/activity-reports/activity-reports.md
@@ -211,6 +211,10 @@ Whenever you delete a user's account, Microsoft will delete that user's usage da
However, when you select a particular day, up to 28 days from the current date, the report show the user's usage for that day in the User Details table.
+## How do I interpret the last activity date in user, group, or site details in the usage reports?
+
+The last activity date in user, group, or site details represents the most recent date on which a user performed any intentional activity within the app, regardless of the selected time period of the past 7/30/90/180 days.
+
## Related content
[Microsoft 365 usage analytics](../usage-analytics/usage-analytics.md) (article)\
diff --git a/microsoft-365/admin/activity-reports/browser-usage-report.md b/microsoft-365/admin/activity-reports/browser-usage-report.md
index 08894febb42..30a9918ab50 100644
--- a/microsoft-365/admin/activity-reports/browser-usage-report.md
+++ b/microsoft-365/admin/activity-reports/browser-usage-report.md
@@ -1,6 +1,6 @@
---
title: "Microsoft 365 admin center browser usage reports"
-ms.author: waxiaoyu
+ms.author: scotv
author: efrene
manager: scotv
ms.date: 03/09/2021
diff --git a/microsoft-365/admin/activity-reports/email-apps-usage-ww.md b/microsoft-365/admin/activity-reports/email-apps-usage-ww.md
index 201ae139d0a..ac4a4f8f6c9 100644
--- a/microsoft-365/admin/activity-reports/email-apps-usage-ww.md
+++ b/microsoft-365/admin/activity-reports/email-apps-usage-ww.md
@@ -1,7 +1,7 @@
---
title: "Microsoft 365 admin center email apps usage reports"
-ms.author: efrene
-author: efrene
+ms.author: camillepack
+author: camillepack
manager: scotv
ms.date: 06/24/2024
audience: Admin
diff --git a/microsoft-365/admin/activity-reports/ews-usage.md b/microsoft-365/admin/activity-reports/ews-usage.md
new file mode 100644
index 00000000000..7c7cb8faf68
--- /dev/null
+++ b/microsoft-365/admin/activity-reports/ews-usage.md
@@ -0,0 +1,67 @@
+---
+title: "Microsoft 365 Reports in the admin center – EWS usage"
+ms.author: camillepack
+author: camillepack
+manager: scotv
+ms.date: 03/18/2025
+audience: Admin
+ms.topic: concept-article
+ms.service: microsoft-365-business
+ms.localizationpriority: medium
+ms.collection:
+- Tier2
+- scotvorg
+- M365-subscription-management
+- Adm_O365
+- Adm_NonTOC
+search.appverid:
+- BCS160
+- MST160
+- MET150
+- MOE150
+description: "Learn about using the Microsoft 365 Exchange Web Services (EWS) report in the Microsoft 365 admin center."
+---
+
+# Microsoft 365 Reports in the admin center – EWS usage
+
+The Microsoft 365 Reports dashboard shows you the activity overview across the products in your organization. It enables you to drill into individual product level reports to give you more granular insight about the activities within each product. For information about available reports, see [Microsoft 365 Reports in the admin center](activity-reports.md). The Exchange Web Services (EWS) usage report displays the SOAP actions used by each application calling EWS in your organization. It also shows the successful-call volume for each SOAP action. This information enables you to coordinate with the application owners to ensure they're preparing for the EWS [deprecation in October 2026](https://techcommunity.microsoft.com/blog/exchange/retirement-of-exchange-web-services-in-exchange-online/3924440).
+
+## How to get to the email apps report
+
+1. In the admin center, go to the **Reports** > Usage page.
+2. From the **Overview** page, select **Exchange** > **EWS Usage**.
+
+## Interpret the email activity report
+
+To review the applications using EWS within your organization, examine the **Usage Trend** and **Usage Details** sections. Additionally, summarized information at the top provides an overview of the overall usage.
+
+:::image type="content" source="../../media/exchange-web-usage-report.png" alt-text="Screenshot of the Exchange Web Services (EWS) report." lightbox="../../media/exchange-web-usage-report.png":::
+
+You can filter the EWS Usage report by the last 7, 30, 90, or 180 days.
+
+> [!NOTE]
+> Usage data is collected and aggregated weekly, not daily.
+
+## Summary Data
+
+There are two summary headers on the top of the page:
+
+- **Active apps** indicates the number of unique apps that sent at least one request to EWS during the selected period.
+- **Daily average call volume** indicates the average number of daily requests from active apps during the selected period.
+
+## Usage trend chart
+
+The usage trend chart displays the projected EWS usage trend in your tenant, using weekly data points that summarize all active apps in your tenant utilizing EWS during that week. The Y-axis represents the number of apps, and the X-axis indicates the first date of the week within the selected period.
+
+## Usage details table
+
+The following table provides a breakdown of the EWS Usage per SOAP action by each active application in your tenant during the selected period. Columns can't be customized.
+
+|Item |Description |
+|---------|---------|
+|Application ID |The Microsoft Entra identifier for the register application |
+|SOAP Action |The specific Exchange Web Service SOAP action executed |
+|Call Volume |The number of SOAP action calls in the given period |
+|Last Activity date (UTC) |The last date of activity recorded for that app and SOAP action |
+
+You can also export the report data into an Excel .csv file, by selecting the **Export** link.
diff --git a/microsoft-365/admin/activity-reports/forms-activity-ww.md b/microsoft-365/admin/activity-reports/forms-activity-ww.md
index c3a41c72783..84e76393a9c 100644
--- a/microsoft-365/admin/activity-reports/forms-activity-ww.md
+++ b/microsoft-365/admin/activity-reports/forms-activity-ww.md
@@ -2,8 +2,8 @@
title: "Microsoft 365 admin center forms activity reports"
f1.keywords:
- NOCSH
-ms.author: efrene
-author: efrene
+ms.author: camillepack
+author: camillepack
manager: scotv
ms.date: 11/10/2020
audience: Admin
diff --git a/microsoft-365/admin/activity-reports/forms-pro-activity-ww.md b/microsoft-365/admin/activity-reports/forms-pro-activity-ww.md
index 01c4316c08f..f9b01ee1c76 100644
--- a/microsoft-365/admin/activity-reports/forms-pro-activity-ww.md
+++ b/microsoft-365/admin/activity-reports/forms-pro-activity-ww.md
@@ -2,8 +2,8 @@
title: "Microsoft Dynamics 365 customer voice activity reports"
f1.keywords:
- NOCSH
-ms.author: efrene
-author: efrene
+ms.author: camillepack
+author: camillepack
manager: scotv
ms.date: 11/10/2020
audience: Admin
diff --git a/microsoft-365/admin/activity-reports/mailbox-usage.md b/microsoft-365/admin/activity-reports/mailbox-usage.md
index 9a53568452a..8f3a579d130 100644
--- a/microsoft-365/admin/activity-reports/mailbox-usage.md
+++ b/microsoft-365/admin/activity-reports/mailbox-usage.md
@@ -1,7 +1,7 @@
---
title: "Microsoft 365 admin center mailbox usage reports"
-ms.author: efrene
-author: efrene
+ms.author: camillepack
+author: camillepack
manager: scotv
ms.date: 11/27/2023
audience: Admin
@@ -21,12 +21,12 @@ search.appverid:
- MOE150
- GEA150
ms.assetid: beffbe01-ce2d-4614-9ae5-7898868e2729
-description: "Learn how to get the Mailbox usage report to find out about activity levels for users with a user mailbox, as well as storage and quota information for each."
+description: "Learn how to get the Mailbox usage report to find out about activity levels for users with a user mailbox, and storage and quota information for each."
---
# Microsoft 365 Reports in the admin center - Mailbox usage
-The **Mailbox usage report** provides information about users with a user mailbox and the level of activity by each based on the email send, read, create appointment, send meeting, accept meeting, decline meeting and cancel meeting activity. It also provides information about how much storage has been consumed by each user mailbox, and how many of them are approaching storage quotas. The mailbox usage report also contains information on mailboxes shared amongst users, providing storage and quota data on shared mailboxes.
+The **Mailbox usage report** provides information about users with a user mailbox and the level of activity by each based on the email send, read, create appointment, send meeting, accept meeting, decline meeting and cancel meeting activity. It also provides information about how much storage has been consumed by each user mailbox, and how many of them are approaching storage quotas. The mailbox usage report also contains information on mailboxes shared among users, providing storage and quota data on shared mailboxes.
## How to get to the mailbox usage report
@@ -36,22 +36,28 @@ The **Mailbox usage report** provides information about users with a user mailbo
## Interpret the Mailbox usage report
-You can get a view into your organization's mailbox usage by looking at the **Mailbox**, **Storage** and **Quota** charts.
+You can get a view into your organization's mailbox usage by looking at the **Mailbox**, **Storage, and **Quota** charts.
-To access shared mailbox information, change the drop-down selection at the top right of the charts to **Shared**. If your tenant does not have shared mailboxes, you will not be able to view any shared mailbox information.
+To access shared mailbox information, change the drop-down selection at the top right of the charts to **Shared**. If your tenant doesn't have shared mailboxes, you will not be able to view any shared mailbox information.
> [!NOTE]
-> You will not currently be able to export the summary chart information for shared mailboxes. This is a known issue and will be corrected in a future iteration.
+> You won't currently be able to export the summary chart information for shared mailboxes. This is a known issue and will be corrected in a future iteration.
:::image type="content" alt-text="Mailbox usage report." source="../../media/9f610e91-cbc1-4e59-b824-7b1ddd84b738.png" lightbox="../../media/9f610e91-cbc1-4e59-b824-7b1ddd84b738.png":::
-The **Mailbox usage** report can be viewed for trends over the last 7 days, 30 days, 90 days, or 180 days. However, if you select a particular day in the report, the table will show data for up to 28 days from the current date (not the date the report was generated). The data in each report usually covers up to the last 24 to 48 hours.
-
-The **Mailbox usage** report does not include **Recoverable Items** as they are included in the **Recoverable Items mailbox quota**.
+The **Mailbox usage** report can be viewed for trends over the last 7 days, 30 days, 90 days, or 180 days. However, if you select a particular day in the report, the table shows data for up to 28 days from the current date (not the date the report was generated). The data in each report usually covers up to the last 24 to 48 hours.
### The Mailbox chart
-The **Mailbox** chart shows you the total number of user or shared mailboxes in your organization, and the total number of user mailboxes that are active on any given day of the reporting period. A user mailbox is considered active if it had an email send, read, create appointment, send meeting, accept meeting, decline meeting and cancel meeting activity.
+The **Mailbox** chart shows you the total number of user or shared mailboxes in your organization, and the total number of user mailboxes that are active on any given day of the reporting period. A user mailbox is considered active if it had an email do at least one of the following:
+
+- Send
+- Read
+- Create appointment
+- Send meeting
+- Accept meeting
+- Decline meeting
+- Cancel meeting activity
> [!NOTE]
> Shared mailboxes do not have activity independent of a user mailbox so only a count of shared mailboxes will be shown when this mailbox type is selected.
@@ -112,7 +118,7 @@ This table shows you a breakdown of mailbox usage at the per mailbox level. You
To learn more about the recoverable items folder, see [Recoverable Items folder in Exchange Online](/exchange/security-and-compliance/recoverable-items-folder/recoverable-items-folder#recoverable-items-mailbox-quotas).
-If your organization's policies prevents you from viewing reports where user information is identifiable, you can change the privacy setting for all these reports. Check out the **Hide user details in the reports** section in the [Activity Reports in the Microsoft 365 admin center](activity-reports.md).
+If your organization's policies prevent you from viewing reports where user information is identifiable, you can change the privacy setting for all these reports. Check out the **Hide user details in the reports** section in the [Activity Reports in the Microsoft 365 admin center](activity-reports.md).
Select **Choose columns** to add or remove columns from the report. :::image type="content" alt-text="Mailbox usage report - choose columns." source="../../media/ea3d0b18-6ac6-41b0-9bb9-4844f040ea75.png":::
diff --git a/microsoft-365/admin/activity-reports/microsoft-365-copilot-organizational-messages.md b/microsoft-365/admin/activity-reports/microsoft-365-copilot-organizational-messages.md
index 528b485d792..06ec1faa585 100644
--- a/microsoft-365/admin/activity-reports/microsoft-365-copilot-organizational-messages.md
+++ b/microsoft-365/admin/activity-reports/microsoft-365-copilot-organizational-messages.md
@@ -3,7 +3,7 @@ title: "Microsoft 365 Copilot features adoption using organizational messages"
ms.author: camillepack
author: camillepack
manager: scotv
-ms.date: 10/16/2023
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
@@ -28,7 +28,7 @@ description: "Learn how you can use organizational messages to help with the ado
# Microsoft 365 Copilot features adoption using organizational messages
-Organizational messages enable Enterprise administrators to deliver clear, actionable in-product messages to users of Microsoft 365 experiences. To learn more about organizational messages, see [Organizational Messages in Adoption Score](../adoption/organizational-messages.md) and [Organizational Messages in Intune](/mem/intune/remote-actions/organizational-messages-prerequisites).
+Organizational messages enable Enterprise administrators to deliver clear, actionable in-product messages to users of Microsoft 365 experiences. To learn more about organizational messages, see [Organizational Messages in Adoption Score](../adoption/organizational-messages.md) and [Organizational Messages in the Microsoft 365 admin center](/microsoft-365/admin/misc/organizational-messages-microsoft-365).
To help with the adoption of Microsoft 365 Copilot features, organizational messages in Microsoft 365 usage analytics report enable admins to send messages to their Microsoft 365 licensed users who haven't recently used any Copilot features. In the pipeline, we're planning to expand organizational messages across platforms like Teams, Outlook, Excel, PowerPoint, and Word to further enhance the adoption of specific Copilot features.
@@ -40,7 +40,7 @@ To preview organizational messages in the Microsoft 365 Copilot usage report, yo
- Organizational Message Writer
-The Organizational Message Writer role is a built-in role that allows assigned admins to view and configure organizational messages for their tenant. Note that this role doesn't grant access to user-level details in usage reports or the ability to modify permission settings. To learn more about the Organizational Message Writer role, see [About admin roles](../add-users/about-admin-roles.md).
+The Organizational Message Writer role is a built-in role that allows assigned admins to view and configure organizational messages for their tenant. This role doesn't grant access to user-level details in usage reports or the ability to modify permission settings. To learn more about the Organizational Message Writer role, see [About admin roles](../add-users/about-admin-roles.md).
The global administrator can assign the Organizational Messages Writer role to an admin user by following these steps:
@@ -66,18 +66,18 @@ Select **Schedule message** within the recommendation card and follow these step
### Step 1: Select message content
-Within the **Message** section of the Organizational messages panel, choose one from the set of the pre-made content, each containing a title, message, and link for your users to visit when they interact with the message. You can then review what the message will look like to your targeted users within the **Preview** section. In the preview, we support the Windows 11 notification and Teaching popover in new Teams.
+Within the **Message** section of the Organizational messages panel, choose one from the set of the premade content, each containing a title, message, and link for your users to visit when they interact with the message. You can then review what the message looks like to your targeted users within the **Preview** section. In the preview, we support the Windows 11 notification and Teaching popover in new Teams.
:::image type="content" source="../../media/copilot-notification-for-org.png" alt-text="Screenshot showing the notification pop-up for Copilot.":::
*The users see the Windows 11 notification recommending they use Microsoft 365 Copilot.*
>[!NOTE]
-> Messages will align with your computer's system language settings. We currently support 15 languages. If your language is not among them, we will default to the nearest available option. [Check the appendix to see which languages are supported](#appendix).
+> Messages align with your computer's system language settings. We currently support 15 languages. If your language isn't among them, we'll default to the nearest available option. [Check the appendix to see which languages are supported](#appendix).
:::image type="content" source="../../media/from-your-admin-teams.png" alt-text="Screenshot showing the notification pop-up in Teams from the admin to use Copilot.":::
-*The users see Teams in-product Teaching Popovers in the new Teams recommending they use Copilot in Teams.*
+*The users see Microsoft Teams in-product Teaching Popovers in the new Teams recommending they use Copilot in Teams.*
>[!NOTE]
> Organizational messages will only show up in the new Teams.
@@ -100,7 +100,7 @@ Once you're satisfied with the configuration of your message, check the acknowle
## What’s next?
-The Organizational message will start sending on your provided start date. You can confirm the status of your message within the recommendation card and/or by selecting **View details**. If you need to make any changes, you can cancel the current message within the details panel and create a new one by repeating the previously described process.
+The Organizational message starts sending on your provided start date. You can confirm the status of your message within the recommendation card and/or by selecting **View details**. If you need to make any changes, you can cancel the current message within the details panel and create a new one by repeating the previously described process.
## FAQ
diff --git a/microsoft-365/admin/activity-reports/microsoft-copilot-usage.md b/microsoft-365/admin/activity-reports/microsoft-copilot-usage.md
index c6f33970cfe..0e553568ab0 100644
--- a/microsoft-365/admin/activity-reports/microsoft-copilot-usage.md
+++ b/microsoft-365/admin/activity-reports/microsoft-copilot-usage.md
@@ -24,7 +24,7 @@ description: "Learn about the Microsoft 365 Copilot Chat usage report and gain i
The Microsoft 365 Copilot Chat usage dashboard provides insights into active usage of Microsoft 365 Copilot Chat. The report includes total active users, average daily active users, and active users per app (for example, Microsoft 365 Copilot (app) and Microsoft Edge). Usage insights can be viewed as totals and trends for the past 7, 30, 90, or 180-day periods. The report also shows the last activity date per user, anonymized by default. To view all reports, check out [Microsoft 365 Reports in the admin center overview](activity-reports.md).
> [!NOTE]
-> The report is currently limited to just the usage of Microsoft 365 Copilot Chat in the Microsoft 365 Copilot (app), Microsoft Edge, and to users without a Microsoft 365 license. Additional apps will be added over time. In addition, the earliest date on which usage history is available for this report is September 15th, 2024.
+> The total count of active users and the average daily active users encompass all usage of Microsoft 365 Copilot Chat in Teams, Outlook, Copilot.cloud.microsoft, Microsoft 365 Copilot (app), and the Microsoft Edge sidebar for users without a Microsoft 365 license. Currently, the breakdown of active users is limited to the usage of Microsoft 365 Copilot Chat in Microsoft 365 Copilot (app) and Microsoft Edge. The breakdown of active users for Teams, Outlook, and Copilot.cloud.microsoft will be added over time. In addition, the earliest date on which usage history is available for this report is September 15th, 2024.
## How do I get to the Microsoft 365 Copilot Chat usage report?
@@ -78,7 +78,7 @@ You can also export the report data into an Excel .csv file by selecting the **E
|-----------------------------|-----------------------------------------------------------------------------|
| **Username** | The user's principal name. |
| **Display name** | The full name of the user. |
-| **Last activity date (UTC)**| The most recent date on which the user sent a message to Microsoft 365 Copilot Chat in Microsoft Edge or the Microsoft 365 Copilot (app), dating back to September 15, 2024. This date remains fixed even if the timeframe of the report is changed. |
+| **Last activity date (UTC)**| The most recent date on which the user sent a message to Microsoft 365 Copilot Chat in Teams, Outlook, Copilot.cloud.microsoft, Microsoft Edge, or the Microsoft 365 Copilot (app), dating back to September 15, 2024. This date remains fixed even if the timeframe of the report is changed. |
## User-specific data de-anonymous/anonymous setting
@@ -87,3 +87,9 @@ By default, usernames and display names in the Microsoft 365 Copilot Chat report
1. In the Microsoft 365 admin center, go to the **Settings** > **Org Settings**, and under the **Services** tab, choose **Reports**.
2. Select **Reports**, and update the setting to “Display Concealed user, group, and site names in all reports”.
3. Select **Save**.
+
+## FAQ
+
+### Does this report include only the Copilot Chat usage for users without a Microsoft 365 Copilot license in the organization?
+
+Yes. To view Copilot Chat usage of Microsoft 365 Copilot licensed users in the organization, refer to the [Microsoft 365 Copilot usage report](microsoft-365-copilot-usage.md) in the Microsoft 365 admin center.
diff --git a/microsoft-365/admin/activity-reports/microsoft-teams-apps-usage.md b/microsoft-365/admin/activity-reports/microsoft-teams-apps-usage.md
index 5eacab5db1c..21fc3320d6d 100644
--- a/microsoft-365/admin/activity-reports/microsoft-teams-apps-usage.md
+++ b/microsoft-365/admin/activity-reports/microsoft-teams-apps-usage.md
@@ -1,7 +1,7 @@
---
title: "Microsoft 365 admin center Teams app usage reports"
-ms.author: efrene
-author: efrene
+ms.author: camillepack
+author: camillepack
manager: scotv
ms.date: 1/25/2024
audience: Admin
diff --git a/microsoft-365/admin/activity-reports/microsoft365-apps-usage-ww.md b/microsoft-365/admin/activity-reports/microsoft365-apps-usage-ww.md
index 06aece325d2..0449c62e1c9 100644
--- a/microsoft-365/admin/activity-reports/microsoft365-apps-usage-ww.md
+++ b/microsoft-365/admin/activity-reports/microsoft365-apps-usage-ww.md
@@ -3,7 +3,7 @@ title: "Microsoft 365 admin center apps usage reports"
ms.author: camillepack
author: camillepack
manager: scotv
-ms.date: 03/07/2025
+ms.date: 03/17/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
@@ -41,8 +41,7 @@ For example, you can understand the activity of each user licensed to use Micros
You can get a view into your user's Microsoft 365 Apps activity by looking at the **Users** and **Platform** charts.
-> [!div class="mx-imgBorder"]
-> 
+:::image type="content" source="../../media/microsoft365-apps-usage-ww/microsoft-365-apps-usage-report.png" alt-text="Diagram that shows the Microsoft 365 Apps usage report in the Microsoft 365 admin center." lightbox="../../media/microsoft365-apps-usage-ww/microsoft-365-apps-usage-report.png":::
The **Microsoft 365 Apps usage** report can be viewed for trends over the last 7 days, 30 days, 90 days, or 180 days. However, if you select a particular day in the report, the table will show data for up to 28 days from the current date (not the date the report was generated).
@@ -125,7 +124,7 @@ The table shows you a breakdown of data at the per-user level. You can add or re
| Activity on Teams (web) | Indicates if the user was active on Teams for web during the specified time period.|
> [!NOTE]
-> **Outlook for Windows migration process** view, and the columns ‘Activity in classic Outlook’ and ‘Activity in new Outlook’ in table are only available in the **Public** environment.
+> **Outlook for Windows migration process** view, and the columns 'Activity in classic Outlook' and 'Activity in new Outlook' in table are only available in the **Public** environment.
The other columns identify if the user was active on that platform for that app (within Microsoft 365 Apps) in the period selected.
diff --git a/microsoft-365/admin/activity-reports/sharepoint-site-usage-ww.md b/microsoft-365/admin/activity-reports/sharepoint-site-usage-ww.md
index fbda55bec42..46fa62d3593 100644
--- a/microsoft-365/admin/activity-reports/sharepoint-site-usage-ww.md
+++ b/microsoft-365/admin/activity-reports/sharepoint-site-usage-ww.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: camillepack
author: camillepack
manager: scotv
-ms.date: 01/30/2024
+ms.date: 04/01/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
@@ -68,7 +68,7 @@ The **SharePoint site usage** report can be viewed for trends over the last 7 da
|Metric|Description|
|:-----|:-----|
-|Site URL |The full URL of the site. Note: The URL will be empty temporarily. |
+|Site URL |The full URL of the site. |
|Deleted |The deletion status of the site. It takes at least 7 days for sites to be marked as deleted. |
|Site owner |The username of the primary owner of the site. |
|Site owner principal name |The email address of the owner of the site. |
@@ -91,6 +91,6 @@ The **SharePoint site usage** report can be viewed for trends over the last 7 da
| Site ID | The site ID of the site. |
>[!NOTE]
-> The SharePoint site URL may not be displayed in related usage reports. To display the site URL, you can use PowerShell. To follow the steps, see [Use PowerShell to resolve site URLs](resolve-site-urls.md).
+>The SharePoint site URL will not be displayed if [BYOK](/azure/information-protection/byok-price-restrictions) or [Customer Lockbox](/azure/security/fundamentals/customer-lockbox-overview) is enabled. If you meet the requirement, submit a request via [ODSP Site URLs Displaying Request](https://forms.office.com/r/16hLY6na5W). The site URL will be visible within one week. If the requirement is not met, you can use PowerShell. To follow the steps, see [Use PowerShell to resolve site URLs](resolve-site-urls.md).
Note that you may see differences between the sites listed above and those listed on the [Active sites page](https://go.microsoft.com/fwlink/?linkid=2185220) in the [SharePoint admin center](https://go.microsoft.com/fwlink/?linkid=2185219), from Sites > Active sites because the certain site templates and URLs are not included as Active Sites. See [Manage sites in the SharePoint admin center](/sharepoint/manage-sites-in-new-admin-center) for more information.
\ No newline at end of file
diff --git a/microsoft-365/admin/add-users/about-admin-roles.md b/microsoft-365/admin/add-users/about-admin-roles.md
index 5c59f33fc41..61de618a0bf 100644
--- a/microsoft-365/admin/add-users/about-admin-roles.md
+++ b/microsoft-365/admin/add-users/about-admin-roles.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 06/24/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: overview
ms.service: microsoft-365-business
@@ -134,18 +134,16 @@ Before the partner can assign these roles to users, you must add the partner as
## Volume licensing roles
-Permissions to volume licensing information in Microsoft 365 admin center are controlled by the VL Agreement Administrators in Volume Licensing Service Center (VLSC), even for VL roles that predominantly use functionality in the Microsoft 365 admin center rather than VLSC.
+Volume licensing (VL) agreement administrators access their volume licenses in Microsoft 365 admin center.
-- Some volume licensing (VL) functionality is now available in Microsoft 365 admin center in a new volume licensing blade visible only to volume licensing users only.
+- VL administrators don't have permissions to any other admin center information or functionality outside the VL section.
-- Volume licensing users see no other Microsoft 365 admin center information or functionality.
+- Global admins don't assign any VL roles and don't need to assign any admin role to a VL administrator for them to be able to access the VL agreement.
-- Microsoft 365 admin center Global Admins have no role in assigning VL user permissions and do not need to assign any admin permissions to VL users for them to see the volume licensing blade.
+- Global admins don't have access to VL information or functionality in admin center, unless they are assigned a VL role by a VL administrator.
-- Volume licensing users must first register on the Volume Licensing Service Center (VLSC), where all roles and permissions for volume licensing functions is managed.
+- For more information, see [Manage volume licensing user roles](../../commerce/licenses/manage-user-roles-vl.md) or [contact the Volume Licensing Support team](/licensing/contact-us).
-- For more information about volume licensing in Microsoft 365 admin center, see [Frequently Asked Questions for the Volume Licensing Service Center](/licensing/vlsc-faqs-home-page) or [contact the Volume Licensing Service team](/licensing/contact-us).
-
## Related content
[Assign admin roles](assign-admin-roles.md) (article)\
diff --git a/microsoft-365/admin/add-users/about-guest-users.md b/microsoft-365/admin/add-users/about-guest-users.md
index 64d4fbbfc2f..02477269a5f 100644
--- a/microsoft-365/admin/add-users/about-guest-users.md
+++ b/microsoft-365/admin/add-users/about-guest-users.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/30/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: overview
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/add-users/add-users.md b/microsoft-365/admin/add-users/add-users.md
index 2aa87bb3b76..a27f97efb15 100644
--- a/microsoft-365/admin/add-users/add-users.md
+++ b/microsoft-365/admin/add-users/add-users.md
@@ -26,7 +26,7 @@ ms.custom:
search.appverid:
- MET150
description: "Learn how to give each team member a user account so they can have Microsoft 365 licenses, sign-in credentials, and Microsoft 365 mailboxes."
-ms.date: 08/21/2023
+ms.date: 03/14/2025
---
# Add users and assign licenses at the same time
@@ -71,13 +71,12 @@ Check out this video and others on our [YouTube channel](https://go.microsoft.co
2. Go to **Users** > **Active users**, and select **Add a user**.
3. In the **Set up the basics** pane, fill in the basic user information, and then select **Next**.
- - **Name** Fill in the first and last name, display name, and username.
- - **Domain** Choose the domain for the user's account. For example, if the user's username is Jakob, and the domain is contoso.com, they'll sign in by using jakob@contoso.com.
- - **Password settings** Choose to use the autogenerated password or to create your own strong password for the user.
+ - **Name** - Fill in the first and last name, display name, and username.
+ - **Domains** - Choose the domain for the user's account. For example, if the user's username is Jakob, and the domain is contoso.com, they'll sign in by using jakob@contoso.com.
+ - **Password settings** - Choose to use the autogenerated password or to create your own strong password for the user.
- The user must change their password after 90 days. Or you can choose to **Require this user to change their password when they first sign in**.
- - Choose whether you want to send the password in email when the user is added.
4. In the **Assign product licenses** pane, select the location and the appropriate license for the user. If you don't have any licenses available, you can still add a user and buy additional licenses. Expand **Apps** and select or deselect apps to limit the apps the user has a license for. Select **Next**.
-5. In the **Optional settings** pane, expand **Roles** to make this user an admin. Expand **Profile info** to add additional information about the user.
+5. In the **Optional settings** pane, expand **Roles** if you want to make this user an admin. Expand **Profile info** to add additional information about the user.
6. Select **Next**, review your new user's settings, make any changes you like, then select **Finish adding**, then **Close**.
## Add a user in the admin simplified view
@@ -105,7 +104,6 @@ If you're seeing this page in the admin center, you're on the **admin simplified
- **Automatically create a password** Choose to use the autogenerated password or to create your own strong password for the user.
- The user must change their password after 90 days. Or you can choose to **Require this user to change their password when they first sign in**.
- Choose whether you want to send the password in email when the user is added.
- - **Send password in email upon completion** - Choose whether you want to send the password in email when the user is added.
4. In the **Assign product licenses** pane, select the location and the appropriate license for the user. If you don't have any licenses available, you can still add a user and buy additional licenses. Expand **Apps** and select or deselect apps to limit the apps the user has a license for. Select **Next**.
5. In the **Optional settings** pane, expand **Roles** to make this user an admin. Expand **Profile info** to add additional information about the user.
6. Select **Next**, review your new user's settings, make any changes you like, then select **Finish adding**, then **Close**.
diff --git a/microsoft-365/admin/add-users/assign-admin-roles.md b/microsoft-365/admin/add-users/assign-admin-roles.md
index 9d8afe9c1e1..23f276e71e4 100644
--- a/microsoft-365/admin/add-users/assign-admin-roles.md
+++ b/microsoft-365/admin/add-users/assign-admin-roles.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 06/25/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/add-users/change-a-user-name-and-email-address.md b/microsoft-365/admin/add-users/change-a-user-name-and-email-address.md
index 6dae60f76b9..794c79b8832 100644
--- a/microsoft-365/admin/add-users/change-a-user-name-and-email-address.md
+++ b/microsoft-365/admin/add-users/change-a-user-name-and-email-address.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/29/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/add-users/reset-passwords.md b/microsoft-365/admin/add-users/reset-passwords.md
index fd6cd6e55ae..b7b54bc6699 100644
--- a/microsoft-365/admin/add-users/reset-passwords.md
+++ b/microsoft-365/admin/add-users/reset-passwords.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/30/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
@@ -115,7 +115,7 @@ These steps work for a business with tens of users. If you have hundreds or thou
2. Select the option next to **Display name** to select everyone in your business. Then unselect yourself. You can't reset your own password at the same time you reset everyone else's password.
-3. Select **Reset password**.
+3. Select **Reset password** from the top row.
4. Follow the instructions on the **Reset password** page, and select **Reset password**. If you opted for autogenerating the passwords, the new temporary passwords are displayed.
diff --git a/microsoft-365/admin/add-users/set-password-to-never-expire.md b/microsoft-365/admin/add-users/set-password-to-never-expire.md
index bfc0e62b57b..248a47e73e2 100644
--- a/microsoft-365/admin/add-users/set-password-to-never-expire.md
+++ b/microsoft-365/admin/add-users/set-password-to-never-expire.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 09/30/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/admin-overview/admin-center-overview.md b/microsoft-365/admin/admin-overview/admin-center-overview.md
index 3718db7c099..e5817ade65e 100644
--- a/microsoft-365/admin/admin-overview/admin-center-overview.md
+++ b/microsoft-365/admin/admin-overview/admin-center-overview.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: efrene
author: efrene
manager: scotv
-ms.date: 10/23/2023
+ms.date: 03/19/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
@@ -53,8 +53,10 @@ Here are the features and settings you'll find in the left-hand navigation of th
|Menu|What it's for|
|---|---|
|**Home**|This is the landing page in the admin center. You'll see where to manage users, billing, service health, and reports.|
+|**Copilot**|Manage everything related to Copilot. View insights about how people are using and learning about Copilot, assign licenses, find training, change settings, and more.|
|**Users**|Create and manage users in your organization, like employees or students. You can also set their permission level or reset their passwords.|
-|**Groups**|Create and manage groups in your organization, such as a Microsoft 365 group, distribution group, security group, or shared mailbox. Learn how to [create](../create-groups/create-groups.md) and [manage](../create-groups/manage-groups.md) groups.|
+|**Teams and groups**|Create and manage groups in your organization, such as a Microsoft 365 group, Microsoft 365 Teams, distribution group, security group, or shared mailbox. Learn how to [create](../create-groups/create-groups.md) and [manage](../create-groups/manage-groups.md) groups.|
+|**Roles**|Assign Microsoft Entra (Microsoft Entra ID) built-in roles to users who need access to other admin centers and resources in Microsoft Entra ID, such as users, groups, and apps that use Microsoft Graph API.|
|**Resources**|Create and manage resources, like a SharePoint site collection. Learn how to [create site collections](/sharepoint/create-site-collection).|
|**Billing**|View, purchase, or cancel subscriptions for your organization. View past billing statements or view the number of assigned licenses to individual users. Learn how to [manage billing](../../commerce/index.yml).|
|**Support**|View existing service requests or create new ones. Learn more in [Contact support for business products - Admin Help](../../business-video/get-help-support.md).|
@@ -91,11 +93,13 @@ Under **Your organization** on the **Users** tab is a list of people who can acc
On the **Teams** tab, create a new team or manage existing teams. You can manage the members of a team or select the three dots (more actions) to change other Teams settings.
-On the **Subscriptions** tab, add more products, add licenses, or use the three dots (more actions) menu to modify licenses or payment method.
+On the **Products** tab, add more products, add licenses, or use the three dots (more actions) menu to modify licenses or payment method.
+
+On the **Upcoming changes** tab, view relevant announcements about new and updated features to Microsoft 365 apps.
On the **Learn** tab, browse videos and articles about the admin center and other Microsoft 365 features. To explore more advanced features of the admin center, open the navigation menu and expand the headings to see more. Select **Show all** to see everything in the navigation menu or use the search bar to quickly find what you're looking for.
-If you need assistance, select **Help & support**. Search for topic you want help with and view the recommended solution or select the headset to contact support, and then enter your question and contact information.
+If you need assistance, select **Help & support** (the headphones icon). Search for topic you want help with and view the recommended solution or select the headset to contact support, and then enter your question and contact information.
## Watch: The admin center in dashboard view
@@ -148,7 +152,7 @@ If you have no idea who to contact at your work or school for help, try asking t
1. Sign in at admin.cloud.microsoft, go to the navigation pane and select **Settings** > **Org settings** \> **Organization profile** tab.
-2. Go to the **Release preferences** card, and then select **Edit**.
+2. Select **Release preferences**.
3. Select either **Targeted release for everyone** or **Targeted release for selected users**. If you choose Targeted release for selected users, make sure that you add your admin account (and any other admins in your org who want to participate) to the list of selected users.
diff --git a/microsoft-365/admin/admin-overview/admin-mobile-app.md b/microsoft-365/admin/admin-overview/admin-mobile-app.md
index e004b311025..4b47ec6a7da 100644
--- a/microsoft-365/admin/admin-overview/admin-mobile-app.md
+++ b/microsoft-365/admin/admin-overview/admin-mobile-app.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/30/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: overview
ms.service: microsoft-365-business
@@ -46,7 +46,7 @@ You can also get a link from the Microsoft 365 admin center.
diff --git a/microsoft-365/admin/admin-overview/what-subscription-do-i-have.md b/microsoft-365/admin/admin-overview/what-subscription-do-i-have.md
index 1fe2aeaa0ee..3a140872baf 100644
--- a/microsoft-365/admin/admin-overview/what-subscription-do-i-have.md
+++ b/microsoft-365/admin/admin-overview/what-subscription-do-i-have.md
@@ -27,7 +27,7 @@ ms.custom:
- AdminTemplateSet
search.appverid: MET150
description: "Find out what Microsoft business subscriptions your organization has by using the Your products page in the Microsoft 365 admin center."
-ms.date: 07/22/2024
+ms.date: 03/27/2025
---
# What Microsoft business subscriptions do I have?
diff --git a/microsoft-365/admin/create-groups/office-365-groups.md b/microsoft-365/admin/create-groups/office-365-groups.md
index 00dcf7e1dea..00ca6dfb820 100644
--- a/microsoft-365/admin/create-groups/office-365-groups.md
+++ b/microsoft-365/admin/create-groups/office-365-groups.md
@@ -1,7 +1,7 @@
---
-title: "Overview of Microsoft 365 Groups for administrators"
+title: Overview of Microsoft 365 Groups for administrators
ms.reviewer: rahulnayak
-ms.date: 02/18/2020
+ms.date: 03/13/2025
f1.keywords: NOCSH
author: DaniEASmith
ms.author: danismith
@@ -26,7 +26,7 @@ search.appverid:
- BCS160
- MET150
- MOE150
-description: "With Microsoft 365 Groups, you can drive teamwork across Microsoft 365 by giving a group of people access to a collection of shared resources."
+description: With Microsoft 365 Groups, you can drive teamwork across Microsoft 365 by giving a group of people access to a collection of shared resources.
---
# Overview of Microsoft 365 Groups for administrators
@@ -46,7 +46,7 @@ Microsoft 365 Groups is the foundational membership service that drives all team
With a Microsoft 365 group, you don't have to manually assign permissions to each of these resources. Adding people to the group automatically gives them the permissions they need.
-Any user can create a group unless you [limit group creation to a specific set of people](../../solutions/manage-creation-of-groups.md). If you limit group creation, users who can't create groups won't be able to create SharePoint sites, Planners, teams, Outlook group calendars, Stream groups, Viva Engage groups, Shared libraries in OneDrive, or shared Power BI workspaces. These services require the people creating them to be able to create a group. Users can still participate in group activities, such as creating tasks in Planner or using Teams chat, provided they're a member of the group.
+Any user can create a group unless you [limit group creation to a specific set of people](../../solutions/manage-creation-of-groups.md). If you limit group creation, users who can't create groups aren't able to create SharePoint sites, Planners, teams, Outlook group calendars, Stream groups, Viva Engage groups, Shared libraries in OneDrive, or shared Power BI workspaces. These services require the people creating them to be able to create a group. Users can still participate in group activities, such as creating tasks in Planner or using Teams chat, provided they're a member of the group.
Groups have the following roles:
@@ -54,7 +54,7 @@ Groups have the following roles:
- **Members** - Members can access everything in the group, but can't change group settings. By default group members can invite guests to join your group, though you can [control that setting](manage-guest-access-in-groups.md).
- **Guests** - Group guests are members who are from outside your organization.
-User admins and groups admins can create and manage groups in the Microsoft 365 admin center. You can't be a delegated admin (for example, a consultant who is an admin on behalf of).
+User admins and groups admins can create and manage groups in the [Microsoft 365 admin center](https://go.microsoft.com/fwlink/p/?linkid=2052855). You can't be a delegated admin (for example, a consultant who is an admin on behalf of).
As an administrator, you can:
@@ -64,7 +64,7 @@ As an administrator, you can:
- [Manage guest access to groups](manage-guest-access-in-groups.md)
- [Recover a deleted group](restore-deleted-group.md) (within 30 days of deletion)
-If you prefer a more automated way to manage the lifecycle of your Microsoft 365 groups, you can use expiration policies to expire groups at a specific time interval. The group's owners will get an email 30, 15, and 1 day before the group expiration that allows them to renew the group if it's still needed. See: [Microsoft 365 group Expiration Policy](../../solutions/microsoft-365-groups-expiration-policy.md).
+If you prefer a more automated way to manage the lifecycle of your Microsoft 365 groups, you can use expiration policies to expire groups at a specific time interval. The group's owners get an email 30, 15, and 1 day before the group expiration that allows them to renew the group if it's still needed. For more information, see [Microsoft 365 group Expiration Policy](../../solutions/microsoft-365-groups-expiration-policy.md).
You can administer your groups from the Microsoft 365 admin center or [by using PowerShell](../../enterprise/manage-microsoft-365-groups-with-powershell.md).
@@ -85,41 +85,38 @@ The following limits apply to Microsoft 365 Groups:
|File storage|1 Terabyte + 10 GB per subscribed user + any other storage purchased. You can purchase an unlimited amount of extra storage.|
|Group Mailbox size|50 GB|
-
Managing your Microsoft 365 groups is more effective when you have actionable information about groups usage. The Microsoft 365 admin center has a reporting tool that lets you see storage use, how many active groups you have, and how users are using the groups. See: [Microsoft 365 Reports in the admin center](../activity-reports/office-365-groups.md) for more information.
## Sensitivity labels
-You can create sensitivity labels that the users in your organization can set when they create a Microsoft 365 group. With sensitivity labels, you can configure:
+You can create sensitivity labels that the users in your organization can set when they create a Microsoft 365 group. With sensitivity labels, you can configure:
- Privacy (public or private)
- Guest access
- Unmanaged device access
-For example, you can create a label called *Highly Confidential* and specify that any group created with this label will be private and not allow guests. When users in your organization select this label during group creation, the group will be set to private and group members won't be allowed to add guests users to the group.
-
-> [!IMPORTANT]
-> If you're currently using classification labels, they'll no longer be available to users who create groups once sensitivity labels are enabled.
+For example, you can create a label called *Highly Confidential* and specify that any group created with this label is private and not allow guests. When users in your organization select this label during group creation, the group is set to private and group members aren't allowed to add guests users to the group.
For information about creating, managing, and using sensitivity labels, see [Use sensitivity labels to protect content in Microsoft Teams, Microsoft 365 groups, and SharePoint sites](../../compliance/sensitivity-labels-teams-groups-sites.md).
## Which Microsoft 365 plans include groups?
-Any Microsoft 365 subscription that has Exchange Online and SharePoint Online will support groups. That includes the Business Essentials and Business Premium plans, and the Enterprise E1, E3, and E5 plans. The group takes on the licensing of the person who creates the group. As long as they have the proper license for whatever features you want the group to have, that license will convey to the group.
+Any Microsoft 365 subscription that has Exchange Online and SharePoint Online supports groups. That includes the Business Basic, Business Standard, and Business Premium plans, and the Enterprise E1, E3, and E5 plans. The group takes on the licensing of the person who creates the group. As long as they have the proper license for whatever features you want the group to have, that license conveys to the group.
> [!NOTE]
> For more details about Microsoft 365 service families and plans, see [Microsoft 365 plan options](/office365/servicedescriptions/office-365-platform-service-description/office-365-plan-options).
-If you have an Exchange-only plan you can still get the shared inbox and shared calendar features of groups in Outlook but you won't get the document library, Planner or any of the other capabilities.
+If you have an Exchange-only plan you can still get the shared inbox and shared calendar features of groups in Outlook but you don't get the document library, Planner or any of the other capabilities.
-Microsoft 365 groups work with Microsoft Entra ID. The groups features you get depends on which Microsoft Entra subscription you have, and what licenses are assigned to the person who created the group.
+Microsoft 365 groups work with Microsoft Entra ID. The groups features you get depends on which Microsoft Entra subscription you have and what licenses are assigned to the person who created the group.
> [!IMPORTANT]
> For all the groups features, if you have a Microsoft Entra ID P1 or P2 subscription, users can join the group whether or not they have a Microsoft Entra ID P1 license assigned to them. Licensing isn't enforced.
-> Periodically we'll generate usage reports that tell you which users are missing a license, and need one assigned to them to be compliant with the licensing requirements. For example, let's say a user doesn't have a license and they're added to a group where the naming policy is enforced. The report will flag for you that they need a license.
+>
+> Periodically, we generate usage reports that tell you which users are missing a license, and need one assigned to them to be compliant with the licensing requirements. For example, let's say a user doesn't have a license and they're added to a group where the naming policy is enforced. The report flags that they need a license.
-## Related content
+## Related articles
-[Learn about Microsoft 365 Groups](https://support.microsoft.com/office/b565caa1-5c40-40ef-9915-60fdb2d97fa2) (article)\
-[Manage Microsoft 365 Groups with PowerShell](../../enterprise/manage-microsoft-365-groups-with-powershell.md) (article)\
-[SharePoint Online Limits](/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits) (article)\
+- [Learn about Microsoft 365 Groups](https://support.microsoft.com/office/b565caa1-5c40-40ef-9915-60fdb2d97fa2) (article)\
+- [Manage Microsoft 365 Groups with PowerShell](../../enterprise/manage-microsoft-365-groups-with-powershell.md) (article)\
+- [SharePoint Online Limits](/office365/servicedescriptions/sharepoint-online-service-description/sharepoint-online-limits) (article)\
diff --git a/microsoft-365/admin/dns/create-dns-records-at-123-reg-co-uk.md b/microsoft-365/admin/dns/create-dns-records-at-123-reg-co-uk.md
index 3f184b57bcd..6d1ba91bd8f 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-123-reg-co-uk.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-123-reg-co-uk.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 11/18/2024
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -37,6 +38,8 @@ After you add these records at 123-reg.co.uk, your domain will be set up to work
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Find and fix issues after adding your domain or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT record for verification
Before you use your domain with Microsoft, we have to make sure that you own it. Your ability to log in to your account at your domain registrar and create the DNS record proves to Microsoft that you own the domain.
diff --git a/microsoft-365/admin/dns/create-dns-records-at-aws.md b/microsoft-365/admin/dns/create-dns-records-at-aws.md
index f3bc50c96df..124948b6abd 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-aws.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-aws.md
@@ -9,6 +9,7 @@ ms.date: 08/12/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -37,6 +38,8 @@ After you add these records at AWS, your domain will be set up to work with Micr
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Find and fix issues after adding your domain or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT record for verification
Before you use your domain with Microsoft, we have to make sure that you own it. Your ability to log in to your account at your domain registrar and create the DNS record proves to Microsoft that you own the domain.
diff --git a/microsoft-365/admin/dns/create-dns-records-at-cloudflare.md b/microsoft-365/admin/dns/create-dns-records-at-cloudflare.md
index caad5456837..e22871ac670 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-cloudflare.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-cloudflare.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 06/13/2024
+ms.date: 04/04/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -24,7 +25,7 @@ search.appverid:
- MET150
- MOE150
ms.assetid: 84acd4fc-6eec-4d00-8bed-568f036ae2af
-description: "Learn to verify your domain and set up DNS records for email, Skype for Business Online, and other services at Cloudflare for Microsoft."
+description: "Learn to verify your domain and set up DNS records for email, Skype for Business Online, and other services at Cloudflare."
---
# Connect your DNS records at Cloudflare to Microsoft 365
@@ -33,11 +34,13 @@ description: "Learn to verify your domain and set up DNS records for email, Skyp
If Cloudflare is your DNS hosting provider, follow the steps in this article to verify your domain and set up DNS records for email, Skype for Business Online, and so on.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Before you begin
You have two options for setting up DNS records for your domain:
-- [**Use Domain Connect**](#use-domain-connect-to-verify-and-set-up-your-domain) If you haven't set up your domain with another email service provider, use the Domain Connect steps to automatically verify and set up your new domain to use with Microsoft 365.
+- [**Use Domain Connect**](#use-domain-connect-to-verify-and-set-up-your-domain) If you haven't set up your domain with another email service provider, use the **Domain Connect** steps to automatically verify and set up your new domain to use with Microsoft 365.
OR
@@ -101,21 +104,19 @@ Before you use your domain with Microsoft, we have to make sure that you own it.
> [!NOTE]
> This record is used only to verify that you own your domain; it doesn't affect anything else. You can delete it later, if you like.
+1. Make sure you have added a domain in the Microsoft 365 Admin Center using the steps in [Add a domain](/admin/setup/add-domain#add-a-domain), and that the domain has not already been verified. You'll need to copy the **TXT value** from the **Add a record to verify ownership** page for use later in this procedure.
+
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the DNS management page, select **+Add record**.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add a domain verification TXT record.":::
-1. Select the TXT type from the drop-down list, and type or copy and paste the values from this table.
+1. Select the TXT type from the drop-down list, and type or copy and paste the values from this table. You'll use the TXT value (MS=ms*XXXXXXXX*) that you copied earlier.
|Type|Name|TTL|Content|
|---|---|---|:----|
@@ -146,14 +147,10 @@ To verify the record in Microsoft 365:
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the DNS management page, select **+Add record**.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add an MX record.":::
@@ -178,14 +175,10 @@ To verify the record in Microsoft 365:
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the **DNS management** page, select **+Add record**
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add a CNAME record.":::
@@ -207,14 +200,10 @@ To verify the record in Microsoft 365:
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the DNS management page, select **+Add record**.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add an SPF TXT record.":::
@@ -240,14 +229,10 @@ Only select this option if your organization uses Skype for Business for online
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the DNS management page, select **+Add record**
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add an SRV record.":::
@@ -272,14 +257,10 @@ Only select this option if your organization uses Skype for Business for online
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the DNS management page, select **+Add record**
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add CNAME records for Skype for Business.":::
@@ -306,14 +287,10 @@ This service helps you secure and remotely manage mobile devices that connect to
1. To get started, go to your domains page at Cloudflare by using [this link](https://www.cloudflare.com/a/login). You'll be prompted to log in first.
-1. On the Home page, select the domain that you want to update.
+1. On the Account Home page, find the domain that you want to update, select the three dots (**...**) at the right and select **Configure DNS** from the drop-down menu.
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-1.png" alt-text="Select the domain you want to update.":::
-1. On the Overview page for your domain, select **DNS** from the navigation bar.
-
- :::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-2.png" alt-text="Select DNS.":::
-
1. On the DNS management page, select **+Add record**
:::image type="content" source="../../media/dns-cloudflare/cloudflare-domains-add-record.png" alt-text="Screenshot of where you select Add record to add CNAME records for Mobile Device Management.":::
diff --git a/microsoft-365/admin/dns/create-dns-records-at-godaddy.md b/microsoft-365/admin/dns/create-dns-records-at-godaddy.md
index aeabbf96a33..e75483b567e 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-godaddy.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-godaddy.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 02/11/2025
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -33,6 +34,8 @@ description: "Learn to verify your domain and set up DNS records for email, Micr
If GoDaddy is your DNS hosting provider, follow the steps in this article to verify your domain and set up DNS records for email, Teams, and so on.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Before you begin
You have two options for setting up DNS records for your domain:
diff --git a/microsoft-365/admin/dns/create-dns-records-at-ionos-com.md b/microsoft-365/admin/dns/create-dns-records-at-ionos-com.md
index ceac5a6a060..ddcb4899108 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-ionos-com.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-ionos-com.md
@@ -9,6 +9,7 @@ ms.date: 04/01/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -32,6 +33,8 @@ description: "Learn to verify your domain and set up DNS records for email, Skyp
If IONOS is your DNS hosting provider, follow the steps in this article to verify your domain and set up DNS records for email, Skype for Business Online, and so on.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Before you begin
You have two options for setting up DNS records for your domain:
diff --git a/microsoft-365/admin/dns/create-dns-records-at-namecheap.md b/microsoft-365/admin/dns/create-dns-records-at-namecheap.md
index c8d4704fcda..cd68fabb89d 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-namecheap.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-namecheap.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 04/27/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -23,7 +24,7 @@ search.appverid:
- MET150
- MOE150
ms.assetid: 54ae2002-b38e-43a1-82fa-3e49d78fda56
-description: "Learn to verify your domain and set up DNS records for email, Teams, and other services at Namecheap for Microsoft."
+description: "Learn to verify your domain and set up DNS records for email, Teams, and other services at Namecheap."
---
# Connect your DNS records at Namecheap to Microsoft 365
@@ -37,14 +38,21 @@ After you add these records at Namecheap, your domain will be set up to work wit
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT record for verification
Before you use your domain with Microsoft, we have to make sure that you own it. Your ability to log in to your account at your domain registrar and create the DNS record proves to Microsoft that you own the domain.
+> [!NOTE]
+> The procedures in this section assume that you have begun the process of [adding a domain](/admin/setup/add-domain#add-a-domain), but have not yet verified the domain.
+
> [!NOTE]
> This record is used only to verify that you own your domain; it doesn't affect anything else. You can delete it later, if you like.
-1. To get started, go to your domains page at Namecheap by using [this link](https://www.namecheap.com/myaccount/login.aspx?ReturnUrl=%2f). You'll be prompted to Sign in and Continue.
+1. Make sure you have added a domain in the Microsoft 365 Admin Center using the steps in [Add a domain](/admin/setup/add-domain#add-a-domain), and that the domain has not already been verified. You'll need to copy the **TXT value** from the **Add a record to verify ownership** page for use later in this procedure.
+
+1. Go to your domains page at Namecheap by using [this link](https://www.namecheap.com/myaccount/login.aspx?ReturnUrl=%2f). You'll be prompted to Sign in and Continue.
:::image type="content" source="../../media/1827f9fc-4dc9-4f9d-a392-7817c47b00b3.png" alt-text="Sign in to Namecheap.":::
@@ -71,7 +79,7 @@ Before you use your domain with Microsoft, we have to make sure that you own it.
:::image type="content" source="../../media/a5b40973-19b5-4c32-8e1b-1521aa971836.png" alt-text="Select TXT Record for the domain verification TXT record.":::
-1. In the boxes for the new record, type or copy and paste the values from the following table.
+1. In the boxes for the new record, type or copy and paste the values from the following table. You'll use the TXT value you copied earlier (MS=ms*XXXXXXXX*).
(Choose the **TTL** value from the drop-down list.)
@@ -81,7 +89,7 @@ Before you use your domain with Microsoft, we have to make sure that you own it.
:::image type="content" source="../../media/fe75c0fd-f85c-4bef-8068-edaf9779b7f1.png" alt-text="Copy and paste the values from the table for the domain verification TXT record.":::
-1. Select the **Save Changes** (check mark) control.
+1. Select the **Save Changes** (check mark) control, or select the **Save All Changes** button located just below the record you just added.
:::image type="content" source="../../media/b48d2c67-66b5-4aa4-8e59-0c764f236fac.png" alt-text="Screenshot of the the Save Changes control for the domain verification TXT record.":::
diff --git a/microsoft-365/admin/dns/create-dns-records-at-network-solutions.md b/microsoft-365/admin/dns/create-dns-records-at-network-solutions.md
index d8d66a977e4..e2b615954db 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-network-solutions.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-network-solutions.md
@@ -9,6 +9,7 @@ ms.date: 08/28/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -37,6 +38,8 @@ After you add these records at Network Solutions, your domain will be set up to
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT record for verification
Before you use your domain with Microsoft, we have to make sure that you own it. Your ability to log in to your account at your domain registrar and create the DNS record proves to Microsoft that you own the domain.
diff --git a/microsoft-365/admin/dns/create-dns-records-at-ovh.md b/microsoft-365/admin/dns/create-dns-records-at-ovh.md
index c2e2a4ca54b..66c8841f61d 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-ovh.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-ovh.md
@@ -9,6 +9,7 @@ ms.date: 08/28/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -37,6 +38,8 @@ After you add these records at OVH, your domain will be set up to work with Micr
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT record for verification
Before you use your domain with Microsoft, we have to make sure that you own it. Your ability to log in to your account at your domain registrar and create the DNS record proves to Microsoft that you own the domain.
diff --git a/microsoft-365/admin/dns/create-dns-records-at-web-com.md b/microsoft-365/admin/dns/create-dns-records-at-web-com.md
index 699d8e2cfee..5818a323ae0 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-web-com.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-web-com.md
@@ -9,6 +9,7 @@ ms.date: 08/21/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -37,6 +38,8 @@ After you add these records at web.com, your domain will be set up to work with
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Change your domain's nameserver (NS) records
> [!IMPORTANT]
diff --git a/microsoft-365/admin/dns/create-dns-records-at-wix.md b/microsoft-365/admin/dns/create-dns-records-at-wix.md
index 45f43b400e4..d6770799f21 100644
--- a/microsoft-365/admin/dns/create-dns-records-at-wix.md
+++ b/microsoft-365/admin/dns/create-dns-records-at-wix.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 05/30/2024
+ms.date: 04/03/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -23,7 +24,7 @@ search.appverid:
- MET150
- MOE150
ms.assetid: 7173c635-58b3-400f-95e0-97abe915565e
-description: "Learn to verify your domain and set up DNS records for email, Skype for Business Online, and other services at Wix for Microsoft."
+description: "Learn to verify your domain and set up DNS records for email, Skype for Business Online, and other services at Wix."
---
# Connect your DNS records at Wix to Microsoft 365
@@ -37,6 +38,8 @@ After you add these records at Wix, your domain will be set up to work with Micr
> [!NOTE]
> Typically it takes about 15 minutes for DNS changes to take effect. However, it can occasionally take longer for a change you've made to update across the Internet's DNS system. If you're having trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT record for verification
Before you use your domain with Microsoft, we have to make sure you own it. Your ability to log in to your account at your domain registrar and create the DNS record proves to Microsoft that you own the domain.
@@ -47,23 +50,27 @@ Before you use your domain with Microsoft, we have to make sure you own it. Your
> [!NOTE]
> WIX does not support DNS entries for subdomains.
-1. To get started, go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
+1. Make sure you have added a domain in the Microsoft 365 Admin Center using the steps in [Add a domain](/admin/setup/add-domain#add-a-domain), and that the domain has not already been verified. You'll need to copy the **TXT value** from the **Add a record to verify ownership** page for use later in this procedure.
+
+1. Go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
+
+1. From the left-hand navigation bar, select **Domains**.
-2. Select **Domains** \> **...**, and then select **Manage DNS Records** from the dropdown list.
+1. Find the domain you wish to configure, select the three dots **(...)** to the right, and then select **Manage DNS Records** from the dropdown list.
:::image type="content" source="../../media/dns-wix/wix-domains-1.png" alt-text="Select Manage DNS Records from the drop-down list.":::
-3. Select **+ Add Record** in the **TXT (Text)** row of the DNS editor.
+1. Select **+ Add Record** in the **TXT (Text)** row of the DNS editor.
:::image type="content" source="../../media/dns-wix/wix-domains-TXT-add-record.png" alt-text="Screenshot of where you select Add record to add a domain verification TXT record.":::
-4. In the boxes for the new record, type or copy and paste the values from the following table.
+1. In the boxes for the new record, type or copy and paste the values from the following table. You'll use the TXT value you copied earlier (MS=ms*XXXXXXXX*).
|Host Name|TXT Value|TTL|
|---|---|---|
|Automatically populated (leave blank)|MS=ms*XXXXXXXX* **Note:** This is an example. Use your specific **Destination or Points to Address** value here, from the table. [How do I find this?](../get-help-with-domains/information-for-dns-records.md)|One Hour|
-5. Select**Save**.
+1. Select**Save**.
:::image type="content" source="../../media/dns-wix/wix-domains-txt-save.png" alt-text="Screenshot of where you select Save to add domain verification TXT record.":::
@@ -91,11 +98,13 @@ To verify the record in Microsoft 365:
1. To get started, go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
-1. Select **Domains** \> **...**, and then select **Manage DNS Records** from the dropdown list.
+1. From the left-hand navigation bar, select **Domains**.
+
+1. Find the domain you wish to configure, select the three dots **(...)** to the right, and then select **Manage DNS Records** from the dropdown list.
:::image type="content" source="../../media/dns-wix/wix-domains-1.png" alt-text="Select Manage DNS Records from the drop-down list.":::
-1. Under **MX (Mail exchange)**, select **Edit MX Records**.
+1. Under **MX (Mail exchange)**, select the link **connect a business email**.
:::image type="content" source="../../media/dns-wix/wix-domains-edit-mx-records.png" alt-text="Select Edit MX Records.":::
@@ -119,21 +128,23 @@ To verify the record in Microsoft 365:
1. To get started, go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
-2. Select **Domains** \> **...**, and then select **Manage DNS Records** from the dropdown list.
+1. From the left-hand navigation bar, select **Domains**.
+
+1. Find the domain you wish to configure, select the three dots **(...)** to the right, and then select **Manage DNS Records** from the dropdown list.
:::image type="content" source="../../media/dns-wix/wix-domains-1.png" alt-text="Select Manage DNS Records from the drop-down list.":::
-3. Select **+ Add Record** in the **CNAME (Aliases)** row of the DNS editor for the CNAME record.
+1. Select **+ Add Record** in the **CNAME (Aliases)** row of the DNS editor for the CNAME record.
:::image type="content" source="../../media/dns-wix/wix-domains-cname-add-record.png" alt-text="Screenshot of where you select Add a record to add a CNAME record.":::
-4. In the boxes for the new record, type or copy and paste the values from the following table:
+1. In the boxes for the new record, type or copy and paste the values from the following table:
|Host Name|Value|TTL|
|---|---|---|
|autodiscover|autodiscover.outlook.com|One Hour|
-5. Select **Save**.
+1. Select **Save**.
:::image type="content" source="../../media/dns-wix/wix-domains-cname-save.png" alt-text="Screenshot of where you select Save to add a CNAME record.":::
@@ -146,23 +157,25 @@ To verify the record in Microsoft 365:
1. To get started, go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
-2. Select **Domains** \> **...**, and then select **Manage DNS Records** from the dropdown list.
+1. From the left-hand navigation bar, select **Domains**.
+
+1. Find the domain you wish to configure, select the three dots **(...)** to the right, and then select **Manage DNS Records** from the dropdown list.
:::image type="content" source="../../media/dns-wix/wix-domains-1.png" alt-text="Select Manage DNS Records from the drop-down list.":::
-3. Select **+ Add Record** in the **TXT (Text)** row of the DNS editor.
+1. Select **+ Add Record** in the **TXT (Text)** row of the DNS editor.
:::image type="content" source="../../media/dns-wix/wix-domains-TXT-add-record.png" alt-text="Screenshot of where you select Add a record to add an SPF TXT record.":::
**Note**: Wix provides an SPF row in the DNS editor. Ignore that row and use the **TXT (Text)** row to enter the SPF values below.
-4. In the boxes for the new record, type or copy and paste the values from the following table:
+1. In the boxes for the new record, type or copy and paste the values from the following table:
|Host Name|Value|TTL|
|---|---|---|
|[leave this blank]|v=spf1 include:spf.protection.outlook.com -all **Note:** We recommend copying and pasting this entry, so that all of the spacing stays correct.|One Hour|
-5. Select **Save**.
+1. Select **Save**.
:::image type="content" source="../../media/dns-wix/wix-domains-txt-save.png" alt-text="Screenshot of where you select Save to add an SPF TXT record.":::
@@ -176,7 +189,9 @@ Only select this option if your organization uses Skype for Business for online
1. To get started, go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
-1. Select **Domains** \> **...**, and then select **Manage DNS Records** from the dropdown list.
+1. From the left-hand navigation bar, select **Domains**.
+
+1. Find the domain you wish to configure, select the three dots **(...)** to the right, and then select **Manage DNS Records** from the dropdown list.
:::image type="content" source="../../media/dns-wix/wix-domains-1.png" alt-text="Select Manage DNS Records from the drop-down list.":::
@@ -226,7 +241,9 @@ This service helps you secure and remotely manage mobile devices that connect to
1. To get started, go to your domains page at Wix by using [this link](https://premium.wix.com/wix/api/mpContainerStaticController#/domains?referralAdditionalInfo=account). You're prompted to log in first.
-1. Select **Domains** \> **...**, and then select **Manage DNS Records** from the dropdown list.
+1. From the left-hand navigation bar, select **Domains**.
+
+1. Find the domain you wish to configure, select the three dots **(...)** to the right, and then select **Manage DNS Records** from the dropdown list.
:::image type="content" source="../../media/dns-wix/wix-domains-1.png" alt-text="Select Manage DNS Records from the drop-down list.":::
diff --git a/microsoft-365/admin/dns/create-dns-records-using-windows-based-dns.md b/microsoft-365/admin/dns/create-dns-records-using-windows-based-dns.md
index 2415f4a3c67..4a2deecc7aa 100644
--- a/microsoft-365/admin/dns/create-dns-records-using-windows-based-dns.md
+++ b/microsoft-365/admin/dns/create-dns-records-using-windows-based-dns.md
@@ -9,6 +9,7 @@ ms.date: 09/05/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -36,7 +37,9 @@ If you host your own DNS records using Windows-based DNS, follow the steps in th
To get started, you need to find your DNS records in Windows-based DNS so you can update them. Also, if you're planning to synchronize your on-premises Active Directory with Microsoft, see [Non-routable email address used as a UPN in your on-premises Active Directory](#non-routable-email-address-used-as-a-upn-in-your-on-premises-active-directory).
-Trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+Trouble with mail flow or other issues after adding DNS records, see [Troubleshoot issues after changing your domain name or DNS records](../get-help-with-domains/find-and-fix-issues.md).
+
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
## Find your DNS records in Windows-based DNS
diff --git a/microsoft-365/admin/dns/update-dns-records-to-retain-current-hosting-provider.md b/microsoft-365/admin/dns/update-dns-records-to-retain-current-hosting-provider.md
index 51d17a08c87..fc79d4e64ca 100644
--- a/microsoft-365/admin/dns/update-dns-records-to-retain-current-hosting-provider.md
+++ b/microsoft-365/admin/dns/update-dns-records-to-retain-current-hosting-provider.md
@@ -9,6 +9,7 @@ ms.date: 08/10/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -34,6 +35,8 @@ description: "Learn how to route traffic to an existing public website hosted ou
Check out all of our small business content on [Small business help & learning](https://go.microsoft.com/fwlink/?linkid=2224585).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
**If you manage your domain's Microsoft records at your DNS hosting provider**, you don't have to worry about the steps in this topic. Your website stays where it is and people can still get to it.
**If Microsoft manages your DNS records**, to route traffic to an existing public website hosted outside of Microsoft, after you add your domain to Microsoft, do the following:
@@ -52,7 +55,7 @@ Check out all of our small business content on [Small business help & learning](
- For **IP Address**, type the static IP address for your website where it's currently hosted (for example, 172.16.140.1).
- This must be a *static* IP address for the website, not a *dynamic* IP address. Check with site where your website is hosted to make sure you can get a static IP address for your public website.
+ This must be a *static* IP address for the website, not a *dynamic* IP address. Check with site where your website is hosted to make sure you can get a static IP address for your public website.
1. Select **Save**.
diff --git a/microsoft-365/admin/email/configure-email-forwarding.md b/microsoft-365/admin/email/configure-email-forwarding.md
index 29b4fe3d17c..3504b14088b 100644
--- a/microsoft-365/admin/email/configure-email-forwarding.md
+++ b/microsoft-365/admin/email/configure-email-forwarding.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/28/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/get-help-support.md b/microsoft-365/admin/get-help-support.md
index a63864ec5a7..a601ed8d123 100644
--- a/microsoft-365/admin/get-help-support.md
+++ b/microsoft-365/admin/get-help-support.md
@@ -26,7 +26,7 @@ search.appverid:
- MET150
- MOE150
description: "Learn how to get online or phone support for your Microsoft 365 for business subscription. You must be an admin for a business subscription to get support."
-ms.date: 11/01/2023
+ms.date: 03/14/2025
---
# Get support for Microsoft 365 for business
@@ -43,10 +43,10 @@ Check out this video and others on our [YouTube channel](https://go.microsoft.co
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=470edf48-3b59-4538-9c05-5518960bed02]
-Need to speak to someone right away? Admins, have your account details ready when you call Support.
+Need to speak to someone right away? Admins have your account details ready when you call Support.
> [!IMPORTANT]
-> You must be an admin for a business subscription to use these support methods. [Find out more about admin roles for the Microsoft 365 admin center](add-users/about-admin-roles.md). If you're not a business admin, please use [this support page](https://support.microsoft.com/contactus).
+> You must be an admin for a business subscription to use these support methods. [Find out more about admin roles for the Microsoft 365 admin center](add-users/about-admin-roles.md). If you're not a business admin, use [this support page](https://support.microsoft.com/contactus).
Start by [checking the current health of your services](../enterprise/view-service-health.md). You can view detailed information about current and past issues on the Service health dashboard. If you're experiencing an issue that isn't listed, you can get support in one of the following ways:
@@ -55,7 +55,7 @@ Start by [checking the current health of your services](../enterprise/view-servi
Save time by starting your service request online. We can help you find a solution or connect you to technical support.
> [!IMPORTANT]
-> You must have bought at least one subscription through Microsoft to access Microsoft support. If you bought all your subscriptions through a partner, contact your partner for support.
+> You must have at least one subscription bought through Microsoft to access Microsoft support. If you bought all your subscriptions through a partner, contact your partner for support.
1. Go to the admin center at https://admin.cloud.microsoft. If you get a message that says you don't have permission to access this page or perform this action, you aren't an admin. For more information, see [Who has admin permissions in my business?](../admin/admin-overview/admin-center-overview.md#who-has-admin-permissions-in-my-business).
2. On the bottom right side of the page, select **Help & support**.
@@ -63,34 +63,37 @@ Save time by starting your service request online. We can help you find a soluti
4. If the results don't help, at the bottom, select **Contact Support**.
5. Enter a description of your issue, confirm your contact number and email address, select your preferred contact method, and then select **Contact me**. The expected wait time is indicated in the **Contact support** pane.
+> [!NOTE]
+> For a smoother support experience, we recommend that you open separate support requests for each issue.
+
## Phone support
+> [!IMPORTANT]
+> Please note that our phone numbers have changed. For the most current support phone number in your country/region, see the [global phone numbers list](https://support.microsoft.com/topic/customer-service-phone-numbers-c0389ade-5640-e588-8b0e-28de8afeb3f2#ID0EBBD=signinorgid). If your country/region isn't listed, select a neighboring country/region or dial the United States support phone number.
+
In most countries/regions, billing support for Microsoft 365 for business products and services is provided in English from 9 AM-5 PM, Monday through Friday. Local language support varies by country/region.
Technical support is provided in English 24 hours a day, 7 days a week, and in some cases, in local languages as noted.
->[!div class="nextstepaction"]
->[Find support phone numbers by country or region](support-contact-info.md)
-
-Admins, have your account details ready when you call.
+Admins have your account details ready when you call.
> [!NOTE]
> To better protect your organization, we added a PIN-based verification step to our existing phone-based verification process. If you contact us from a number that isn't registered with your organization profile, the Microsoft support representative sends a verification code to the registered email or phone number in your Microsoft 365 admin center profile. You must provide this code to the support representative to grant them access to your organization's account.
-## Small business support with Business Assist
+## Small business support with Business Assists
Get the most out of your subscription with expert advice from small business specialists.
-Business Assist for Microsoft 365 is designed for small businesses to give you and your employees around-the-clock access to small business specialists as you grow your business, from onboarding to everyday use. To learn more, see [Business Assist](../admin/misc/business-assist.md).
+Business Assist for Microsoft 365 is designed for small businesses to give you and your users around-the-clock access to small business specialists as you grow your business, from onboarding to everyday use. To learn more, see [Business Assist](../admin/misc/business-assist.md).
## Volume licensing support
-There's a dedicated support team for users who access volume licensing contracts in the Microsoft 365 admin center. To request support for volume licensing, use the following steps:
-
+There's a dedicated support team for users who access volume licensing (VL) contracts in the Microsoft 365 admin center. To request support for volume licensing, use the following steps:
+
1. In the Microsoft 365 admin center, select **Help & support**.
2. In the query box, type "manage volume licensing" together with your question to help target your query more accurately. If you see a drop-down list, select the item closest to your question, or continue typing your question, then press **Enter**.
3. If the results don't help, at the bottom, select **Contact Support**.
-4. Enter a description of your issue, specify the license ID or VL agreement number your issue relates to, confirm your contact number and email address, select your preferred contact method, and then select **Contact me**.
+4. Enter a description of your issue, specify the license ID or VL agreement number your issue relates to, confirm your contact number and email address, select your preferred contact method, and then select **Contact me**.
If you're a volume licensing admin but are unable to access the admin center, you can create an [online support request](https://support.serviceshub.microsoft.com/supportforbusiness/create?sapId=2afa6f15-b710-db46-909a-8346017c802f).
@@ -98,7 +101,7 @@ If you're a volume licensing admin but are unable to access the admin center, yo
::: moniker range="o365-21vianet"
-With every subscription of Microsoft 365 operated by 21Vianet, 21Vianet support provides technical, pre-sales, billing and subscription support. Support is available both online through the Microsoft 365 operated by 21Vianet portal, and by telephone for both paid and trial subscriptions.
+With every subscription of Microsoft 365 operated by 21Vianet, 21Vianet support provides technical, presales, billing, and subscription support. Support is available both online through the Microsoft 365 operated by 21Vianet portal, and by telephone for both paid and trial subscriptions.
Authorized administrators can use the Microsoft 365 operated by 21Vianet portal to submit service requests online and access support telephone numbers. For instructions, see [Contact support](#contact-support).
@@ -108,9 +111,9 @@ The Microsoft 365 operated by 21Vianet technical support team troubleshoots only
Self-service support is available for all Microsoft 365 operated by 21Vianet users, and includes troubleshooting tools and videos, help articles and videos, as well as forums and wikis in the [Microsoft 365 community](https://go.microsoft.com/fwlink/p/?linkid=842838). For more self-help resources, see [Microsoft 365 operated by 21Vianet](/office365/servicedescriptions/office-365-platform-service-description/microsoft-365-operated-by-21vianet).
-## Pre-sales support
+## Presales support
-Pre-sales support for Microsoft 365 operated by 21Vianet provides assistance on subscription features and benefits, plan comparisons, pricing and licensing, and helps to identify the right solution to meet your business needs. In addition, pre-sales support can help you find a Partner, and purchase and sign up for a trial. You can call during local business hours, Monday through Friday. Pre-sales support can be accessed using the same phone number as with technical support. For instructions, see [Contact support](#contact-support).
+Presales support for Microsoft 365 operated by 21Vianet provides assistance on subscription features and benefits, plan comparisons, pricing and licensing, and helps to identify the right solution to meet your business needs. In addition, presales support can help you find a Partner, and purchase and sign up for a trial. You can call during local business hours, Monday through Friday. Presales support can be accessed using the same phone number as with technical support. For instructions, see [Contact support](#contact-support).
## Billing and subscription management support
@@ -131,36 +134,36 @@ Technical support for Microsoft 365 operated by 21Vianet subscriptions provides
| Support category | Examples |
|------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| Installation and setup | Exchange Online
Microsoft 365 mailbox migration
Recipient configuration (mailbox permissions, configuring mail forwarding, configuring shared mailbox)
Autodiscover configuration
SharePoint Online
Permissions and user groups
Configuration of external users
Skype for Business Online
Installation and creating contacts
Microsoft 365 Apps for enterprise
Installation and setup
|
+| Installation and setup | Exchange Online
Microsoft 365 mailbox migration
Recipient configuration (mailbox permissions, configuring mail forwarding, configuring shared mailbox)
Autodiscover configuration
SharePoint
Permissions and user groups
Configuration of external users (guests)
Skype for Business Online
Installation and creating contacts
Microsoft 365 Apps for enterprise
Installation and setup
|
| Configuration | Service configuration issues
Single sign-on (SSO)
Active Directory synchronization
|
> [!NOTE]
> You can learn how to contact technical support here: [Contact support](#contact-support).
-> Technical support does not include troubleshooting third-party services or add-ins. Learn about finding answers from other customers in the [Community](https://go.microsoft.com/fwlink/p/?linkid=842838).
+> Technical support doesn't include troubleshooting third-party services or add-ins. Learn about finding answers from other customers in the [Community](https://go.microsoft.com/fwlink/p/?linkid=842838).
## Technical support case handling
-21Vianet assigns a severity level to a case when it is opened, based on an assessment of the issue type and customer impact. Examples of issue types and severity levels are shown in the following table.
+21Vianet assigns a severity level to a case when it's opened, based on an assessment of the issue type and customer impact. Examples of issue types and severity levels are shown in the following table.
| Severity level | Operations and support description | Examples |
|----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Sev A (Critical) | One or more services aren't accessible or are unusable. Production, operations, or deployment deadlines are severely affected, or there will be a severe impact on production or profitability. Multiple users or services are affected. |
Widespread problems sending or receiving mail.
SharePoint site down.
All users can't send instant messages, join or schedule Skype for Business Meetings, or make Skype for Business calls.
|
| Sev B (High) | The service is usable but in an impaired fashion. The situation has moderate business impact and can be dealt with during business hours. A single user, customer, or service is partially affected. |
Send button in Outlook is garbled.
Setting is impossible from EAC (Exchange admin center) but possible in Exchange Online PowerShell.
|
-| Sev C (Non-critical) | The situation has minimal business impact. The issue is important but does not have a significant current service or productivity impact for the customer. A single user is experiencing partial disruption, but an acceptable workaround exists. |
How to set user password that never expires.
User can't delete contact information in Exchange Online.
|
+| Sev C (Non-critical) | The situation has minimal business impact. The issue is important but doesn't have a significant current service or productivity impact for the customer. A single user is experiencing partial disruption, but an acceptable workaround exists. |
How to set user password that never expires.
User can't delete contact information in Exchange Online.
|
## Technical support initial response times
-Initial response time is based on the severity levels described above. 21Vianet customer service team follows up with investigation and customer communication in reasonable rhythm according to severity levels. 21Vianet also expect customer to collaborate at reasonable level accordingly.
+Initial response time is based on the severity levels described in [Technical support case handling](#technical-support-case-handling). 21Vianet customer service team follows up with investigation and customer communication in reasonable rhythm according to severity levels. 21Vianet also expect customer to collaborate at reasonable level accordingly.
| Security level 1 | 21Vianet customer support team Initial response | Customer responsibility |
|--------------------------------|-----------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| Sev A 2 (Critical) | Initial Response: 1 hour or less. Follow up: continues effort until problem resolution. | Provide solid business impact statement (see the severity A description and examples above); Allocate resource to ensure continues collaboration with 21Vianet customer support agent for the joint investigation and necessary communication; Provide accurate contact information and ensure reliable communication throughout the service request lifecycle. |
+| Sev A 2 (Critical) | Initial Response: 1 hour or less. Follow up: continues effort until problem resolution. |
Provide solid business impact statement (see the severity A description and examples in [Technical support case handling](#technical-support-case-handling))
Allocate resource to ensure continues collaboration with 21Vianet customer support agent for the joint investigation and necessary communication
Provide accurate contact information and ensure reliable communication throughout the service request lifecycle.
|
| Sev B (High) | Initial Response: 1 business day or less. | Provide accurate contact information and ensure reliable communication throughout the service request lifecycle. |
-| Sev C (Medium) | Initial Response: 3 business day or less. | Provide accurate contact information and ensure reliable communication throughout the service request lifecycle. |
+| Sev C (Medium) | Initial Response: 3 business days or less. | Provide accurate contact information and ensure reliable communication throughout the service request lifecycle. |
-1 If the customer cannot provide required resource or make response for collaboration with 21Vianet customer support agent investigation in reasonable time, 21Vianet support team may lower down the severity level of a service request.
+1 If the customer can't provide required resource or make response for collaboration with 21Vianet customer support agent investigation in reasonable time, 21Vianet support team might lower down the severity level of a service request.
-2 Severity A is only available to customers who had signed an advanced online service agreement with 21Vianet through a sales account manager. Severity A is available only for technical support. For billing and subscription management support, the highest severity level is B.
+2 Severity A is only available to customers who signed an advanced online service agreement with 21Vianet through a sales account manager. Severity A is available only for technical support. For billing and subscription management support, the highest severity level is B.
## Technical support working hours
@@ -175,7 +178,7 @@ Severity B/C: 9:00 ~24:00 (Beijing Time) a day, 365 days.
### Open an online request
-Save time by starting your service request online. Go to the Microsoft 365 admin center, choose **Support** \> **New service request**.
+Save time by starting your service request online. Go to the Microsoft 365 admin center, then select **Support** \> **New service request**.
### Call support
@@ -189,7 +192,7 @@ Call support. If you encounter any problem with online request, phone support is
People with administrator roles are the only ones in the customer's organization authorized to access the Admin section of the Microsoft 365 operated by 21Vianet portal and to communicate directly with 21Vianet about Microsoft 365 service requests.
-With Microsoft 365 you can designate several types of administrators who serve different functions. This service description uses the generic title administrator to refer to all categories of administrators. For more information about the types of administrator roles, see [Assign admin roles in Microsoft 365 for business](../admin/add-users/assign-admin-roles.md).
+With Microsoft 365, you can designate several types of administrators who serve different functions. This service description uses the generic title administrator to refer to all categories of administrators. For more information about the types of administrator roles, see [Assign admin roles in Microsoft 365 for business](../admin/add-users/assign-admin-roles.md).
The administrator is:
@@ -204,7 +207,7 @@ The administrator's role is to:
- Address service availability issues within the customer's organizational span of control.
- Use self-service support resources to resolve support issues.
-The administrator is expected to provide initial assistance for the customer's users. However, if the administrator is unable to resolve issues with the help of self-service support resources, he or she should [Contact support](#contact-support).
+The administrator is expected to provide initial assistance for the customer's users. However, if the administrator is unable to resolve issues with the help of self-service support resources, they should [Contact support](#contact-support).
### 21Vianet support role
diff --git a/microsoft-365/admin/get-help-with-domains/buy-a-domain-name.md b/microsoft-365/admin/get-help-with-domains/buy-a-domain-name.md
index 8ede47b83e6..8033fbdf9fc 100644
--- a/microsoft-365/admin/get-help-with-domains/buy-a-domain-name.md
+++ b/microsoft-365/admin/get-help-with-domains/buy-a-domain-name.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 02/10/2025
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
diff --git a/microsoft-365/admin/get-help-with-domains/change-nameservers-at-any-domain-registrar.md b/microsoft-365/admin/get-help-with-domains/change-nameservers-at-any-domain-registrar.md
index c29388b09ea..5555a39ab8b 100644
--- a/microsoft-365/admin/get-help-with-domains/change-nameservers-at-any-domain-registrar.md
+++ b/microsoft-365/admin/get-help-with-domains/change-nameservers-at-any-domain-registrar.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 11/18/2024
+ms.date: 03/17/2025
audience: Admin
ms.topic: install-set-up-deploy
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -45,6 +46,8 @@ Follow these instructions to add and set up your domain in Microsoft 365 so your
- You want Microsoft 365 to manage your DNS records for you. (If you prefer, you can [manage your own DNS records](../setup/add-domain.md).)
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
## Add a TXT or MX record for verification
> [!NOTE]
diff --git a/microsoft-365/admin/get-help-with-domains/create-dns-records-at-any-dns-hosting-provider.md b/microsoft-365/admin/get-help-with-domains/create-dns-records-at-any-dns-hosting-provider.md
index 2422cb4ef92..e60e34baf22 100644
--- a/microsoft-365/admin/get-help-with-domains/create-dns-records-at-any-dns-hosting-provider.md
+++ b/microsoft-365/admin/get-help-with-domains/create-dns-records-at-any-dns-hosting-provider.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 02/13/2025
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: high
ms.collection:
- Tier2
@@ -44,6 +45,8 @@ If you want to change the email domain of existing user accounts, follow the ste
[Check the Domains FAQ](../setup/domains-faq.yml) if you don't find what you're looking for in this article.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
> [!TIP]
> If you need help with the steps in this article, consider [working with a Microsoft small business specialist](https://go.microsoft.com/fwlink/?linkid=2186871). With Business Assist, admins and users get around-the-clock access to small business specialists as you grow your business, from onboarding to everyday use.
diff --git a/microsoft-365/admin/get-help-with-domains/dns-basics.md b/microsoft-365/admin/get-help-with-domains/dns-basics.md
index f3bac8841ee..7772c1596ff 100644
--- a/microsoft-365/admin/get-help-with-domains/dns-basics.md
+++ b/microsoft-365/admin/get-help-with-domains/dns-basics.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 11/18/2024
+ms.date: 03/18/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: high
ms.collection:
- Tier2
@@ -135,7 +136,6 @@ Why might your domain's zone file be somewhere besides at your domain registrar?
::: moniker range="o365-worldwide"
## Why add a domain in Microsoft 365?
-
Adding a custom domain, like fourthcoffee.com, to Microsoft 365 lets you use a shorter, more familiar email address and userID with the service. You're [given a domain to use](../setup/domains-faq.yml) when you sign up for a Microsoft 365 account, but it includes "onmicrosoft.com." Many people prefer to add their organization or business domain if they plan to use Microsoft 365 for email.
> [!NOTE]
diff --git a/microsoft-365/admin/get-help-with-domains/find-and-fix-issues.md b/microsoft-365/admin/get-help-with-domains/find-and-fix-issues.md
index 7613ec755be..b0305672102 100644
--- a/microsoft-365/admin/get-help-with-domains/find-and-fix-issues.md
+++ b/microsoft-365/admin/get-help-with-domains/find-and-fix-issues.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 06/14/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -43,6 +44,8 @@ Getting your domain set up to work with Microsoft 365 can be challenging. The DN
> [!NOTE]
> You can check for problems with your domain by checking its status. Go to **Setup** > **Domains** and view the notifications in the **Status** column. If you see an issue, select the three dots (more actions), and then choose **Check health**. The pane that opens will describe any issues occurring with your domain.
+
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
## What's going on?
@@ -90,8 +93,13 @@ Check out the guidance in [Verify your Microsoft 365 domain to prove ownership,
We can help you track down issues with your domain's DNS setup. The domains troubleshooter in Microsoft 365 will show you any records that you need to fix, and exactly what the records need to be set to.
+1. Go to **Setup > Domains**.
+1. View the notifications in the **Status** column.
+1. If you see an issue, select the three dots (more actions), and then select **Check health**.
+1. The pane that opens will describe any issues occurring with your domain.
+
> [!TIP]
-> Got your DNS set up correctly, but mail doesn't work in Outlook on your desktop? Check out the [different mail flow scenarios you can have with Microsoft 365](/exchange/mail-flow-best-practices/mail-flow-best-practices) to make sure you've got things set up correctly for your business. Or get more troubleshooting help with email here: [Fix Outlook problems](/exchange/troubleshoot/outlook-connectivity/outlook-connection-issues).
+> Got your DNS set up correctly, but mail doesn't work in Outlook on your desktop? Check out the [different mail flow scenarios you can have with Microsoft 365](/exchange/mail-flow-best-practices/mail-flow-best-practices) to make sure you've got things set up correctly for your business. Or get more troubleshooting help with email at [Fix Outlook problems](/exchange/troubleshoot/outlook-connectivity/outlook-connection-issues).
## Accessing your website isn't working?
diff --git a/microsoft-365/admin/get-help-with-domains/find-your-domain-registrar.md b/microsoft-365/admin/get-help-with-domains/find-your-domain-registrar.md
index 439854f84d0..1379e61abe9 100644
--- a/microsoft-365/admin/get-help-with-domains/find-your-domain-registrar.md
+++ b/microsoft-365/admin/get-help-with-domains/find-your-domain-registrar.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 02/13/2025
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
diff --git a/microsoft-365/admin/get-help-with-domains/godaddy-defederation-process.md b/microsoft-365/admin/get-help-with-domains/godaddy-defederation-process.md
index 5e62a681046..dc9abc540b1 100644
--- a/microsoft-365/admin/get-help-with-domains/godaddy-defederation-process.md
+++ b/microsoft-365/admin/get-help-with-domains/godaddy-defederation-process.md
@@ -4,10 +4,10 @@ description: "Learn how to defederate Microsoft 365 email from Godaddy."
author: kelleyvice-msft
ms.author: kvice
manager: scotv
-ms.date: 02/26/2025
+ms.date: 03/18/2025
ms.topic: article
-ms.service: microsoft-365-enterprise
-ms.subservice: administration
+ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -28,6 +28,8 @@ ai-usage: ai-assisted
As a Microsoft 365 admin, you might need to defederate your Microsoft 365 account from GoDaddy. This process involves several steps that must be followed carefully to avoid issues with signing in to services like SharePoint and other Microsoft 365 applications.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
### Defederation Process Overview
To defederate your Microsoft 365 account from GoDaddy, refer to the official GoDaddy documentation. GoDaddy provides a comprehensive guide on how to move your Microsoft 365 email away from their platform. See the following link for detailed instructions:
diff --git a/microsoft-365/admin/get-help-with-domains/information-for-dns-records.md b/microsoft-365/admin/get-help-with-domains/information-for-dns-records.md
index 0c423424439..f8c90ca10a3 100644
--- a/microsoft-365/admin/get-help-with-domains/information-for-dns-records.md
+++ b/microsoft-365/admin/get-help-with-domains/information-for-dns-records.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 02/13/2025
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -36,6 +37,11 @@ description: "Gather the values/information you need to create DNS records to co
Check out all of our small business content on [Small business help & learning](https://go.microsoft.com/fwlink/?linkid=2224585).
**[Check the Domains FAQ](../setup/domains-faq.yml)** if you don't find what you're looking for.
+
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
+> [!NOTE]
+> The procedures in this article assume that you have begun the process of [adding a domain](/admin/setup/add-domain#add-a-domain), but have not yet verified the domain.
### Step 1: Find the TXT record value and verify
@@ -91,6 +97,6 @@ Check out all of our small business content on [Small business help & learning](
## Related content
-- [Domains FAQ](../setup/domains-faq.yml) (article)\
-- [Find and fix issues after adding your domain or DNS records](find-and-fix-issues.md) (article)\
+- [Domains FAQ](../setup/domains-faq.yml) (article)
+- [Find and fix issues after adding your domain or DNS records](find-and-fix-issues.md) (article)
- [Manage domains](/admin) (link page)
diff --git a/microsoft-365/admin/get-help-with-domains/remove-a-domain.md b/microsoft-365/admin/get-help-with-domains/remove-a-domain.md
index 5a0c75166c0..75fc943c56d 100644
--- a/microsoft-365/admin/get-help-with-domains/remove-a-domain.md
+++ b/microsoft-365/admin/get-help-with-domains/remove-a-domain.md
@@ -9,6 +9,7 @@ ms.date: 11/18/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -38,6 +39,8 @@ description: "Learn how to remove an old domain from Microsoft 365 and move user
Are you removing your domain because you want to add it to a different Microsoft 365 subscription plan? Or do you just want to cancel your subscription? You can [change your plan or subscription](../../commerce/subscriptions/switch-to-a-different-plan.md) or [cancel your subscription](../../commerce/subscriptions/cancel-your-subscription.md).
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
> [!TIP]
> If you need help with the steps in this topic, consider [working with a Microsoft small business specialist](https://go.microsoft.com/fwlink/?linkid=2186871). With Business Assist, you and your employees get around-the-clock access to small business specialists as you grow your business, from onboarding to everyday use.
diff --git a/microsoft-365/admin/get-help-with-domains/transfer-a-domain-from-microsoft-to-another-host.md b/microsoft-365/admin/get-help-with-domains/transfer-a-domain-from-microsoft-to-another-host.md
index 56796687eda..7eabe9c3b29 100644
--- a/microsoft-365/admin/get-help-with-domains/transfer-a-domain-from-microsoft-to-another-host.md
+++ b/microsoft-365/admin/get-help-with-domains/transfer-a-domain-from-microsoft-to-another-host.md
@@ -5,10 +5,11 @@ f1.keywords:
ms.author: kvice
author: kelleyvice-msft
manager: scotv
-ms.date: 08/07/2024
+ms.date: 03/18/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -34,6 +35,8 @@ You can't transfer a Microsoft 365 domain to another registrar for 60 days after
> [!NOTE]
> A _Whois_ query shows a Microsoft purchased domain registrar as Wild West Domains LLC. However, only Microsoft should be contacted about your Microsoft 365 purchased domain.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
Sign in as a global administrator, follow these steps to get a code at Microsoft 365, and then go to the other domain registrar website to transfer your domain name to the new registrar.
## Transfer a domain
diff --git a/microsoft-365/admin/get-help-with-domains/what-is-a-domain.md b/microsoft-365/admin/get-help-with-domains/what-is-a-domain.md
index ebaaee88bff..8ecd4db09ba 100644
--- a/microsoft-365/admin/get-help-with-domains/what-is-a-domain.md
+++ b/microsoft-365/admin/get-help-with-domains/what-is-a-domain.md
@@ -2,13 +2,14 @@
title: "What is a domain?"
f1.keywords:
- CSH
-ms.author: nkagole
-author: nataliekagole
+ms.author: kvice
+author: kelleyvice-msft
manager: scotv
-ms.date: 08/12/2024
+ms.date: 03/18/2025
audience: Admin
ms.topic: concept-article
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -64,7 +65,7 @@ You can use a Microsoft domain like *yourcompany.onmicrosoft.com* to sig
## Feeling stuck?
-Call Microsoft Support - [Get help setting up a domain](../../business-video/get-help-support.md)
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
## Related content
diff --git a/microsoft-365/admin/m365-katakana-glossary.md b/microsoft-365/admin/m365-katakana-glossary.md
index ce1bc12195a..485aa31712f 100644
--- a/microsoft-365/admin/m365-katakana-glossary.md
+++ b/microsoft-365/admin/m365-katakana-glossary.md
@@ -15,8 +15,8 @@ ms.collection:
- scotvorg
- must-keep
ROBOTS: NOINDEX, NOFOLLOW
-description: "Learn how to view the Japanese katakana glossary for the Microsoft 365 admin center."
-ms.date: 10/18/2023
+description: "Understand the Japanese katakana terms used in the Microsoft 365 admin center."
+ms.date: 03/13/2025
---
@@ -25,151 +25,150 @@ ms.date: 10/18/2023
# Microsoft 365 admin center katakana glossary
-Explanations have been added to the main katakana terms used in the Microsoft 365 Management Center. For more detailed information, please refer to the text in the link on each item.
+Explanations have been added to the main Katakana terms used in Microsoft 365 Admin Center. For details, refer to the text within each link.
## Account
-
+:::image type="content" source="../media/katanaglossary/001-account-en.png" alt-text="Screenshot of Create account for another user card on the admin center home page.":::
-Refers to an identifying name assigned to an individual within an organization/company for the purpose of using Microsoft 365. It is created for each organization/company and a separate account is usually assigned to each individual. Use this account to use Microsoft 365 services.
+Refers to the name assigned to an individual within an organization for the purpose of using Microsoft 365. It is created for each organization/company, and a separate account is assigned to each individual. Use this account to access Microsoft 365 services.
-[Add users and assign licenses](add-users/add-users.md)
+[Add a user and assign a license](add-users/add-users.md)
## Add-on
-
+:::image type="content" source="../media/katanaglossary/002-1-addon-en.png" alt-text="Screenshot of a subscription details page." lightbox="../media/katanaglossary/002-1-addon-en.png":::
-This is not a stand-alone offering by itself, but an additional feature to a service that is subscribed to by subscription. It provides more advanced and new features.
+Not a standalone offering. It is an additional feature for services within a subscription. Detailed and new features are available.
-[Purchase or manage add-ons](../commerce/buy-or-edit-an-add-on.md)
+[Buy or manage add-on](../commerce/buy-or-edit-an-add-on.md)
## Alias
-Another name for e-mail, etc. Refers to a name given to an e-mail distribution list, etc., that is shared by several people.
+Nickname for e-mails. It references nicknames assigned to email distribution lists shared among multiple users.
-## Custom domain
+## Custom Domain
-
+:::image type="content" source="../media/katanaglossary/003-customdomain-en.png" alt-text="Screenshot of card showing the new domain name on the admin center home page.":::
-Also referred to as an original domain. An Internet domain dedicated to an organization, such as a company or school. The organization can use its own unique name to establish an e-mail address or a website. A domain indicates a location on the Internet and is used in URLs to indicate where to send e-mails or locate websites. Obtaining a name that is easy to understand and remember is effective in branding your company.
+Also known as the original domain. It is an Internet domain dedicated to organizations such as businesses and schools. Organizations can use their own names to create email addresses and websites. A domain identifies a location on the Internet, and used as a URL to specify e-mail destinations or find websites. Acquiring a name that is simple and easy to remember is effective for corporate branding.
[Add a domain to Microsoft 365](setup/add-domain.md)
-## Cloud storage
+## Cloud Storage
-
+:::image type="content" source="../media/katanaglossary/004-cloudstorage.png" alt-text="Diagram showing cloud storage options.":::
-A place or device for storing files on the Internet. It can be beneficial when an individual uses the same file from multiple terminals or devices, or when multiple people work together. It is suitable for referencing and modifying files from different environments such as PCs and mobile devices, internal and remotely.
+A location or device to store files on the Internet. An individual user can access a file from multiple platforms or devices, and multiple users can collaborate on the same file. It is suitable to internally and remotely reference and edit files in various environments, such as on PCs or mobile devices.
## Groups
-
+:::image type="content" source="../media/katanaglossary/005-group-updated-en.png" alt-text="Screenshot of the Add Group workflow." lightbox="../media/katanaglossary/005-group-updated-en.png":::
-By using Microsoft 365 Groups, you can easily select teammates to collaborate with, and then share files and information among them to make collaboration easier.
+By using Microsoft 365 Groups, easily select teammates for collaboration. Facilitate a smooth collaboration by sharing files and other information within the team.
-[Create a group](create-groups/create-groups.md)
+[Create Group](create-groups/create-groups.md)
-Various groups
+Various Groups
-[Compare groups](create-groups/compare-groups.md)
+[Compare Groups](create-groups/compare-groups.md)
-## Global administrator
+## Global Administrator
-
+:::image type="content" source="../media/katanaglossary/006-globaladmin-en.png" alt-text="Screenshot that shows giving a user admin center access." lightbox="../media/katanaglossary/006-globaladmin-en.png":::
-The global administrator, usually has the authority to change, delete, or set new settings for all setting items.
+A global administrator has the authority to edit, delete, or configure new settings.
-If you wish to appoint an administrator with limited administrative functions (e.g. you want to give them administrative functions but not allow them to purchase new services.), please refer to the following article.
+To appoint an administrator with limited management features (e.g., grant administrative roles without authority to purchase new services), refer to the following article.
-[About the administrator role of the Microsoft 365 Management Center](add-users/about-admin-roles.md)
+[Administrator Roles in the Microsoft 365 Management Center](add-users/about-admin-roles.md)
-## Guest or guest user
+## Guest or Guest User
-Someone from outside the organization/company who can view or change certain authorized files or information, or participate in authorized meetings.
+Users outside an organization/company who can view or edit specific authorized files and information, or participate in permitted meetings.
-[Sharing with external or guest in OneDrive, SharePoint, and Lists](https://support.microsoft.com/office/7aa070b8-d094-4921-9dd9-86392f2a79e7)
+[Share in OneDrive, SharePoint, and Lists with an external member or guest](https://support.microsoft.com/office/7aa070b8-d094-4921-9dd9-86392f2a79e7)
-[Guest access with Microsoft Teams](/microsoftteams/guest-access)
+[Microsoft Teams guest access](/microsoftteams/guest-access)
-## Collaboration and communication
+## Collaboration and Communication
-Cooperating with several different organizations and people toward a common purpose or goal. Refers to a modern work style in which people from different organizations and workplaces collaborate by sharing information and files via Teams, SharePoint, OneDrive, etc., and keeping in touch via Teams.
+Collaborate with multiple different organizations or users to achieve a common purpose or goal. In a modern work style, users from different organizations or workplaces collaborate by sharing information and files through Teams, SharePoint, or OneDrive, while communicating on Teams.
-
+:::image type="content" source="../media/katanaglossary/007-collabo-commu-en.png" alt-text="Diagram showing products used for collaboration and communication.":::
-## Service (online service)
+## Service (Online Service)
-A computer or software function that is provided over a network (Internet). It is distinguished from software that is executed directly on the PC at your disposal.
+Computer and software features that are provided over a network (Internet). It is distinguished from software that is locally run by a PC user.
-## Website address
+## Site Address
-In Microsoft 365, it refers to the URL of the SharePoint site.
+In Microsoft 365, it refers to the URL of a SharePoint site.
## Sign-in
-To make the service available for use from the account via authentication, or to allow the service to recognize the user. Microsoft 365 services becomes available by signing in.
+Enables access to services through account-based authentication, or allows the service to identify the user. Once you sign in, you will have access to Microsoft 365 services.
## Subscription
-A type of contract in which the right to use a service for a certain period of time is purchased, as opposed to the purchase of the right to use software on a perpetual basis, which has been the norm in the past. With Microsoft 365, payment is done on a monthly or a yearly basis.
+A type of contract to purchase the right to use a service for a specified period, as opposed to the conventional one-time purchase of a software license. With Microsoft 365, payment is on a monthly or a yearly basis.
## Security
-A system to prevent confidential and personal information of organizations, employees, customers, etc. from being illegally obtained or leaked to outside parties.
+A system to prevent illegal access or leakage of confidential or personal information of organizations, employees, customers, etc.
## Domain
-The part of a website or e-mail address that corresponds to an address on the Internet used for a website or e-mail address.
-E.g.: contoso.com part of www.contoso.com and mail@contoso.com.
+A part of the website and email address that corresponds to the internet address used on the corresponding website and email address. For example, the said part for www\.contoso\.com and mail\@contoso\.com is contoso\.com.
## Training and guide
-
+:::image type="content" source="../media/katanaglossary/008-trainingguide-en.png" alt-text="Screenshot of the training card on the admin center home page.":::
-Refers to learning texts and videos for using and managing Microsoft 365 provided by Microsoft.
+Educational texts and videos to use and manage Microsoft 365, provided by Microsoft.
## Public
-In Microsoft 365, it refers to the state of being viewable or editable by all users in the organization. E.g.: Public group: A group in which anyone in the organization can participate.
+In Microsoft 365, it is the state of being viewable or editable by all users within an organization. E.g., Public Group: A group that all users within the organization can join.
-## Give feedback
+## Give Feedback
-
+:::image type="content" source="../media/katanaglossary/009-feedback-en.png" alt-text="Screenshot of the Send Feedback button in the admin center.":::
-Refers to sending comments or requests to Microsoft from users of the service.
+Comments and requests sent to Microsoft, by a service user.
-For matters that require customer support attention in accordance with your support contract, please use the "Help and Support" link at the top of the page, and for non-support related issues such as usability or new feature suggestions, please use this feedback form to send your suggestions. The development team looks directly at the content. The more specific your comments and requests are, the more likely it will be implemented.
+For customer support included in your support agreement, use the "Help and Support" link at the top of the page. For suggestions on usability and new features, as well as other issues not related to support, use this feedback form to submit proposals. The development team will review its content. The more specific the comments and requests, the higher the likelihood of their implementation.
## Privacy
-
+:::image type="content" source="../media/katanaglossary/010-privacy-updated-en.png" alt-text="Screenshot of the Add Group workflow showing the Privacy settings for a group." lightbox="../media/katanaglossary/010-privacy-updated-en.png":::
-A function to set the scope of disclosure of files and information related to the protection of personal information. Different disclosure ranges can be set, such as making files and information available to everyone in the organization (public), or just available to a few designated people (private).
+Settings to restrict the disclosure of files and information related to the protection of personal data. Choose from various disclosure levels, such as to make files and information available to all users within the organization (public) or to only specified users (private).
[Manage data privacy and data protection with Microsoft Priva and Microsoft Purview](../solutions/data-privacy-protection.md)
## Private
-A state in which only certain people within an organization can view, modify, etc. The owner or administrator of that information or group can set which people are granted permission to connect. E.g.: Private group
+A state where only specific users within the organization can view or make changes. The owner or administrator of the information or group can set which users are granted permission to connect. E.g., Private Group
-## Billing profile
+## Billing Profile
-
+:::image type="content" source="../media/katanaglossary/011-billing-profiles-en.png" alt-text="Screenshot of the Billing and Payment page with the Billing Profile tab selected.":::
-Billing information and other information related to Microsoft 365 payments are stored. It is used to pay for products and services purchased from Microsoft. Note: Billing profiles are not used for products and services purchased from Microsoft.com or the Management Center.
+Stored information related to billing, such as payment details for Microsoft 365. It is used to pay for products and services purchased from Microsoft. Note: Billing profiles are not used for products and services purchased from Microsoft.com or the Admin Center.
-[Understanding the billing profile](../commerce/billing-and-payments/manage-billing-profiles.md)
+[About Billing Profile](../commerce/billing-and-payments/manage-billing-profiles.md)
-## Hosted domains
+## Hosted Domains
-
+:::image type="content" source="../media/katanaglossary/012-domain-en.png" alt-text="Screenshot of how to verify your domain.":::
-The domain service used by Microsoft 365. Used for website URLs and e-mail addresses. You can purchase it from the Microsoft 365 Management Center, or if you already have your own domain you can use that one.
+Refers to domain services used in Microsoft 365. It is used for website URLs and email addresses. It can be purchased from the Microsoft 365 Admin Center, or you can use an existing domain that you already own.
## License
-
+:::image type="content" source="../media/katanaglossary/013-licenses-en.png" alt-text="Screenshot showing the number of licenses bought and assigned for a subscription." lightbox="../media/katanaglossary/013-licenses-en.png":::
-Refers to the usage and access rights assigned to individual employees when an organization purchases Microsoft 365. To use Microsoft 365, licenses must be purchased for the number of users and assigned to each user.
+Usage and access rights assigned to individual employees of an organization that purchases Microsoft 365. To use Microsoft 365, purchase and assign a license for each user.
[Assign a Microsoft 365 license to a user](manage/assign-licenses-to-users.md)
diff --git a/microsoft-365/admin/manage/assign-licenses-to-users.md b/microsoft-365/admin/manage/assign-licenses-to-users.md
index 65d963dfbe2..d6cb7ce3648 100644
--- a/microsoft-365/admin/manage/assign-licenses-to-users.md
+++ b/microsoft-365/admin/manage/assign-licenses-to-users.md
@@ -32,7 +32,7 @@ ms.custom:
- campaignIDs-batch1
search.appverid: MET150
description: "Learn how to assign or unassign licenses for your users in the Microsoft 365 admin center."
-ms.date: 01/06/2025
+ms.date: 04/07/2025
---
# Assign or unassign licenses for users in the Microsoft 365 admin center
diff --git a/microsoft-365/admin/manage/change-address-contact-and-more.md b/microsoft-365/admin/manage/change-address-contact-and-more.md
index 420e8eff2ae..8f53dff18d0 100644
--- a/microsoft-365/admin/manage/change-address-contact-and-more.md
+++ b/microsoft-365/admin/manage/change-address-contact-and-more.md
@@ -1,5 +1,5 @@
---
-title: "Change your organization's address and technical contact in the Microsoft 365 admin center"
+title: "Change your organization's address, contact preferences, and technical contact in the Microsoft 365 admin center"
f1.keywords:
- CSH
author: cmcatee-MSFT
@@ -28,11 +28,11 @@ description: "Learn how to make changes to your organization's profile, includin
ms.date: 10/06/2024
---
-# Change your organization's address and technical contact in the Microsoft 365 admin center
+# Change your organization's address, contact preferences, and technical contact in the Microsoft 365 admin center
As an admin, you can use the Microsoft 365 admin center to make changes to your organization profile, like your organization name, address, phone number, and technical contact.
-To change the address associated with your bill or subscription, see [Change your billing addresses for Microsoft 365 for business](../../commerce/billing-and-payments/change-your-billing-addresses.md).
+To change the address associated with your bill or subscription, see [Change your billing addresses for Microsoft 365 for business](../../commerce/billing-and-payments/change-your-billing-addresses.md).
## Before you begin
@@ -68,7 +68,7 @@ To change information on your organization's profile page, use the following ste
> [!NOTE]
> SharePoint Online and OneDrive have a 256-character limit on Windows PCs. If you exceed the character limit, you receive an error message when you try to do anything within the synchronized document libraries, like creating folders or renaming documents.
-## What do the organization information fields mean?
+### What do the organization information fields mean?
The following table explains the fields shown in the **Organization information** pane.
@@ -81,6 +81,24 @@ The following table explains the fields shown in the **Organization information*
|Technical contact | The email address for the primary technical person who administers your subscription. This person receives communications about Microsoft service status. |
|Preferred language | Determines the language for all communications that are sent from Microsoft to your organization. When you sign up, this setting determines the language used by SharePoint Online, that your users see on your team site. If you change the language preference setting after you sign up, all future communications are sent in the most recent language selected.
**IMPORTANT:** The language used by SharePoint Online can't be changed. |
+## Change your contact preferences for communications from Microsoft
+
+Use the **Contact preferences** section of the Settings & privacy page to choose the Microsoft 365 product-related communications that you want to receive.
+
+Read [Update your admin phone number and email address in Microsoft 365](update-phone-number-and-email-address.md) for info on how to change your admin cell phone number and email address.
+
+### To update your information
+
+1. In the admin center, select the **Settings** icon in the top right of the header.
+
+2. Select **Update contact preferences**.
+
+3. Under **Contact preferences**, choose the types of product-related communications you want to receive.
+
+4. Choose **Save** when you're done.
+
+For Office 365 Enterprise, Microsoft 365 Business Standard, and Microsoft 365 Business Basic, when you first signed up as an admin for Microsoft 365, depending on the country or region of the users in your organization, your users might be automatically signed up to receive product-related communications.
+
## Change organization settings for Cloud PCs
By default, new Cloud PCs are created with the Windows 11 operating system and the Standard User account type. To change these default settings, use the following steps.
diff --git a/microsoft-365/admin/manage/change-contact-preferences.md b/microsoft-365/admin/manage/change-contact-preferences.md
deleted file mode 100644
index 97928e97b64..00000000000
--- a/microsoft-365/admin/manage/change-contact-preferences.md
+++ /dev/null
@@ -1,44 +0,0 @@
----
-title: "Change your contact preferences for communications from Microsoft"
-f1.keywords:
-- NOCSH
-ms.author: kwekua
-author: kwekuako
-manager: scotv
-ms.date: 01/06/2025
-audience: Admin
-ms.topic: article
-ms.service: microsoft-365-business
-ms.localizationpriority: medium
-ms.custom: AdminSurgePortfolio
-ms.collection:
-- Tier3
-- scotvorg
-description: "Update your organization's contact information and choose the Microsoft 365 product-related communications you want to receive."
----
-
-# Change your contact preferences for communications from Microsoft
-
-Use the **Contact preferences** section of the Settings & privacy page to choose the Microsoft 365 product-related communications that you want to receive.
-
-Read [Update your admin phone number and email address in Microsoft 365](update-phone-number-and-email-address.md) for info on how to change your admin cell phone number and email address.
-
-If you're looking for how to change company profile information, such as organization's name and address, primary company phone number, and technical contact information, see [Change your organization's address, technical contact email, and other information](change-address-contact-and-more.md).
-
-## To update your information
-
-1. In the admin center, select the **Settings** icon in the top right of the header.
-
-2. Select **Update contact preferences**.
-
-3. Under **Contact preferences**, choose the types of product-related communications you want to receive.
-
-4. Choose **Save** when you're done.
-
-For Office 365 Enterprise, Microsoft 365 Business Standard, and Microsoft 365 Business Basic, when you first signed up as an admin for Microsoft 365, depending on the country or region of the users in your organization, your users might be automatically signed up to receive product-related communications.
-
-For answers to billing questions, see:
-
-- [Change your billing addresses for Microsoft 365 for business](../../commerce/billing-and-payments/change-your-billing-addresses.md)
-
-- [Manage payment methods](../../commerce/billing-and-payments/manage-payment-methods.md)
diff --git a/microsoft-365/admin/manage/deploy-addins-for-gcch.md b/microsoft-365/admin/manage/deploy-addins-for-gcch.md
index 5200306c56b..9c04b246e2a 100644
--- a/microsoft-365/admin/manage/deploy-addins-for-gcch.md
+++ b/microsoft-365/admin/manage/deploy-addins-for-gcch.md
@@ -24,10 +24,10 @@ description: "Deploy Office Add-ins in Microsoft 365 GCC High environments."
This article was written by [Eric Splichal](https://social.technet.microsoft.com/profile/Splic-MSFT), Sr. Support Escalation Engineer.
-Centralized deployment for Office Add-ins can be managed at an administrative level in Microsoft 365 for Business. Since Government Community Cloud High (GCC High) tenants do not have access to the Office store, you will need to deploy Office Add-ins through the following process.
+Centralized deployment for Office Add-ins can be managed at an administrative level in Microsoft 365 for Business. Since Government Community Cloud High (GCC High) tenants don't have access to the Office store, you'll need to deploy Office Add-ins through the following process.
1. In your browser, go to appsource.microsoft.com.
-2. Click on the tile of the add-in you want to deploy (do not click the Get it now button). This will open the details page for the add-in.
+2. Click on the tile of the add-in you want to deploy (don't click the Get it now button). This will open the details page for the add-in.
3. In the URL for the details page, find and copy the AssetID value. For example, if the URL is "https://appsource.microsoft.com/en-US/product/office/WA1234567989?tab=Overview", the AssetID value is WA1234567989.
4. Paste the AssetID value to the following URL: "https://store.office.com/app/download?assetid=value&cmu=en-001". For example, using the example AssetID value from the previous step, the URL would need to be updated to "https://store.office.com/app/download?assetid=WA1234567989&cmu=en-001".
5. In your browser, go to admin.microsoft.com to open the Microsoft 365 admin center.
@@ -38,4 +38,15 @@ Centralized deployment for Office Add-ins can be managed at an administrative le
10. Select I have a URL for the manifest file, and then enter the URL you updated that includes your AssetID for your add-in.
11. Select Upload.
12. On the Configure add-in page, choose the users you want to have access to the add-in, then select Deploy.
+13. If the above steps fail to deploy the Add-in, it's possible your Tenant is blocking the store. If this is the case, please continue.
+14. Paste the URL built out from step 4 above into a browser. This is the raw xml.
+15. Copy the xml and paste into notepad.
+16. Name the file Manifest.xml.
+17. Instead of using the URL option, choose I have the manifest file (.xml) on this device.
+18. Click on Choose File.
+19. Browse to your Manifest.xml file and select it.
+20. Select Upload.
+21. On the Configure add-in page, choose the users you want to have access to the add-in, then select Deploy.
+> [!IMPORTANT]
+> After selecting Deploy, if there's an error concerning Admin Consent, the Add-in isn't GccH compatible and the Developer of the Add-in should be contacted to allow their Add-in to be GccH compliant.
diff --git a/microsoft-365/admin/manage/manage-addins-in-the-admin-center.md b/microsoft-365/admin/manage/manage-addins-in-the-admin-center.md
index 10ca24c5ad2..a8232fbd140 100644
--- a/microsoft-365/admin/manage/manage-addins-in-the-admin-center.md
+++ b/microsoft-365/admin/manage/manage-addins-in-the-admin-center.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 06/21/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
@@ -33,7 +33,7 @@ description: "Learn about using Centralized add-ins to deploy add-ins to users a
> [!NOTE]
> [Integrated Apps](test-and-deploy-microsoft-365-apps.md) is the recommended and most feature-rich way for most customers to centrally deploy Office add-ins to users and groups within your organization.
-Office Add-ins help you personalize your documents and streamline the way you access information on the web. See [Start using your Office Add-in](https://support.microsoft.com/office/82e665c4-6700-4b56-a3f3-ef5441996862).
+Office Add-ins help you personalize your documents and streamline the way you access information on the web. See [Start using your Office Add-in](https://support.microsoft.com/office/82e665c4-6700-4b56-a3f3-ef5441996862).
After a Global or Exchange admin deploys add-ins for users in an organization, they can turn add-ins off or on, edit, delete, and manage access to the add-ins.
@@ -79,7 +79,7 @@ Post deployment, admins can also manage user access to add-ins.
4. Save the changes.
-## Manage add-in downloads by turning on/off the Office store across all apps (Except Outlook)
+## Manage add-in downloads by turning on/off the Office store across all apps (Except Outlook)
> [!NOTE]
> Outlook add-in installation is managed by a [different process](/exchange/clients-and-mobile-in-exchange-online/add-ins-for-outlook/specify-who-can-install-and-manage-add-ins).
@@ -91,13 +91,13 @@ As an organization you may wish to manage the download of Office add-ins from th
1. In the admin center, go to the **Settings** \> [Org settings](https://go.microsoft.com/fwlink/p/?linkid=2053743) page.
2. Select **User owned apps and services**.
-
+
3. Check or clear the option to allow or prevent users to access the Office store.
Options available in non-educational tenants:
-
+

-
+
Options available in educational tenants:

diff --git a/microsoft-365/admin/manage/manage-copilot-agents-integrated-apps.md b/microsoft-365/admin/manage/manage-copilot-agents-integrated-apps.md
index e1cb2af2e80..35309faaf0a 100644
--- a/microsoft-365/admin/manage/manage-copilot-agents-integrated-apps.md
+++ b/microsoft-365/admin/manage/manage-copilot-agents-integrated-apps.md
@@ -32,7 +32,6 @@ description: "Learn how to manage agents for Microsoft 365 Copilot on the Integr
> [!IMPORTANT]
>
-> - You must have Microsoft 365 Copilot license to use agents for Copilot.
> - The capability is enabled by default in all Microsoft 365 Copilot licensed tenants.
> - Admins can manage how individual agents are approved for use and which agents are enabled.
diff --git a/microsoft-365/admin/manage/manage-deployment-of-add-ins.md b/microsoft-365/admin/manage/manage-deployment-of-add-ins.md
index 31eea247e69..d59e33bc942 100644
--- a/microsoft-365/admin/manage/manage-deployment-of-add-ins.md
+++ b/microsoft-365/admin/manage/manage-deployment-of-add-ins.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: efrene
author: efrene
manager: scotv
-ms.date: 10/23/2024
+ms.date: 03/31/2025
audience: Admin
ms.topic: install-set-up-deploy
ms.service: microsoft-365-business
@@ -100,7 +100,7 @@ Before you begin, see [Determine if Centralized Deployment of add-ins works for
7. A green tick appears when the add-in is deployed. Follow the on-page instructions to test the add-in.
> [!NOTE]
-> Users might need to relaunch Microsoft 365 to view the add-in icon on the app ribbon. Add-ins can take up to 24 hours to appear on app ribbons.
+> Users might need to relaunch Microsoft 365 to view the add-in icon on the app ribbon. Add-ins can take up to 72 hours to appear on app ribbons.
8. When finished, select **Next**. If you've deployed to just yourself, you can select **Change who has access to add-in** to deploy to more users.
diff --git a/microsoft-365/admin/manage/manage-group-licenses.md b/microsoft-365/admin/manage/manage-group-licenses.md
index bc9870b16df..449b8b34dcb 100644
--- a/microsoft-365/admin/manage/manage-group-licenses.md
+++ b/microsoft-365/admin/manage/manage-group-licenses.md
@@ -20,7 +20,7 @@ ms.custom:
- admindeeplinkMAC
search.appverid: MET150
description: "Learn how to assign or unassign licenses to groups in the Microsoft 365 admin center."
-ms.date: 01/06/2025
+ms.date: 04/07/2025
---
# Assign or unassign licenses to a group in the Microsoft 365 admin center
diff --git a/microsoft-365/admin/manage/office-addins.md b/microsoft-365/admin/manage/office-addins.md
index 9910cbdc576..5a2afdadb5e 100644
--- a/microsoft-365/admin/manage/office-addins.md
+++ b/microsoft-365/admin/manage/office-addins.md
@@ -1,5 +1,5 @@
---
-title: "Deploy and manage Office Add-ins"
+title: "Deploy and manage Office Add-ins through Integrated Apps"
f1.keywords:
- NOCSH
ms.author: efrene
@@ -7,7 +7,7 @@ author: efrene
manager: scotv
ms.date: 05/11/2023
audience: Admin
-ms.topic: install-set-up-deploy
+ms.topic: article
ms.service: microsoft-365-business
ms.localizationpriority: medium
ms.collection:
@@ -20,13 +20,11 @@ ROBOTS: NOINDEX, NOFOLLOW
description: "An overview of how to deploy and manage Office Add-ins."
---
-# Deploy and manage Office Add-ins
+# Deploy and manage Office Add-ins through Integrated Apps
## What are Office add-ins?
-Microsoft has partnered with leading companies to build programs that help you get things done right from your Microsoft applications. These programs are called Office Add-ins and help you personalize your inbox, documents and streamline the way you access information on the web (see [Start using your Office Add-in](https://support.microsoft.com/office/82e665c4-6700-4b56-a3f3-ef5441996862)).
-
-An Office add-in can be used on Word, Excel, PowerPoint, and Outlook. These add-ins are supported in three desktop platforms Windows, Mac, and Online Office apps. It's also supported on iOS and Android (Outlook Mobile Add-ins only).
+Microsoft partnered with leading companies to build programs that help you get things done right from your Microsoft applications. These programs are called Office Add-ins and they bring powerful web services directly into Office. For more information, see [Start using your Office Add-in](https://support.microsoft.com/office/82e665c4-6700-4b56-a3f3-ef5441996862).
## Before you begin
@@ -34,11 +32,15 @@ Management and deployment via Integrated Apps require that the users are using M
### Office Requirements
-For Word, Excel, and PowerPoint add-ins, your users must be using one of the following versions:
+Deployment via Integrated Apps is supported for Outlook, Excel, Word, and PowerPoint add-ins. They run across multiple platforms, including Windows, Mac, iPad, and in a browser. Outlook add-ins are also supported on mobile (iOS and Android).
+
+For Word, Excel, and PowerPoint add-ins, Integrated Apps deployment is only supported on Windows, Mac, and the web (not iPad). Additionally, your users must meet these version requirements.
+
- On a Windows device, Version 1704 or later of Microsoft 365 Business licenses (Business Basic, Business Standard, Business Premium), Office 365 Enterprise licenses (E1/E3/E5/F3), or Microsoft 365 Enterprise licenses (E3/E5/F3).
- On a Mac, Version 15.34 or later.
-For Outlook, your users must be using one of the following versions:
+For Outlook, your users must meet these version requirements.
+
- Version 1701 or later of Microsoft 365 Business licenses (Business Basic, Business Standard, Business Premium), Office 365 Enterprise licenses (E1/E3/E5/F3), or Microsoft 365 Enterprise licenses (E3/E5/F3).
- Version 1808 or later of Office Professional Plus 2019 or Office Standard 2019.
- Version 16.0.4494.1000 or later of Office Professional Plus 2016 (MSI) or Office Standard 2016 (MSI).
@@ -52,45 +54,42 @@ For Outlook, your users must be using one of the following versions:
### Exchange Online Requirements
-Microsoft Exchange stores the add-in manifests within your organization's tenant. The admin deploying /pre-installing add-ins and the users receiving those add-ins must be on a version of Exchange Online that supports OAuth authentication.
+Microsoft Exchange stores the add-in manifests within your organization's tenant. The admin deploying add-ins and the users receiving those add-ins must be on a version of Exchange Online that supports OAuth authentication. OAuth connectivity per user is verified by using the *Test-OAuthConnectivity* PowerShell cmdlet.
-Check with your organization's Exchange admin to find out which configuration is in use. OAuth connectivity per user can be verified by using the *Test-OAuthConnectivity* PowerShell cmdlet.
+Deployment doesn't support the following scenarios.
-Deployment doesn't support the following scenarios:
-- Add-ins that target Word, Excel, or PowerPoint in Office 2013
-- An on-premises directory service
-- Add-in Deployment to an Exchange On-prem Mailbox
+- Add-ins that target Word, Excel, or PowerPoint in Office 2013.
+- An on-premises directory service.
+- Add-in deployment to an Exchange on-premises Mailbox.
- Deployment of Component Object Model (COM) or Visual Studio Tools for Office (VSTO) add-ins.
- Deployments of Microsoft 365 that don't include Exchange Online such as Microsoft 365 Apps for Business and Microsoft 365 Apps for Enterprise.
## Controls for managing Office add-ins
-As an admin, you can manage Office add-ins in your organization as follows:
-1. Deploy an Office Add-in for users in your organization.
-2. Manage how users can install and use Office add-ins.
-3. Upload custom Office add-ins for your organization.
+As an admin, you can manage Office add-ins in your organization as follows.
-### Prepare to deploy and manage Office Add-ins via Integrated Apps
+- Deploy an Office Add-in for users in your organization.
+- Manage how users can install and use Office Add-ins.
+- Upload custom Office add-ins for your organization.
-Office Add-ins help you personalize your documents and streamline the way you access information on the web (see Start using your Office Add-in). Add-ins provide the following benefits:
+### Prepare to deploy and manage Office Add-ins via Integrated Apps
-- When the relevant Office application starts, the add-in automatically downloads. If the add-in supports add-in commands, the add-in automatically appears in the ribbon within the Office application.
-- Add-ins no longer appear for users if the admin turns off or deletes the add-in. Also if the user is removed from Microsoft Entra ID or from a group that the add-in is assigned to. Learn how to perform these actions in the following section.
+When the relevant Office application starts, the add-in automatically downloads. If the add-in supports add-in commands, the add-in automatically appears in the ribbon within the Office application.
-Add-ins are supported in three desktop platforms: Windows, Mac, and Online Office apps. It's also supported in iOS and Android (Outlook Mobile Add-ins Only).
+Add-ins no longer appear for users if the admin turns off or deletes the add-in. They'll also stop appearing if the user is removed from Microsoft Entra ID or from a group that the add-in is assigned to. Learn how to perform these actions in the following section, [Deploy your Office Add-ins](#deploy-your-office-add-ins).
-It can take up to 24 hours for an add-in to show up for client for all users.
+Add-in deployment is supported on three platforms: Windows, Mac, and on the web. It's also supported on iOS and Android for Outlook add-ins.
Currently, Exchange admins and Global admins can deploy add-ins from Integrated apps.
-## Deploy your Office add-ins
+## Deploy your Office Add-ins
-Deploying an add-in means you're pre-installing the add-in for a specific set of users in your organization. All management actions taken on a deployed add-in are fully controlled by the admin. You can find, test, and fully deploy apps published by Microsoft and other leading partners. By purchasing and licensing the apps from the admin center, you can add Microsoft and Microsoft partner apps to your list from a single location.
+Deploying an add-in means you're preinstalling the add-in for a specific set of users in your organization. The admin fully controls all management actions taken on a deployed add-in. You can find, test, and fully deploy apps published by Microsoft and other partners. By purchasing and licensing the apps from the admin center, you add Microsoft and Microsoft partner apps to your list from a single location.
1. In the admin center, in the left nav, choose **Settings**, and then choose **Integrated apps**.
2. In the Deployed Apps list, select **Get apps** to get a view of the apps.
3. On the **Microsoft 365 Apps published apps** page, select the app you want to deploy by choosing **Get it now**. Accept the permissions and select **Continue**.
-4. Select **Deploy** at the top of the page next to the message that refers to waiting to be deployed. If the app selected is linked to a SaaS offer by an ISV, all the other apps that are part of this linked offer appear on the Configuration page. If you choose to deploy all of the apps, select **Next**. Otherwise, select **Edit**, and choose which apps you want to deploy. Some apps require you to add users before you can select **Deploy**.
+4. Select **Deploy** at the top of the page next to the message that refers to waiting to be deployed. If the app selected is linked to a SaaS offer by an independent software vendor (ISV), all the other apps that are part of this linked offer appear on the Configuration page. If you choose to deploy all of the apps, select **Next**. Otherwise, select **Edit**, and choose which apps you want to deploy. Some apps require you to add users before you can select **Deploy**.
5. Select **Add users**, choose **Is this a test deployment**, and then select either **Entire organization**, **Specific users/groups**, or **Just me**. Specific users/groups can be a Microsoft 365 group, a security group, or a distributed group. You can also choose **Test deployment** if you prefer to wait to deploy the app to the entire organization.
6. Select **Next** to get to the **Accept permission request** page. The app capabilities and permissions of each of the apps are listed. If the app needs consent, select **Accept permissions**. Only a global administrator can give consent.
7. Select **Next** to review the deployment and choose **Finish deployment**. You can view the deployment from the **Overview** tab by choosing **View this deployment**. In the Microsoft 365 admin center, you can see the status of each deployed app and the date you deployed the app.
@@ -99,7 +98,7 @@ It can take up to 24 hours for an add-in to show up for client for all users.
### Considerations when deploying an add-in to users and groups
-Admins can deploy an add-in to everyone or to specific users and groups. Each option has implications:
+Admins can deploy an add-in to everyone or to specific users and groups. Each option has implications.
- **Everyone**: This option assigns the add-in to every user in the organization. Use this option sparingly and only for add-ins that are truly universal to your organization.
- **Users**: If you assign an add-in to an individual user, and then deploy the add-in to a new user, you must first add the new user.
@@ -110,7 +109,7 @@ The right option for your organization depends on your configuration. However, w
### Recommended approach for deploying Office Add-ins
-To roll out add-ins by using a phased approach, we recommend the following actions:
+To roll out add-ins by using a phased approach, we recommend the following actions.
1. Roll out the add-in to a small set of business stakeholders and members of the IT department. If the deployment is successful, move to step 2.
2. Roll out the add-in to more individuals within the business. Again, evaluate the results and, if successful, continue with full deployment.
@@ -120,17 +119,17 @@ Depending on the size of the target audience, you can add or remove roll-out ste
### Scenarios where Exchange admin can't deploy an add-in
-There are two cases in which an Exchange Admin aren't able to deploy an add-in:
+There are two cases in which an Exchange Admin isn't able to deploy an add-in.
-- If an add-in needs permission to MS Graph APIs and needs consent from a global admin.
-- If an add-in is linked to two or more add-ins and webapps, and at least one of these add-ins is deployed by another admin (Exchange or global) and the user assignment isn't uniform. We only allow deployment of add-ins when the user assignment is the same for all the already deployed apps.
+- If an add-in needs permission for Microsoft Graph APIs and needs consent from a global admin.
+- If an add-in is linked to two or more apps, another admin (Exchange or global) deployed at least one of those linked apps, and the user assignment isn't uniform. We only allow deployment of add-ins when the user assignment is the same for all the already deployed apps.
### Edit users for deployed add-ins
Post deployment, admins can also edit the deployed to add-ins.
1. In the admin center, select **Settings**, then select **Integrated apps**.
-2. On the **Integrated apps** page, it displays a list of apps that are either single add-ins or add-ins that have been linked with other apps.
+2. On the **Integrated apps** page, it displays a list of apps that are either single add-ins or add-ins that are linked with other apps.
3. Select an app and then scroll down to select **Edit Users** or select the **User** tab in the overview pane.
4. Select the user group you want to deploy the add-in to.
5. Review the app information, and then select **Update**.
@@ -143,14 +142,14 @@ Post deployment, admins can also edit the deployed to add-ins.
Post deployment, admins can also approve updates for the deployed add-ins.
1. In the admin center, select **Settings** then select **Integrated apps**.
-2. On the **Integrated apps** page, it displays a list of apps that are either single add-ins or add-ins that have been linked with other apps.
+2. On the **Integrated apps** page, it displays a list of apps that are either single add-ins or add-ins that are linked with other apps.
3. Select an app with **Status** of **More apps available** to open the **Manage** pane. The status of **More apps available** lets you know that there are more integrations from the ISVs that aren't yet deployed.
4. On the **Overview** tab, select **Deploy**. Some apps require you to add users before you can select **Deploy**.
5. Select **Users**, select **Is this a test deployment**, and then select either **Entire organization**, **Specific users/groups** or **Just me**. You can also select **Test deployment** if you prefer to wait to deploy the app to the entire organization. Specific users or groups can be a Microsoft 365 group, a security group, or a distribution group.
6. Select **Update** and then select **Done**. You can now select **Deploy** on the **Overview** tab.
7. Review the app information, and then select **Deploy**.
8. Select **Done** on the **Deployment completed** page, and review the details of the test or full deployment on the **Overview** tab.
-9. If the app has a status of **Update pending**, you can click on the app to open the **Manage** pane and update the app.
+9. If the app has a status of **Update pending**, you can select the app to open the **Manage** pane and update the app.
10. To just update users, select the **Users** tab and make the appropriate change. Select **Update** after making your changes.
### Delete a deployed add-in
@@ -163,40 +162,41 @@ You can also delete an add-in that was deployed.
4. Select the add-in that you want to delete and then select **Remove**.
> [!NOTE]
-> If the add-in has been deployed by another admin, then the Remove button will be disabled. Only the admin who has deployed the app or a global admin can delete the add-in.
+> If another admin deployed the add-in, then the **Remove** button will be disabled. Only the admin who deployed the app or a global admin can delete the add-in.
## Manage how users can install and use Office add-ins
Managing how users can install and use Office add-ins means that you decide who can or can't install and use add-ins in your organization. Unlike deploying an add-in that preinstalls for selected users, managing an add-in allows you to decide which users can self-install Office add-ins from the stores on the Microsoft applications.
-**Word, Outlook, and PowerPoint**
+### Word, Outlook, and PowerPoint
-1. To manage users’ ability to self-install and use Office add-ins from the Word, Excel and PowerPoint stores, visit the Microsoft 365 Admin Center.
+1. To manage users’ ability to self-install and use Office add-ins from the Word, Excel, and PowerPoint stores, visit the Microsoft 365 Admin Center.
2. Choose **Settings** and the select **Org Settings**.
3. Scroll down and select **User owned apps and services**.
4. Check or clear the option to allow or prevent users to access all Word, Excel, and PowerPoint add-ins.
Options available in non-educational tenants:
-
+

-
+
Options available in educational tenants:

-The user’s license information is used to define whether a user is a faculty/staff or a student along with the Age Group property to check whether the student is an adult or not.
+The user's license information is used to define whether a user is a faculty, staff, or a student along with the Age Group property to check whether the student is an adult or not.
> [!NOTE]
-> For more information see:
+> For more information, see the following articles.
+>
>- [Learn how to review the user's license type and assign or unassign licenses as required](assign-licenses-to-users.md)
>- [Understand how to configure the Age Group property in the Microsoft Encarta admin center](/entra/fundamentals/how-to-manage-user-profile-info)
> [!NOTE]
-> This setting does not impact any deployed Office add-ins on Word, Excel, and PowerPoint. You can continue to deploy Office add-ins to users in your organization, even if the above setting is turned off.
+> This setting doesn't affect any deployed Office add-ins on Word, Excel, and PowerPoint. You can continue to deploy Office add-ins to users in your organization, even if the setting is turned off.
-**Outlook**
+### Outlook
-1. To manage users’ ability to self-install and use Office add-ins from Outlook store, log in to the classic Exchange admin center as a global administrator.
+1. To manage users' ability to self-install and use Office add-ins from Outlook store, sign in to the classic Exchange admin center as a global administrator.
2. Go to **Permissions** and then select **User Roles**.
3. Select an existing role assignment policy or create a new policy.
4. Type a name for the policy if you're creating a new policy.
@@ -204,20 +204,20 @@ The user’s license information is used to define whether a user is a faculty/s
6. Select **Save**.
- Once the policy is created, you can assign it to users in your organization.
- You can also create multiple policies and assign it to different users within your organization.
-7. Activating the checkboxes above turns on access to Outlook add-ins for the users assigned to the policy.
-8. Deactivating the checkboxes turns off access to Outlook add-ins for users assigned to the policy.
+7. Activating these checkboxes turns on access to Outlook add-ins for the users assigned to the policy.
+8. Deactivating these checkboxes turns off access to Outlook add-ins for users assigned to the policy.
> [!NOTE]
-> This setting does not impact any deployed Office add-ins on Outlook. You can continue to deploy Office add-ins on Outlook to users in your organization, even if the above setting is turned off.
+> This setting doesn't affect any deployed Office add-ins on Outlook. You can continue to deploy Office add-ins on Outlook to users in your organization, even if the setting is turned off.
-Microsoft is now partnering with leading developers to create unified apps that work across Outlook, Word, Excel, PowerPoint, Teams and the Microsoft 365 App (formerly known as Office.com). Any settings made for Office Add-ins will continue to be honored as long as they stay as add-ins. When Office add-ins upgrade to work across different Microsoft applications, you can learn to manage them from here. For more information, see [Controls for managing Teams apps that work on Outlook and Microsoft 365](/microsoft-365/admin/manage/teams-apps-work-on-outlook-and-m365#controls-for-managing-teams-apps-that-work-on-outlook-and-the-microsoft-365-app).
+Microsoft is now partnering with leading developers to create unified apps that work across Outlook, Word, Excel, PowerPoint, Teams, and the Microsoft 365 App (formerly known as Office.com). Any settings made for Office Add-ins continue to be honored as long as they stay as add-ins. When Office add-ins upgrade to work across different Microsoft applications, you can learn to manage them from here. For more information, see [Controls for managing Teams apps that work on Outlook and Microsoft 365](/microsoft-365/admin/manage/teams-apps-work-on-outlook-and-m365#controls-for-managing-teams-apps-that-work-on-outlook-and-the-microsoft-365-app).
## Upload Custom Office Add-ins in your organization
-You can also upload custom line of business add-ins and deploy it to users in your organization:
+You can also upload custom line-of-business add-ins and deploy it to users in your organization.
1. In the admin center, in the left nav, choose **Settings** and then **Integrated apps**.
-2. Select **Upload custom apps**. Custom line of business add-ins for Word, PowerPoint, Excel, and Outlook are supported.
+2. Select **Upload custom apps**. Custom line-of-business add-ins for Word, PowerPoint, Excel, and Outlook are supported.
3. Upload the manifest file from your device or add a URL link. Some apps require you to add users before you can select **Deploy**.
4. Select **Add users**, choose **Is this a test Deployment**, and choose either **Entire organization**, **Specific users/groups**, or **Just me.** Specific users/groups can be a Microsoft 365 group, a security group, or a distributed group. You can also choose **Test deployment** if you want to wait to deploy the app to the entire organization.
5. Select **Next** to view the **Accept permission request** page. The app capabilities and permissions of the apps are listed. If the app needs consent, select **Accept permissions**. Only a global administrator can give consent.
@@ -228,22 +228,18 @@ You can also upload custom line of business add-ins and deploy it to users in yo
## More about Office Add-ins security
-Office Add-ins combine an XML manifest file that contains some metadata about the add-in, but most importantly points to a web application that contains all the code and logic. Add-ins can range in their capabilities. For example, add-ins can:
-
-- Display data.
-- Read a user's document to provide contextual services.
-- Read and write data to and from a user's document to provide value to that user.
+Office Add-ins combine an XML manifest file that contains some metadata about the add-in, but most importantly points to a web application that contains all the code and logic. Add-ins can range in their capabilities, but usually read and write data to and from the user's documents.
-For more information about the types and capabilities of Office Add-ins, see [Office Add-ins platform overview](/office/dev/add-ins/overview/office-add-ins), especially the section *Anatomy of an Office Add-in*.
+For more information about the types and capabilities of Office Add-ins, see [Office Add-ins platform overview](/office/dev/add-ins/overview/office-add-ins), especially the section *Components of an Office Add-in*.
To interact with the user's document, the add-in needs to declare what permission it needs in the manifest. A five-level JavaScript API access-permissions model provides the basis for privacy and security for users of task pane add-ins. Most of the add-ins in the Office Store are level ReadWriteDocument with almost all add-ins supporting at least the ReadDocument level. For more information about the permission levels, see [Requesting permissions for API use in content and task pane add-ins](/office/dev/add-ins/develop/requesting-permissions-for-api-use-in-content-and-task-pane-add-ins).
-When updating a manifest, the typical changes are to an add-in's icon and text. Occasionally, add-in commands change. However, the permissions of the add-in don't change. The web application where all the code and logic for the add-in runs can change at any time, which is the nature of web applications.
+When a manifest is updated, the typical changes are to an add-in's icon and text. Occasionally, add-in commands change. However, the permissions of the add-in don't change. The web application where all the code and logic for the add-in runs can change at any time, which is the nature of web applications.
-Updates for add-ins happen as follows:
+Updates for add-ins happen as follows.
- **Line-of-business add-in**: In this case, where an admin explicitly uploaded a manifest, the add-in requires that the admin upload a new manifest file to support metadata changes. The next time the relevant Microsoft 365 productivity apps start, the add-in will update. The web application can change at any time.
- **Office Store add-in**: When an admin selected an add-in from the Office Store, if an add-in updates in the Office Store, the next time the relevant Microsoft 365 productivity apps start, the add-in will update. The web application can change at any time.
> [!NOTE]
-> For Word, Excel, and PowerPoint use a [SharePoint App Catalog](/sharepoint/dev/sp-add-ins/publish-sharepoint-add-ins) to deploy add-ins to users in an on-premises environment with no connection to Microsoft 365 and/or support for SharePoint add-ins required. For Outlook use Exchange control panel to deploy in an on-premises environment without a connection to Microsoft 365.
+> For Word, Excel, and PowerPoint use a [SharePoint App Catalog](/sharepoint/dev/sp-add-ins/publish-sharepoint-add-ins) to deploy add-ins to users in an on-premises environment with no connection to Microsoft 365 and/or support for SharePoint add-ins required. For Outlook, use the Exchange control panel to deploy in an on-premises environment without a connection to Microsoft 365.
diff --git a/microsoft-365/admin/manage/share-calendars-with-external-users.md b/microsoft-365/admin/manage/share-calendars-with-external-users.md
index 92dd7c128f2..4f00950203d 100644
--- a/microsoft-365/admin/manage/share-calendars-with-external-users.md
+++ b/microsoft-365/admin/manage/share-calendars-with-external-users.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/30/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/manage/teams-apps-work-on-outlook-and-m365.md b/microsoft-365/admin/manage/teams-apps-work-on-outlook-and-m365.md
index bd2dc07e79a..59109a29895 100644
--- a/microsoft-365/admin/manage/teams-apps-work-on-outlook-and-m365.md
+++ b/microsoft-365/admin/manage/teams-apps-work-on-outlook-and-m365.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: efrene
author: efrene
manager: scotv
-ms.date: 10/11/2024
+ms.date: 03/12/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
@@ -67,6 +67,9 @@ As a Global Administrator, you can also initiate deployment of an app from its o
As an admin, you can also take management actions on these apps such as removing the deployment or editing user access.
+> [!NOTE]
+> On the Integrated Apps page, note that the **CoPilot** app settings will apply to both **Microsoft 365 Copilot** and the **Copilot Chat** apps. Any changes made to this app from Integrated Apps will apply to both.
+
### To remove the deployment of this app
1. Select **Remove app** in the overview tab of an app from the **Deployed Apps** list.
diff --git a/microsoft-365/admin/manage/test-and-deploy-microsoft-365-apps.md b/microsoft-365/admin/manage/test-and-deploy-microsoft-365-apps.md
index d7d7416896b..5b6a4dcee6e 100644
--- a/microsoft-365/admin/manage/test-and-deploy-microsoft-365-apps.md
+++ b/microsoft-365/admin/manage/test-and-deploy-microsoft-365-apps.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: efrene
author: efrene
manager: scotv
-ms.date: 11/07/2024
+ms.date: 03/26/2025
audience: Admin
ms.topic: get-started
ms.service: microsoft-365-business
@@ -61,7 +61,9 @@ To learn more about these roles, see [Microsoft Entra built-in roles - Microsoft
We currently support most groups supported by Microsoft Entra ID, including Microsoft 365 groups, distribution lists, and security groups. We support users in top-level groups or groups without parent groups, but not users in nested groups or groups that have parent groups. To know more, read the documentation on [Assign users and groups to application](/azure/active-directory/manage-apps/assign-user-or-group-access-portal?pivots=portal).
> [!NOTE]
-> Non-mail enabled security groups are not currently supported.
+> The following are currently not supported:
+> - Non-mail enabled security groups
+> - Dynamic distribution groups
In the following example, Sandra, Sheila, and the Sales Department group are assigned to an app or add-in. Because the West Coast Sales Department is a nested group, Bert and Fred aren't assigned to an app or add-in.
diff --git a/microsoft-365/admin/manage/use-qr-code-download-outlook.md b/microsoft-365/admin/manage/use-qr-code-download-outlook.md
deleted file mode 100644
index f2d95a2d754..00000000000
--- a/microsoft-365/admin/manage/use-qr-code-download-outlook.md
+++ /dev/null
@@ -1,54 +0,0 @@
----
-title: "Use a QR code to sign-in to the Outlook mobile apps"
-f1.keywords:
-- NOCSH
-ms.author: kwekua
-author: kwekuako
-manager: scotv
-ms.date: 09/30/2024
-audience: Admin
-ms.topic: how-to
-ms.service: microsoft-365-business
-ms.localizationpriority: medium
-ms.collection:
-- Tier3
-- scotvorg
-- Adm_O365
-ms.custom:
-- AdminSurgePortfolio
-- AdminTemplateSet
-description: "Learn how to use a QR code to authenticate and download Outlook mobile."
----
-
-# Use a QR code to sign-in to the Outlook mobile apps
-
-> [!IMPORTANT]
-> As of September2024, this feature will turned off indefinitely for Enterprise users. For more details on the settings and controls for this feature see, [Conditional Access: Authentication flows (Preview)](/entra/identity/conditional-access/concept-authentication-flows).
-
-As the Microsoft 365 administrator, you can allow your users to sign in to the Outlook for Android or iOS app on their mobile devices without having to enter their username and password. By scanning a QR code, users can securely authenticate and sign in to Outlook mobile.
-
-In Outlook on the web or Outlook desktop app, users now have a button labeled Outlook mobile. Once a user selects the button, a QR code will appear. Users then can scan QR code with their Outlook mobile app to sign in. Outlook will use their identity from Azure Active Directory to securely log them into the app on their mobile device. The QR code is a temporary token that can only be used once per session.
-
-> [!NOTE]
-> In some cases, your users must re-authenticate on their computer to generate the QR code.
-
-## Use Exchange PowerShell to turn of QR code sign in
-
-This feature is on by default but you can turn it off by setting the Set-OWAMailboxPolicy command, **AccountTransferEnabled** to false. Users that have already used this feature won’t be signed out.
-
-1. [Connect to Exchange PowerShell](/powershell/exchange/connect-to-exchange-online-powershell).
-
-2. Using PowerShell, you can disable the button from being shown to your users and prevent the QR code sign-in flow from being used.
-
- ```powershell
- Set-OwaMailboxPolicy --Identity EMEA\Contoso\Corporate -AccountTransferEnabled $false
- ```
-
-> [!NOTE]
-> When using the Exchange PowerShell command, changes may take up to 8 hours to propagate.
-
-## Related content
-
-[Set up the Standard or Targeted release options](release-options-in-office-365.md) (article)\
-[Set-OwaMailboxPolicy](/powershell/module/exchange/set-owamailboxpolicy) (article)
-[Conditional Access: Authentication flows (Preview)](/entra/identity/conditional-access/concept-authentication-flows)
diff --git a/microsoft-365/admin/misc/experience-insights-dashboard.md b/microsoft-365/admin/misc/experience-insights-dashboard.md
index f4c09e2a7d7..78fb3254c2e 100644
--- a/microsoft-365/admin/misc/experience-insights-dashboard.md
+++ b/microsoft-365/admin/misc/experience-insights-dashboard.md
@@ -68,7 +68,7 @@ The chart information gives you insight into the apps and services that you want
**NPS survey response volume** is the total number of responses to the Net Promoter Score (NPS) survey. By default, Microsoft sends the survey to 5% of your users and asks “Would you recommend this product?” Use this data to gauge user satisfaction and to see what people are saying about the app. [Learn more](../manage/manage-feedback-product-insights.md)
-**Help article views** is the total number of views of Microsoft help articles and training videos about the app. Use this data to find topics of interest and share the suggested training with your users. [Learn more](experience-insights-help-articles.md)
+**Help article views** is the total number of views of Microsoft help articles and training videos about the app. Use this data to find topics of interest and share the suggested training with your users. [Learn more](#examples-of-help-articles)
> [!NOTE]
> You can filter the chart data for trends over the last 30 days, 90 days, or 180 days.
diff --git a/microsoft-365/admin/misc/mailbox-not-found-error.md b/microsoft-365/admin/misc/mailbox-not-found-error.md
index f2d3326480c..54604a8c7a1 100644
--- a/microsoft-365/admin/misc/mailbox-not-found-error.md
+++ b/microsoft-365/admin/misc/mailbox-not-found-error.md
@@ -9,7 +9,7 @@ audience: Admin
ms.topic: article
ms.service: microsoft-365-business
ms.localizationpriority: high
-ms.date: 08/10/2023
+ms.date: 03/18/2025
ms.collection:
- Tier2
- scotvorg
diff --git a/microsoft-365/admin/misc/organizational-messages-microsoft-365.md b/microsoft-365/admin/misc/organizational-messages-microsoft-365.md
index 656b38edb50..c3d9059c12a 100644
--- a/microsoft-365/admin/misc/organizational-messages-microsoft-365.md
+++ b/microsoft-365/admin/misc/organizational-messages-microsoft-365.md
@@ -454,7 +454,7 @@ All messages have a state that indicates their creation or delivery status, incl
### How does localization work in Organizational messages?
-**For premade messages**, your message is delivered to end users who have their related product language set to one of the following:
+For **premade messages**, your message is delivered to end users who have their related product language set to one of the following:
- en-US
- de-DE
@@ -472,11 +472,16 @@ All messages have a state that indicates their creation or delivery status, incl
- zh-Hans
- zh-Hant
-For example, if the Organizational Messages Writer (admin) selects message A to be sent to their end users, then any end users with their product language set to one of the above languages qualifies to receive the message A.
+For example, if the Organizational Messages Writer (admin) selects "Message A" to send to end users, any end user whose preferred language matches one of the supported languages listed above will qualify to receive "Message A."
-**For customized messages**, your message will only be delivered in the language in which it was created within the Microsoft 365 admin center.
+> [!NOTE]
+>
+> - *Locale of the custom message writer selected*: Display language set in the Microsoft 365 admin center (MyAccount).
+> - *Locale of the message receiver selected*: First supported language listed under "Preferred Languages" in the user's Windows Settings menu. This is determined by the operating system on the user's device.
+
+For **custom messages**, delivery will be restricted to the language selected as the Microsoft 365 admin center (MyAccount) display language.
-For example, if the Organizational Messages Writer (admin) has their Microsoft 365 admin center product language set to French when they create their message B from scratch, end users with related product language set to English will not receive the message B. However, end users with French set as their related product language qualifies to receive the message B.
+For example, if the Organizational Messages Writer (admin) sets their Microsoft 365 admin center (MyAccount) display language to French while creating "Message B," only end users with French as the first option under "Preferred Languages" in their Windows Settings will receive "Message B." End users whose preferred language is any other language will not receive the message.
### Does Organizational Messages support government environments, such as GCC, GCCH, etc.?
diff --git a/microsoft-365/admin/misc/password-policy-recommendations.md b/microsoft-365/admin/misc/password-policy-recommendations.md
index b4af035b577..bb8b598232e 100644
--- a/microsoft-365/admin/misc/password-policy-recommendations.md
+++ b/microsoft-365/admin/misc/password-policy-recommendations.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 05/28/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/misc/set-up-dns-records-vsb.md b/microsoft-365/admin/misc/set-up-dns-records-vsb.md
index ec4ea58271b..6c684a66ffb 100644
--- a/microsoft-365/admin/misc/set-up-dns-records-vsb.md
+++ b/microsoft-365/admin/misc/set-up-dns-records-vsb.md
@@ -2,7 +2,7 @@
title: "Connect your domain to Microsoft 365"
f1.keywords:
- CSH
-ms.author: nkagole
+ms.author: scotv
author: nataliekagole
manager: scotv
ms.date: 08/01/2024
diff --git a/microsoft-365/admin/misc/user-consent.md b/microsoft-365/admin/misc/user-consent.md
index 946b0b47d8c..1f5243e191e 100644
--- a/microsoft-365/admin/misc/user-consent.md
+++ b/microsoft-365/admin/misc/user-consent.md
@@ -5,7 +5,7 @@ f1.keywords:
ms.author: kwekua
author: kwekuako
manager: scotv
-ms.date: 03/25/2024
+ms.date: 04/02/2025
audience: Admin
ms.topic: article
ms.service: microsoft-365-business
diff --git a/microsoft-365/admin/setup/add-domain.md b/microsoft-365/admin/setup/add-domain.md
index 5510be7c867..3f299251fc0 100644
--- a/microsoft-365/admin/setup/add-domain.md
+++ b/microsoft-365/admin/setup/add-domain.md
@@ -9,6 +9,7 @@ ms.date: 08/11/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -43,6 +44,8 @@ description: "Use the setup wizard to add your domain to Microsoft 365 in the Mi
Check out all of our small business content on [Small business help & learning](https://go.microsoft.com/fwlink/?linkid=2224585).
Check out [Microsoft 365 small business help](https://go.microsoft.com/fwlink/?linkid=2197659) on YouTube.
+
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
## Before you begin
diff --git a/microsoft-365/admin/setup/add-or-replace-your-onmicrosoftcom-domain.md b/microsoft-365/admin/setup/add-or-replace-your-onmicrosoftcom-domain.md
index aaa53e31d53..c6eed436183 100644
--- a/microsoft-365/admin/setup/add-or-replace-your-onmicrosoftcom-domain.md
+++ b/microsoft-365/admin/setup/add-or-replace-your-onmicrosoftcom-domain.md
@@ -9,6 +9,7 @@ ms.date: 11/18/2024
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-business
+ms.subservice: m365-domains
ms.localizationpriority: medium
ms.collection:
- Tier2
@@ -47,13 +48,15 @@ When you sign up for Microsoft 365, Microsoft provides an *onmicrosoft.com* doma
It serves as a default email routing address for your Microsoft 365 environment. When a user is set up with a mailbox, email is routed to the fallback domain. Even if a custom domain is used (for example, tailspintoys.com), if that custom domain is deleted from your Microsoft 365 environment, the fallback domain ensures that your user's email is successfully routed.
+[!INCLUDE [How to get tech support for SMB](../../includes/smb-how-to-get-tech-support.md)]
+
You can change your fallback domain in the Microsoft 365 admin center. Common reasons customers change their fallback domain include:
- Not knowing the company name to use when they first signed up for Microsoft 365. Now that they know the company name, they want their users to have sign in account names that are appropriate.
- They want to change how their SharePoint URLs look like when they create a new site. SharePoint URLs in your Microsoft 365 environment are created based on your fallback domain name. If you didn't use the correct company name when you first signed up, your SharePoint URLs for your sites continue to use that name when you create new SharePoint sites.
-
While you can add more onmicrosoft.com domains, only one onmicrosoft.com domain can be used as your fallback domain. The steps in this article describe how to:
+
- Create a new onmicrosoft.com domain
- Assign it as your fallback domain
@@ -64,7 +67,6 @@ While you can add more onmicrosoft.com domains, only one onmicrosoft.com domain
To add, modify, or remove domains, you **must** be a **Domain Name Administrator** of a [business or enterprise plan](https://products.office.com/business/office). These changes affect the whole tenant; *Customized administrators* or *regular users* aren't able to make these changes.
-
## Add a new onmicrosoft.com domain
1. In the Microsoft 365 admin center, select **Settings**, and then select **Domains**.
@@ -87,11 +89,8 @@ To add, modify, or remove domains, you **must** be a **Domain Name Administrator

-
-
## Make your new onmicrosoft.com domain your fallback domain
-
> [!NOTE]
> Before changing your fallback domain to a new onmicrosoft.com domain, you might want to consider changing your onmicrosoft.com SharePoint domain. Creating another onmicrosoft domain and using it as your fallback domain won't do a rename for SharePoint in Microsoft 365. Your existing SharePoint and OneDrive URLs will remain the same. You're able to change your.onmicrosoft SharePoint domain through the PowerShell steps provided in [SharePoint domain rename preview](/sharepoint/change-your-sharepoint-domain-name) (currently available to any tenant with less than 10,000 sites).
diff --git a/microsoft-365/admin/setup/download-software-licenses-csp.md b/microsoft-365/admin/setup/download-software-licenses-csp.md
index 40f6836d138..76071de7cd4 100644
--- a/microsoft-365/admin/setup/download-software-licenses-csp.md
+++ b/microsoft-365/admin/setup/download-software-licenses-csp.md
@@ -24,7 +24,7 @@ ms.custom:
- admindeeplinkMAC
- GAUpdates
description: Learn how to download the software and product license keys for perpetual software bought through the Cloud Solution Provider (CSP) program.
-ms.date: 01/06/2025
+ms.date: 04/07/2025
---
# Download perpetual software and product license keys in Microsoft 365
@@ -35,6 +35,9 @@ This article explains how to download software and product license keys for perp
- You must be a Global Administrator to do the steps in this article. For more information, see [About admin roles](../add-users/about-admin-roles.md).
- If you're a partner who's an admin on behalf of (AOBO) a customer, you must sign in to the customer's organization with an admin account created in the organization.
+- If there are multiple billing accounts, you must select the account that the product was purchased on.
+ For more information, see [Select a default billing account](../../commerce/manage-billing-accounts.md).
+- If you don't have access to the billing account, you must self elevate. For more information, see [No billing account found for buying products](../../commerce/no-billing-account-found.md).
[!INCLUDE [ga-roles-limitation](../../includes/ga-roles-limitation.md)]
diff --git a/microsoft-365/admin/support-contact-info.md b/microsoft-365/admin/support-contact-info.md
deleted file mode 100644
index a99cbc763c3..00000000000
--- a/microsoft-365/admin/support-contact-info.md
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: "Find Microsoft 365 for business support phone numbers by country or region"
-ms.author: cmcatee
-author: cmcatee-MSFT
-manager: scotv
-audience: Admin
-ms.topic: article
-ms.service: microsoft-365-business
-ms.localizationpriority: medium
-ms.collection:
-- scotvorg
-- highpri
-- Adm_O365
-ms.custom:
-- VSBFY23
-- campaignIDs-batch1
-search.appverid:
-- MET150
-description: "Learn how to get phone support for your Microsoft 365 for business subscription. You must be an admin for a business subscription to get support."
-ms.date: 12/12/2024
----
-
-# Find Microsoft 365 for business support phone numbers by country or region
-
-> [!IMPORTANT]
-> Please note that our phone numbers have changed. For the most current support phone number in your country/region, see the [global phone numbers list](https://support.microsoft.com/topic/customer-service-phone-numbers-c0389ade-5640-e588-8b0e-28de8afeb3f2#ID0EBBD=signinorgid). If your country/region isn't listed, select a neighboring country/region or dial the United States support phone number.
-
-In most countries/regions, billing support for Microsoft 365 for business products and services is provided in English from 9 AM-5 PM, Monday through Friday. Local language support varies by country/region.
-
-Technical support is provided in English 24 hours a day, 7 days a week, and in some cases, in local languages as noted.
-
-Admins, have your account details ready when you call.
-
-> [!NOTE]
-> To better protect your organization, we added a PIN-based verification step to our existing phone-based verification process. If you contact us from a number that isn't registered with your organization profile, the Microsoft support representative sends a verification code to the registered email or phone number in your Microsoft 365 admin center profile. You must provide this code to the support representative to grant them access to your organization's account.
diff --git a/microsoft-365/admin/whats-new-in-preview.md b/microsoft-365/admin/whats-new-in-preview.md
index e3de329b4be..e5c3f473718 100644
--- a/microsoft-365/admin/whats-new-in-preview.md
+++ b/microsoft-365/admin/whats-new-in-preview.md
@@ -51,6 +51,18 @@ And if you'd like to know what's new with other Microsoft cloud services, check
- [Microsoft 365 updates](/OfficeUpdates/)
- [How to check Windows release health](/windows/deployment/update/check-release-health)
+## March 2025
+
+### Exchange Web Services usage report
+
+:::image type="content" source="../media/exchange-web-usage-report.png" alt-text="Screenshot showing the line chart for the Exchange web usage report." lightbox="../media/exchange-web-usage-report.png":::
+
+The Microsoft 365 admin center now includes a new Exchange Web Services (EWS) usage report that provides insights into the non-Microsoft (third-party) applications in your tenant that use EWS. The report provides detailed information on the specific actions performed by these applications and their call volumes over a selected period. The report enhances your ability to understand EWS activity prior to EWS deprecation in Microsoft Exchange Online.
+
+The report is available by default in the Microsoft 365 admin center under **Reports** > **Usage** > **Exchange** > **EWS usage**.
+
+To learn more, see [Microsoft 365 Reports in the admin center – EWS usage](/microsoft-365/admin/activity-reports/ews-usage).
+
## February 2025
### Provide admin-initiated feedback for Microsoft 365 Copilot
diff --git a/microsoft-365/archive/archive-manage.md b/microsoft-365/archive/archive-manage.md
index 1ab205ed018..11d677a9c1d 100644
--- a/microsoft-365/archive/archive-manage.md
+++ b/microsoft-365/archive/archive-manage.md
@@ -84,14 +84,22 @@ You can also change the status of an archived site by using the PowerShell cmdle
## Site templates supported
-|Template ID |Template |
-|---------|---------|
-|1 |Document Workspace |
-|4 |Wiki Site |
-|9 |Blog |
-|32 |News Site |
-|64 |Team Site |
-|68 |Communication Site |
+|Template ID |Template |Template name|
+|---------|---------|---------|
+|1|Team site / Document Workspace|STS#0|
+|1|Team site / Document Workspace|STS#1|
+|1|Team site / Document Workspace|STS#2|
+|1|Team site / Document Workspace|STS#3|
+|68|Communication site|SITEPAGEPUBLISHING#0|
+|64|Teams site|GROUP#0|
+|32|News site|SPSNEWS#0|
+|33|News site|SPSNHOME#0|
+|4|Wiki site|WIKI#0|
+|56|Enterprise Wiki|ENTERWIKI#0|
+|7|Document center|BDR#0|
+|14483|Records Center|OFFILE#0|
+|14483|Records Center|OFFILE#1|
+
> [!NOTE]
> OneDrive accounts (site template 21) cannot be archived by admins. Some accounts will be put into archive by the OneDrive service when they are unlicensed for 93 days or more. When the service archives these accounts, admins can reactivate the accounts via PowerShell. [Learn more about unlicensed OneDrive accounts](/SharePoint/unlicensed-onedrive-accounts).
\ No newline at end of file
diff --git a/microsoft-365/archive/archive-setup.md b/microsoft-365/archive/archive-setup.md
index 235eb58ec6f..6c4ccd89542 100644
--- a/microsoft-365/archive/archive-setup.md
+++ b/microsoft-365/archive/archive-setup.md
@@ -44,7 +44,7 @@ The following video demonstrates the steps to help you set up pay-as-you-go bill
### Licensing
-Before you can use Microsoft 365 Archive, you must first link your Azure subscription in [Microsoft Syntex pay-as-you-go](/microsoft-365/syntex/syntex-azure-billing). Microsoft 365 Archive is billed based on the number of gigabytes (GB) archived and number of gigabytes (GB) reactivated. For more information about pricing, see [Pricing model](archive-pricing.md).
+Before you can use Microsoft 365 Archive, you must first link your Azure subscription in [Microsoft Syntex pay-as-you-go](/microsoft-365/syntex/syntex-azure-billing). Microsoft 365 Archive is billed based on the number of gigabytes (GB) archived. For more information about pricing, see [Pricing model](archive-pricing.md).
To set up pay-as-you-go billing, see [Configure Microsoft Syntex for pay-as-you-go billing at Microsoft Syntex billing](/microsoft-365/syntex/syntex-azure-billing).
diff --git a/microsoft-365/archive/index.yml b/microsoft-365/archive/index.yml
index da7b91704d9..b5b8c4edda9 100644
--- a/microsoft-365/archive/index.yml
+++ b/microsoft-365/archive/index.yml
@@ -12,7 +12,7 @@ metadata:
ms.custom: intro-hub-or-landing
author: chuckedmonson #Required; your GitHub user alias, with correct capitalization.
ms.author: chucked #Required; microsoft alias of author; optional team alias.
- ms.date: 04/01/2024 #Required; mm/dd/yyyy format
+ ms.date: 04/01/2025 #Required; mm/dd/yyyy format
ms.localizationpriority: medium
titleSuffix: Microsoft 365 Archive
diff --git a/microsoft-365/backup/backup-faq.md b/microsoft-365/backup/backup-faq.md
index 93283ecc89e..6e696b00233 100644
--- a/microsoft-365/backup/backup-faq.md
+++ b/microsoft-365/backup/backup-faq.md
@@ -5,7 +5,7 @@ author: chuckedmonson
manager: jtremper
audience: admin
ms.reviewer: sreelakshmi
-ms.date: 02/19/2025
+ms.date: 04/01/2025
ms.topic: faq
ms.service: microsoft-365-backup
ms.custom: backup
@@ -94,6 +94,10 @@ For OneDrive, you can restore the OneDrive to the original URL or a new URL. At
For Exchange, if the user account is permanently deleted, Microsoft 365 Backup retains the inactive mailbox for the duration of the backup policy. To recover the inactive mailbox, follow the guidance at [Recover an inactive mailbox](/purview/recover-an-inactive-mailbox) to convert the inactive mailbox to a new, active mailbox. Once the inactive mailbox is recovered, remove the deleted user from the backup policy and then add the new user to the backup policy to access backups from the recovered mailbox.
+#### If I transfer control of the Backup tool from the native first-party Microsoft 365 application to a third-party application built on the Microsoft 365 Backup Storage platform, will I be able to revert control back to the first-party application at a later date?
+
+Currently, you can only transfer control from the first-party Microsoft 365 application to a third-party application. We are actively working on an enhancement to allow transfers from third-party applications back to the first-party application. If you urgently need to transfer control from a third-party application to the first-party application, please file a support ticket.
+
diff --git a/microsoft-365/backup/backup-restore-data.md b/microsoft-365/backup/backup-restore-data.md
index 94263397abe..b8b0ed9735b 100644
--- a/microsoft-365/backup/backup-restore-data.md
+++ b/microsoft-365/backup/backup-restore-data.md
@@ -5,7 +5,7 @@ author: chuckedmonson
manager: jtremper
audience: admin
ms.reviewer: sreelakshmi
-ms.date: 02/19/2025
+ms.date: 03/11/2025
ms.topic: how-to
ms.service: microsoft-365-backup
ms.custom: backup
@@ -141,6 +141,11 @@ Follow these steps to restore data backed up for SharePoint.
# [Exchange](#tab/exchange)
+> [!NOTE]
+> Items moved to the Deleted Items folder won't be restored by Microsoft 365 Backup. Mailbox users can recover these items themselves by moving them back to the Inbox from the Deleted Items folder. Only mailbox items that were changed, deleted to the Recoverable Items folder, or purged can be restored.
+>
+> For more information, see the [Considerations when using restore](#considerations-when-using-restore) section later in this article.
+
Microsoft 365 Backup restores deleted or modified mailbox items from the selected prior point in time. Items that remain unchanged in the primary mailbox are compared to that prior point in time, and new items since that prior point in time aren't restored, reverted, or overwritten. This is true whether an in-place or new-folder restore is conducted and is done to prevent excessive operations that might overload your mailbox and its associated storage allocation.
Follow these steps to restore data backed up for Exchange.
@@ -235,54 +240,57 @@ Microsoft 365 Backup supports the backup and restoration of any site and user ac
## Considerations when using restore
-- Site search is case-sensitive and is a prefix-type search.
-
-- OneDrive accounts and SharePoint sites being restored to a prior point in time aren't locked in a read-only state. Therefore, users might not realize their current edits will be imminently rolled back and lost.
-
-- For restores to a new URL, it might take up to 15 minutes for the destination URL to be displayed in the tool once a SharePoint site or OneDrive account restore to a new URL session completes.
-
-- A OneDrive account or SharePoint site that is under the strict SEC 17a-4(f) hold policy will fail any in-place restores so as to honor that immutability promise. For sites under that type of hold, you have to restore to a new URL or remove the hold. Any other type of preservation hold that doesn't have a strict admin lockout allows an in-place restore. Restoring these types of sites as the preservation hold library will be reverted to the prior point in time. A new URL restore is recommended for that type of site as the cleanest option.
-
-- The restore point frequency dictates the points in time from which you can recover a prior state of your data. Restore points start being generated when you create the backup policy for a given OneDrive account, SharePoint Site, or Exchange Online mailbox. For Exchange Online, restore points are available for 10 minutes for the entire year. For OneDrive and SharePoint, the available restore points are available for 10 minutes for up to 2 weeks prior, and weekly for 2 to 52 weeks prior. Based on the defined and currently invariable backup frequency setting previously described, the following example highlights what is possible.
-
- - Megan, the Backup admin, creates a policy for the SharePoint site "HR Hub" on February 1, 2024, at 8:00 AM PST. At 10:00 AM PST, she has the option of rolling back the state of the site to any 10-minute period between 8:00 AM and 10:00 AM PST.
-
- - On April 1, 2024, she has the option to roll back the site to any 10-minute period in the prior 14 days (that is, any 10-minute period between March 18 and the current date-time). If she wants to choose an earlier prior point in time, she would need to choose March 15, 8, or 1, and so on, back through February 1, or up to 52 weeks if the policy was created at least 52 weeks in the past.
-
- - Megan then adds a user’s mailbox to the policy on February 1, 2024, at 11:00 AM PST. She has the option of restoring modified or deleted items from that user's mailbox to any 10-minute period during the entire retention period.
-
-- Users whose Microsoft Entra ID has been deleted will be displayed as blank lines in the restore picker experience for OneDrive and Exchange Online since those users no longer exist in the environment. Rest assured, their historical backups still exist in the Backup tool, but some [special handling is needed to restore them](backup-faq.md#what-is-the-service-recovery-point-objective).
-
-- Mailbox draft items aren't backed up or restorable.
-
-- For calendar item restore, restoring organizer copy doesn't automatically make attendee copies catch up, it only allows future updates by organizer to work for all users added on the calendar item.
+- OneDrive and Sharepoint
-- To restore a OneDrive account and Exchange mailbox for a user who is deleted from Microsoft Entra ID, use this instruction:
+ - Site search is case-sensitive and is a prefix-type search.
- > [!NOTE]
- > Deleted users appear as "–" in the user interface because the user doesn't exist in the tenancy. However, the backups and associated restore points are retained for the full 365-day retention period from when a given restore point was originally created.
+ - OneDrive accounts and SharePoint sites being restored to a prior point in time aren't locked in a read-only state. Therefore, users might not realize their current edits will be imminently rolled back and lost.
- If the user has been deleted within the past 30 days, the best option is to restore the user based on instructions found at [Restore a user in the Microsoft 365 admin center](/microsoft-365/admin/add-users/restore-user). Once the user is reconstituted, the name reappears in the Backup tool restore experience, and the rest of the experience will work as normal.
+ - For restores to a new URL, it might take up to 15 minutes for the destination URL to be displayed in the tool once a SharePoint site or OneDrive account restore to a new URL session completes.
- For OneDrive, you can restore the OneDrive to the original URL or a new URL. At that time, the OneDrive is in an "orphaned" state. To connect the OneDrive to a user, see [Fix site user ID mismatch in SharePoint or OneDrive](/sharepoint/troubleshoot/sharing-and-permissions/fix-site-user-id-mismatch).
+ - A OneDrive account or SharePoint site that is under the strict SEC 17a-4(f) hold policy will fail any in-place restores so as to honor that immutability promise. For sites under that type of hold, you have to restore to a new URL or remove the hold. Any other type of preservation hold that doesn't have a strict admin lockout allows an in-place restore. Restoring these types of sites as the preservation hold library will be reverted to the prior point in time. A new URL restore is recommended for that type of site as the cleanest option.
+
+ - OneDrive accounts and SharePoint sites that undergo the following types of changes won't be undoable via restore: tenant rename, tenant move, and site URL change.
+
+ - OneDrive accounts and SharePoint sites being restored to a new URL have a read-only lock on that new URL. The [Global Administrator](/entra/identity/role-based-access-control/permissions-reference#global-administrator) can download documents or remove the read-only lock manually.
- For Exchange, if the user account is currently or permanently deleted, Microsoft 365 Backup retains the inactive mailbox for the duration of the backup policy. To recover and restore the inactive mailbox, see the following guidance:
+ [!INCLUDE [global-administrator-note](../includes/global-administrator-note.md)]
- - [Recover an inactive mailbox](/purview/recover-an-inactive-mailbox)
- - [Restore an inactive mailbox](/purview/restore-an-inactive-mailbox)
+- Exchange
- Once an inactive mailbox is recovered and restored to a new mailbox, the new mailbox must be added to the backup policy if desired.
+ - Mailbox draft items aren't backed up or restorable.
-- OneDrive accounts and SharePoint sites that undergo the following types of changes won't be undoable via restore: tenant rename, tenant move, and site URL change.
+ - For calendar item restore, restoring organizer copy doesn't automatically make attendee copies catch up, it only allows future updates by organizer to work for all users added on the calendar item.
-- Only mailbox items that were changed, deleted to the Recoverable Items folder, or purged can be restored. Learn more about the Recoverable Items folder in Exchange Online.
+ - Only mailbox items that were changed, deleted to the Recoverable Items folder, or purged can be restored. Learn more about the Recoverable Items folder in Exchange Online.
-- Items moved to Deleted Items folder won't be restored by Microsoft 365 Backup. You can recover them by moving them back to the Inbox from the Deleted Items folder.
+ - Items moved to the Deleted Items folder won't be restored by Microsoft 365 Backup. Mailbox users can recover these items themselves by moving them back to the Inbox from the Deleted Items folder.
-- When choosing to "Replace mailbox items with backups," items are restored to the original location in the user's Inbox. The only exception to this is if an item was edited while in the Deleted Items folder, as this creates a new version of an item where its original location is the Deleted Items folder.
+ - When choosing to "Replace mailbox items with backups," items are restored to the original location in the user's Inbox. The only exception to this is if an item was edited while in the Deleted Items folder, as this creates a new version of an item where its original location is the Deleted Items folder.
+
+- All
-- OneDrive accounts and SharePoint sites being restored to a new URL have a read-only lock on that new URL. The [Global Administrator](/entra/identity/role-based-access-control/permissions-reference#global-administrator) can download documents or remove the read-only lock manually.
+ - Abusive restore actions aren't permitted. You should limit restores for testing purposes to no more than twice a month per protection unit. Restores for real recovery purposes aren't limited.
- [!INCLUDE [global-administrator-note](../includes/global-administrator-note.md)]
+ - The restore point frequency dictates the points in time from which you can recover a prior state of your data. Restore points start being generated when you create the backup policy for a given OneDrive account, SharePoint Site, or Exchange Online mailbox. For Exchange Online, restore points are available for 10 minutes for the entire year. For OneDrive and SharePoint, the available restore points are available for 10 minutes for up to 2 weeks prior, and weekly for 2 to 52 weeks prior. Based on the defined and currently invariable backup frequency setting previously described, the following example highlights what is possible.
+
+ - Megan, the Backup admin, creates a policy for the SharePoint site "HR Hub" on February 1, 2024, at 8:00 AM PST. At 10:00 AM PST, Megan has the option of rolling back the state of the site to any 10-minute period between 8:00 AM and 10:00 AM PST.
+
+ - On April 1, 2024, Megan has the option to roll back the site to any 10-minute period in the prior 14 days (that is, any 10-minute period between March 18 and the current date-time). If Megan wants to choose an earlier prior point in time, she would need to choose March 15, 8, or 1, and so on, back through February 1, or up to 52 weeks if the policy was created at least 52 weeks in the past.
+
+ - Megan then adds a user’s mailbox to the policy on February 1, 2024, at 11:00 AM PST. Megan has the option of restoring modified or deleted items from that user's mailbox to any 10-minute period during the entire retention period.
+
+ - Users whose Microsoft Entra ID has been deleted will be displayed as blank lines in the restore picker experience for OneDrive and Exchange Online since those users no longer exist in the environment. Rest assured, their historical backups still exist in the Backup tool, but some [special handling is needed to restore them](backup-faq.md#what-is-the-service-recovery-point-objective).
+
+ - To restore a OneDrive account and Exchange mailbox for a user who is deleted from Microsoft Entra ID, use this instruction:
+
+ > [!NOTE]
+ > Deleted users appear as "–" in the user interface because the user doesn't exist in the tenancy. However, the backups and associated restore points are retained for the full 365-day retention period from when a given restore point was originally created.
+
+ If the user has been deleted within the past 30 days, the best option is to restore the user based on instructions found at [Restore a user in the Microsoft 365 admin center](/microsoft-365/admin/add-users/restore-user). Once the user is reconstituted, the name reappears in the Backup tool restore experience, and the rest of the experience will work as normal.
+
+ For OneDrive, you can restore the OneDrive to the original URL or a new URL. At that time, the OneDrive is in an "orphaned" state. To connect the OneDrive to a user, see [Fix site user ID mismatch in SharePoint or OneDrive](/sharepoint/troubleshoot/sharing-and-permissions/fix-site-user-id-mismatch).
-- Abusive restore actions aren't permitted. You should limit restores for testing purposes to no more than twice a month per protection unit. Restores for real recovery purposes aren't limited.
\ No newline at end of file
+ For Exchange, if the user account is permanently deleted, Microsoft 365 Backup retains the inactive mailbox for the duration of the backup policy. To recover the inactive mailbox, follow the guidance at [Recover an inactive mailbox](/purview/recover-an-inactive-mailbox) to convert the inactive mailbox to a new, active mailbox. Once the inactive mailbox is recovered, remove the deleted user from the backup policy and then add the new user to the backup policy to access backups from the recovered mailbox.
+
+
diff --git a/microsoft-365/backup/backup-setup.md b/microsoft-365/backup/backup-setup.md
index 36aef5b6f60..be336de7f26 100644
--- a/microsoft-365/backup/backup-setup.md
+++ b/microsoft-365/backup/backup-setup.md
@@ -5,7 +5,7 @@ author: chuckedmonson
manager: jtremper
audience: admin
ms.reviewer: sreelakshmi
-ms.date: 02/19/2025
+ms.date: 04/07/2025
ms.topic: install-set-up-deploy
ms.service: microsoft-365-backup
ms.custom: backup
@@ -18,9 +18,18 @@ description: Learn how to turn on Microsoft 365 Backup, set up pay-as-you-go bil
# Set up Microsoft 365 Backup
+> [!TIP]
+> **Already have an Azure subscription and the [necessary admin role](#admin-roles-and-backup-management-privileges)?** Follow these three steps to quickly set up Microsoft 365 Backup in the admin center.
+ If you're planning to use the Microsoft Authenticator app for multi-factor authentication (MFA), we recommend setting it up with a desktop companion device (such as a laptop or PC). This makes onboarding easier by allowing you to scan QR codes and follow setup instructions more efficiently.
+
+
+
#### Passwordless authentication
To further simplify access for your frontline workforce, you can use passwordless authentication methods so that workers don't need to remember or enter their passwords. Passwordless authentication methods remove the use of a password at sign-in and replaces it with:
diff --git a/microsoft-365/frontline/flw-licensing-options.md b/microsoft-365/frontline/flw-licensing-options.md
index 2d154510a80..6370012f67a 100644
--- a/microsoft-365/frontline/flw-licensing-options.md
+++ b/microsoft-365/frontline/flw-licensing-options.md
@@ -1,7 +1,7 @@
---
title: Understand frontline worker user types and licensing
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: arnavgupta
ms.topic: concept-article
diff --git a/microsoft-365/frontline/flw-onboarding-training.md b/microsoft-365/frontline/flw-onboarding-training.md
index 294fcc15473..9999900c322 100644
--- a/microsoft-365/frontline/flw-onboarding-training.md
+++ b/microsoft-365/frontline/flw-onboarding-training.md
@@ -3,7 +3,7 @@ title: Provide initial and ongoing training to help onboard your frontline worke
description: Get an overview of how to plan, build, and launch your frontline worker onboarding experience.
ms.topic: article
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/flw-overview.md b/microsoft-365/frontline/flw-overview.md
index a1c14cb6827..2b55cc558c7 100644
--- a/microsoft-365/frontline/flw-overview.md
+++ b/microsoft-365/frontline/flw-overview.md
@@ -3,7 +3,7 @@ title: Get started with Microsoft 365 for frontline workers
description: Learn how you can use Microsoft 365 and Teams to empower the frontline workers in your organization.
search.appverid: MET150
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: arnavgupta
audience: admin
diff --git a/microsoft-365/frontline/flw-pilot.md b/microsoft-365/frontline/flw-pilot.md
index f8168655f87..75a3f9f8852 100644
--- a/microsoft-365/frontline/flw-pilot.md
+++ b/microsoft-365/frontline/flw-pilot.md
@@ -2,7 +2,7 @@
title: Start with a pilot deployment of Microsoft 365 for frontline workers
description: Learn how to run a pilot deployment for the frontline workers in your organization.
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.topic: install-set-up-deploy
audience: admin
diff --git a/microsoft-365/frontline/flw-scenario-posters.md b/microsoft-365/frontline/flw-scenario-posters.md
index 57f7f0ea19a..aa0ab162085 100644
--- a/microsoft-365/frontline/flw-scenario-posters.md
+++ b/microsoft-365/frontline/flw-scenario-posters.md
@@ -3,7 +3,7 @@ title: Microsoft 365 for frontline workers - scenario posters
description: Download these PDF posters to learn about scenarios you can easily implement for the frontline workers in your organization.
search.appverid: MET150
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
ms.topic: solution-overview
diff --git a/microsoft-365/frontline/flw-setup-microsoft-365.md b/microsoft-365/frontline/flw-setup-microsoft-365.md
index 6b0b859bc0a..db5dbee095a 100644
--- a/microsoft-365/frontline/flw-setup-microsoft-365.md
+++ b/microsoft-365/frontline/flw-setup-microsoft-365.md
@@ -1,7 +1,7 @@
---
title: Set up Microsoft 365 for frontline workers
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer:
ms.topic: how-to
diff --git a/microsoft-365/frontline/flw-shared-devices.md b/microsoft-365/frontline/flw-shared-devices.md
index 3a65d983dcf..cb84bc9d6b7 100644
--- a/microsoft-365/frontline/flw-shared-devices.md
+++ b/microsoft-365/frontline/flw-shared-devices.md
@@ -1,7 +1,7 @@
---
title: Manage shared devices for frontline workers
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: aaglick
ms.topic: article
diff --git a/microsoft-365/frontline/flw-team-collaboration.md b/microsoft-365/frontline/flw-team-collaboration.md
index efbb8d7e825..329b772bafe 100644
--- a/microsoft-365/frontline/flw-team-collaboration.md
+++ b/microsoft-365/frontline/flw-team-collaboration.md
@@ -3,7 +3,7 @@ title: Frontline team collaboration
description: Learn how your frontline teams can communicate and collaborate effectively within or across locations.
ms.topic: solution-overview
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/flw-wellbeing-engagement.md b/microsoft-365/frontline/flw-wellbeing-engagement.md
index ee3389b4779..7192bb460cc 100644
--- a/microsoft-365/frontline/flw-wellbeing-engagement.md
+++ b/microsoft-365/frontline/flw-wellbeing-engagement.md
@@ -3,7 +3,7 @@ title: Engage your frontline employees and focus on wellbeing
description: Learn how to use Viva Connections, SharePoint, Teams, and the Praise app to increase frontline worker wellbeing and engagement.
ms.topic: solution-overview
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/flw-working-time.md b/microsoft-365/frontline/flw-working-time.md
index 107e3e61594..bba8736982d 100644
--- a/microsoft-365/frontline/flw-working-time.md
+++ b/microsoft-365/frontline/flw-working-time.md
@@ -1,7 +1,7 @@
---
title: Limit access to Microsoft Teams when frontline workers are off shift
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: aaglick
ms.topic: how-to
diff --git a/microsoft-365/frontline/frontline-team-options.md b/microsoft-365/frontline/frontline-team-options.md
index f46024cc9f3..583c3625d07 100644
--- a/microsoft-365/frontline/frontline-team-options.md
+++ b/microsoft-365/frontline/frontline-team-options.md
@@ -1,7 +1,7 @@
---
title: How to find the best frontline team solution for your organization
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: arnavgupta
ms.topic: how-to
diff --git a/microsoft-365/frontline/frontline-usage-report.md b/microsoft-365/frontline/frontline-usage-report.md
index 67579173319..874620d481e 100644
--- a/microsoft-365/frontline/frontline-usage-report.md
+++ b/microsoft-365/frontline/frontline-usage-report.md
@@ -1,7 +1,7 @@
---
title: Microsoft Teams frontline usage report
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: Admin
ms.topic: article
diff --git a/microsoft-365/frontline/hc-delegates.md b/microsoft-365/frontline/hc-delegates.md
index 565ab57c407..99131d32a34 100644
--- a/microsoft-365/frontline/hc-delegates.md
+++ b/microsoft-365/frontline/hc-delegates.md
@@ -1,7 +1,7 @@
---
title: Use a Teams status message to assign a delegate
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: ITPro
ms.topic: how-to
diff --git a/microsoft-365/frontline/index.yml b/microsoft-365/frontline/index.yml
index 9478129ec80..133af9af884 100644
--- a/microsoft-365/frontline/index.yml
+++ b/microsoft-365/frontline/index.yml
@@ -11,7 +11,7 @@ metadata:
ms.service: microsoft-365-frontline #Required; service per approved list. service slug assigned to your service by ACOM.
ms.topic: hub-page # Required
author: lana-chin #Required; your GitHub user alias, with correct capitalization.
- ms.author: v-chinlana #Required; microsoft alias of author; optional team alias.
+ ms.author: jtremper #Required; microsoft alias of author; optional team alias.
manager: jtremper
audience: Admin
diff --git a/microsoft-365/frontline/manage-shifts-permissions-frontline-managers.md b/microsoft-365/frontline/manage-shifts-permissions-frontline-managers.md
index a7f37e96b3c..db02fb8e593 100644
--- a/microsoft-365/frontline/manage-shifts-permissions-frontline-managers.md
+++ b/microsoft-365/frontline/manage-shifts-permissions-frontline-managers.md
@@ -1,7 +1,7 @@
---
title: Manage Shifts permissions for frontline managers
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.topic: how-to
audience: admin
diff --git a/microsoft-365/frontline/messaging-policies-hc.md b/microsoft-365/frontline/messaging-policies-hc.md
index 073f839621d..b6d645a55f6 100644
--- a/microsoft-365/frontline/messaging-policies-hc.md
+++ b/microsoft-365/frontline/messaging-policies-hc.md
@@ -1,7 +1,7 @@
---
title: Messaging policy settings for healthcare organizations using Microsoft Teams
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: ITPro
ms.topic: article
diff --git a/microsoft-365/frontline/pin-teams-apps-based-on-license.md b/microsoft-365/frontline/pin-teams-apps-based-on-license.md
index 060a99d3e44..223f31814ca 100644
--- a/microsoft-365/frontline/pin-teams-apps-based-on-license.md
+++ b/microsoft-365/frontline/pin-teams-apps-based-on-license.md
@@ -1,7 +1,7 @@
---
title: Tailor Teams apps for your frontline workers
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: arnavgupta
ms.topic: how-to
diff --git a/microsoft-365/frontline/set-up-open-shifts-across-locations.md b/microsoft-365/frontline/set-up-open-shifts-across-locations.md
index 808dbd1735b..8cac2750ff9 100644
--- a/microsoft-365/frontline/set-up-open-shifts-across-locations.md
+++ b/microsoft-365/frontline/set-up-open-shifts-across-locations.md
@@ -1,7 +1,7 @@
---
title: Set up open shifts across locations in Shifts for your frontline
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: install-set-up-deploy
diff --git a/microsoft-365/frontline/set-up-targeted-communications.md b/microsoft-365/frontline/set-up-targeted-communications.md
index 1af80326f8e..270ca310426 100644
--- a/microsoft-365/frontline/set-up-targeted-communications.md
+++ b/microsoft-365/frontline/set-up-targeted-communications.md
@@ -1,7 +1,7 @@
---
title: Set up targeted communications for your frontline
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: yinchang, aaglick
ms.topic: install-set-up-deploy
diff --git a/microsoft-365/frontline/shifts-connector-blue-yonder-admin-center-manage.md b/microsoft-365/frontline/shifts-connector-blue-yonder-admin-center-manage.md
index ef7bd306cde..404ad8da525 100644
--- a/microsoft-365/frontline/shifts-connector-blue-yonder-admin-center-manage.md
+++ b/microsoft-365/frontline/shifts-connector-blue-yonder-admin-center-manage.md
@@ -1,7 +1,7 @@
---
title: Use the Microsoft 365 admin center to manage your Shifts connection to Blue Yonder Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-blue-yonder-known-issues.md b/microsoft-365/frontline/shifts-connector-blue-yonder-known-issues.md
index 303ce8b5e0a..f98dcc128ad 100644
--- a/microsoft-365/frontline/shifts-connector-blue-yonder-known-issues.md
+++ b/microsoft-365/frontline/shifts-connector-blue-yonder-known-issues.md
@@ -1,7 +1,7 @@
---
title: Teams Shifts connector for Blue Yonder known issues
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: troubleshooting
diff --git a/microsoft-365/frontline/shifts-connector-blue-yonder-powershell-setup.md b/microsoft-365/frontline/shifts-connector-blue-yonder-powershell-setup.md
index 7c719d7faa5..e3535593fa3 100644
--- a/microsoft-365/frontline/shifts-connector-blue-yonder-powershell-setup.md
+++ b/microsoft-365/frontline/shifts-connector-blue-yonder-powershell-setup.md
@@ -1,7 +1,7 @@
---
title: Use PowerShell to connect Shifts to Blue Yonder Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-powershell-manage.md b/microsoft-365/frontline/shifts-connector-powershell-manage.md
index 6b5040bf4b6..b5ed5a0844e 100644
--- a/microsoft-365/frontline/shifts-connector-powershell-manage.md
+++ b/microsoft-365/frontline/shifts-connector-powershell-manage.md
@@ -1,7 +1,7 @@
---
title: Use PowerShell to manage your Shifts connection to Blue Yonder Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-ukg-admin-center-manage.md b/microsoft-365/frontline/shifts-connector-ukg-admin-center-manage.md
index 11661b528a2..777a3ac485c 100644
--- a/microsoft-365/frontline/shifts-connector-ukg-admin-center-manage.md
+++ b/microsoft-365/frontline/shifts-connector-ukg-admin-center-manage.md
@@ -1,7 +1,7 @@
---
title: Use the Microsoft 365 admin center to manage your Shifts connection to UKG Pro Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-ukg-known-issues.md b/microsoft-365/frontline/shifts-connector-ukg-known-issues.md
index b9e9ebc4827..84af47a3849 100644
--- a/microsoft-365/frontline/shifts-connector-ukg-known-issues.md
+++ b/microsoft-365/frontline/shifts-connector-ukg-known-issues.md
@@ -1,7 +1,7 @@
---
title: Team Shifts connector for UKG Pro Workforce Management known issues
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: troubleshooting
diff --git a/microsoft-365/frontline/shifts-connector-ukg-powershell-manage.md b/microsoft-365/frontline/shifts-connector-ukg-powershell-manage.md
index 2bc410599c9..7e31e162e4a 100644
--- a/microsoft-365/frontline/shifts-connector-ukg-powershell-manage.md
+++ b/microsoft-365/frontline/shifts-connector-ukg-powershell-manage.md
@@ -1,7 +1,7 @@
---
title: Use PowerShell to manage your Shifts connection to UKG Pro Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-ukg-powershell-setup.md b/microsoft-365/frontline/shifts-connector-ukg-powershell-setup.md
index 266b684ad85..ffd150fee69 100644
--- a/microsoft-365/frontline/shifts-connector-ukg-powershell-setup.md
+++ b/microsoft-365/frontline/shifts-connector-ukg-powershell-setup.md
@@ -1,7 +1,7 @@
---
title: Use PowerShell to connect Shifts to UKG Pro Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-wizard-ukg.md b/microsoft-365/frontline/shifts-connector-wizard-ukg.md
index 8a28e1f66f9..ca90160266c 100644
--- a/microsoft-365/frontline/shifts-connector-wizard-ukg.md
+++ b/microsoft-365/frontline/shifts-connector-wizard-ukg.md
@@ -1,7 +1,7 @@
---
title: Use the Shifts connector wizard to connect Shifts to UKG Pro Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connector-wizard.md b/microsoft-365/frontline/shifts-connector-wizard.md
index fbf2620a6a3..69e4ce9b90b 100644
--- a/microsoft-365/frontline/shifts-connector-wizard.md
+++ b/microsoft-365/frontline/shifts-connector-wizard.md
@@ -1,7 +1,7 @@
---
title: Use the Shifts connector wizard to connect Shifts to Blue Yonder Workforce Management
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: how-to
diff --git a/microsoft-365/frontline/shifts-connectors.md b/microsoft-365/frontline/shifts-connectors.md
index fc35c4310f2..878dbcb2221 100644
--- a/microsoft-365/frontline/shifts-connectors.md
+++ b/microsoft-365/frontline/shifts-connectors.md
@@ -1,7 +1,7 @@
---
title: Shifts connectors
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.topic: article
audience: admin
diff --git a/microsoft-365/frontline/shifts-custom-wfm-integration.md b/microsoft-365/frontline/shifts-custom-wfm-integration.md
index ff60d980273..355c1adda4a 100644
--- a/microsoft-365/frontline/shifts-custom-wfm-integration.md
+++ b/microsoft-365/frontline/shifts-custom-wfm-integration.md
@@ -1,7 +1,7 @@
---
title: Create a custom integration to sync your workforce management system with Shifts
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: harrywong
ms.topic: integration
diff --git a/microsoft-365/frontline/shifts-for-teams-landing-page.md b/microsoft-365/frontline/shifts-for-teams-landing-page.md
index 4dc9d7d2d89..5c76de6820a 100644
--- a/microsoft-365/frontline/shifts-for-teams-landing-page.md
+++ b/microsoft-365/frontline/shifts-for-teams-landing-page.md
@@ -3,7 +3,7 @@ title: Shifts for your frontline organization
description: Get the admin guidance you need to deploy and manage Shifts, the schedule management tool, in Microsoft Teams.
ms.topic: article
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
ms.reviewer: harrywong
diff --git a/microsoft-365/frontline/shifts-frontline-manager-worker-roles.md b/microsoft-365/frontline/shifts-frontline-manager-worker-roles.md
index 2e65ddddb87..44f2a37c224 100644
--- a/microsoft-365/frontline/shifts-frontline-manager-worker-roles.md
+++ b/microsoft-365/frontline/shifts-frontline-manager-worker-roles.md
@@ -1,7 +1,7 @@
---
title: Use roles to define your frontline managers and workers in Shifts
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.topic: how-to
audience: admin
diff --git a/microsoft-365/frontline/simplify-business-processes.md b/microsoft-365/frontline/simplify-business-processes.md
index 1e3ce826ced..1f2d17d53f0 100644
--- a/microsoft-365/frontline/simplify-business-processes.md
+++ b/microsoft-365/frontline/simplify-business-processes.md
@@ -3,7 +3,7 @@ title: Simplify business processes for frontline teams
description: Learn how your frontline workforce can simplify their business processes with Microsoft Teams.
ms.topic: solution-overview
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/sms-notifications-usage-report.md b/microsoft-365/frontline/sms-notifications-usage-report.md
index 70ae43a602b..879f6bd8057 100644
--- a/microsoft-365/frontline/sms-notifications-usage-report.md
+++ b/microsoft-365/frontline/sms-notifications-usage-report.md
@@ -1,7 +1,7 @@
---
title: Microsoft Teams SMS notifications usage report
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: Admin
ms.topic: article
diff --git a/microsoft-365/frontline/switch-from-enterprise-to-frontline.md b/microsoft-365/frontline/switch-from-enterprise-to-frontline.md
index df9bc6cd3be..c3f703a6e17 100644
--- a/microsoft-365/frontline/switch-from-enterprise-to-frontline.md
+++ b/microsoft-365/frontline/switch-from-enterprise-to-frontline.md
@@ -1,7 +1,7 @@
---
title: Changing from a Microsoft 365 E plan to a Microsoft 365 F plan
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.topic: article
audience: admin
diff --git a/microsoft-365/frontline/teams-for-financial-services.md b/microsoft-365/frontline/teams-for-financial-services.md
index 9f6e7acb20b..8ee16a33f56 100644
--- a/microsoft-365/frontline/teams-for-financial-services.md
+++ b/microsoft-365/frontline/teams-for-financial-services.md
@@ -3,7 +3,7 @@ title: Microsoft 365 for Financial Services
description: Learn about the admin resources available to manage and get the most out of Teams for your frontline financial services workforce.
ms.topic: solution-overview
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/teams-for-manufacturing.md b/microsoft-365/frontline/teams-for-manufacturing.md
index cd121a6c69c..588d2a540a5 100644
--- a/microsoft-365/frontline/teams-for-manufacturing.md
+++ b/microsoft-365/frontline/teams-for-manufacturing.md
@@ -3,7 +3,7 @@ title: Microsoft 365 for Manufacturing
description: Learn about the admin resources available to manage and get the most out of Teams for your frontline manufacturing workforce.
ms.topic: solution-overview
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/teams-for-retail-landing-page.md b/microsoft-365/frontline/teams-for-retail-landing-page.md
index 11a5caba523..3b1c4227cef 100644
--- a/microsoft-365/frontline/teams-for-retail-landing-page.md
+++ b/microsoft-365/frontline/teams-for-retail-landing-page.md
@@ -3,7 +3,7 @@ title: Microsoft 365 for retail organizations
description: Learn about the admin resources available to manage and get the most out of Teams for your retail stores and workforce.
ms.topic: solution-overview
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: admin
f1.keywords:
diff --git a/microsoft-365/frontline/teams-in-hc.md b/microsoft-365/frontline/teams-in-hc.md
index 6525664732d..4f516d7c809 100644
--- a/microsoft-365/frontline/teams-in-hc.md
+++ b/microsoft-365/frontline/teams-in-hc.md
@@ -1,7 +1,7 @@
---
title: Get started with Microsoft 365 for healthcare organizations
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: ITPro
ms.topic: solution-overview
diff --git a/microsoft-365/frontline/virtual-appointments-app.md b/microsoft-365/frontline/virtual-appointments-app.md
index 6be58488132..adcb27fcf5c 100644
--- a/microsoft-365/frontline/virtual-appointments-app.md
+++ b/microsoft-365/frontline/virtual-appointments-app.md
@@ -1,7 +1,7 @@
---
title: Use the Virtual Appointments app in Microsoft Teams
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: ITPro
ms.topic: how-to
diff --git a/microsoft-365/frontline/virtual-appointments-call-quality.md b/microsoft-365/frontline/virtual-appointments-call-quality.md
index 6d812d99012..432fc760dbd 100644
--- a/microsoft-365/frontline/virtual-appointments-call-quality.md
+++ b/microsoft-365/frontline/virtual-appointments-call-quality.md
@@ -1,7 +1,7 @@
---
title: Microsoft Teams Virtual Appointments Call Quality Dashboard
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: Admin
ms.topic: article
diff --git a/microsoft-365/frontline/virtual-appointments-usage-report.md b/microsoft-365/frontline/virtual-appointments-usage-report.md
index 100a414e0dd..76f982fc12b 100644
--- a/microsoft-365/frontline/virtual-appointments-usage-report.md
+++ b/microsoft-365/frontline/virtual-appointments-usage-report.md
@@ -1,7 +1,7 @@
---
title: Microsoft Teams Virtual Appointments usage report
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
audience: Admin
ms.topic: article
diff --git a/microsoft-365/frontline/virtual-appointments.md b/microsoft-365/frontline/virtual-appointments.md
index 653e243dcd7..4ce3e2e0c19 100644
--- a/microsoft-365/frontline/virtual-appointments.md
+++ b/microsoft-365/frontline/virtual-appointments.md
@@ -1,7 +1,7 @@
---
title: Virtual Appointments with Microsoft Teams
author: lana-chin
-ms.author: v-chinlana
+ms.author: jtremper
manager: jtremper
ms.reviewer: revathim
ms.topic: solution-overview
diff --git a/microsoft-365/includes/office-365-u.s.-government-dod-endpoints.md b/microsoft-365/includes/office-365-u.s.-government-dod-endpoints.md
index 0d57353310c..958c676506e 100644
--- a/microsoft-365/includes/office-365-u.s.-government-dod-endpoints.md
+++ b/microsoft-365/includes/office-365-u.s.-government-dod-endpoints.md
@@ -1,7 +1,7 @@
-
-
+
+
## Exchange Online
@@ -10,7 +10,7 @@ ID | Category | ER | Addresses | Ports
1 | Optimize Required | Yes | `outlook-dod.office365.us, webmail.apps.mil` `20.35.192.0/20, 40.66.24.0/21, 2001:489a:2200:500::/56, 2001:489a:2200:700::/56` | **TCP:** 443, 80
4 | Default Required | Yes | `outlook-dod.office365.us, webmail.apps.mil` | **TCP:** 143, 25, 587, 993, 995
5 | Default Required | Yes | `attachments-dod.office365-net.us, autodiscover-s-dod.office365.us, autodiscover..mail.onmicrosoft.com, autodiscover..mail.onmicrosoft.us, autodiscover..onmicrosoft.com, autodiscover..onmicrosoft.us` | **TCP:** 443, 80
-6 | Allow Required | Yes | `*.protection.apps.mil, *.protection.office365.us` `23.103.191.0/24, 23.103.199.0/25, 23.103.204.0/22, 2001:489a:2202::/62, 2001:489a:2202:8::/62, 2001:489a:2202:2000::/63` | **TCP:** 25, 443
+6 | Allow Required | Yes | `*.protection.apps.mil, *.protection.office365.us, *.usgovcloud-mx.microsoft` `23.103.191.0/24, 23.103.199.0/25, 23.103.204.0/22, 2001:489a:2202::/62, 2001:489a:2202:8::/62, 2001:489a:2202:2000::/63` | **TCP:** 25, 443
## SharePoint Online and OneDrive for Business
@@ -33,7 +33,7 @@ ID | Category | ER | Addresses | Ports
ID | Category | ER | Addresses | Ports
-- | ------------------- | --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------
11 | Allow Required | Yes | `*.dod.online.office365.us` `52.127.80.0/23, 2001:489a:2208:8000::/49` | **TCP:** 443
-12 | Default Required | No | `*.apps.mil, *.office365.us` | **TCP:** 443, 80
+12 | Default Required | No | `*.apps.mil, *.office365.us, *.usgovcloud-static.microsoft, *.usgovcloud-usercontent.microsoft, *.usgovcloud.microsoft` | **TCP:** 443, 80
13 | Allow Required | Yes | `*.auth.microsoft.us, *.gov.us.microsoftonline.com, dod-graph.microsoft.us, graph.microsoftazure.us, login.microsoftonline.us` `20.140.232.0/23, 52.126.194.0/23, 2001:489a:3500::/50` | **TCP:** 443
14 | Default Required | No | `*.msauth.net, *.msauthimages.us, *.msftauth.net, *.msftauthimages.us, clientconfig.microsoftonline-p.net, graph.windows.net, login-us.microsoftonline.com, login.microsoftonline-p.com, login.microsoftonline.com, login.windows.net, loginex.microsoftonline.com, mscrl.microsoft.com, nexus.microsoftonline-p.com, secure.aadcdn.microsoftonline-p.com` | **TCP:** 443
15 | Allow Required | Yes | `portal.apps.mil, reports.apps.mil, webshell.dodsuite.office365.us, www.ohome.apps.mil` `52.127.72.42/32, 52.127.76.42/32, 52.180.251.166/32, 52.181.24.112/32, 52.181.160.113/32, 52.182.24.200/32, 52.182.54.237/32` | **TCP:** 443
diff --git a/microsoft-365/includes/office-365-u.s.-government-gcc-high-endpoints.md b/microsoft-365/includes/office-365-u.s.-government-gcc-high-endpoints.md
index 6ed3378a84e..c59d0ebe6d8 100644
--- a/microsoft-365/includes/office-365-u.s.-government-gcc-high-endpoints.md
+++ b/microsoft-365/includes/office-365-u.s.-government-gcc-high-endpoints.md
@@ -1,16 +1,16 @@
-
-
+
+
## Exchange Online
ID | Category | ER | Addresses | Ports
--- | -------------------- | --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------
+-- | -------------------- | --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------
1 | Optimize Required | Yes | `outlook.office365.us` `20.35.208.0/20, 20.35.240.0/21, 40.66.16.0/21, 2001:489a:2200:100::/56, 2001:489a:2200:400::/56, 2001:489a:2200:600::/56` | **TCP:** 443, 80
4 | Default Required | Yes | `attachments.office365-net.us, autodiscover-s.office365.us, autodiscover..mail.onmicrosoft.com, autodiscover..mail.onmicrosoft.us, autodiscover..onmicrosoft.com, autodiscover..onmicrosoft.us` | **TCP:** 443, 80
5 | Default Required | Yes | `outlook.office365.us` | **TCP:** 143, 25, 587, 993, 995
-6 | Allow Required | Yes | `*.manage.office365.us, *.protection.office365.us, *.scc.office365.us, manage.office365.us, scc.office365.us` `23.103.191.0/24, 23.103.199.128/25, 23.103.208.0/22, 52.227.182.149/32, 52.238.74.212/32, 52.244.65.13/32, 2001:489a:2202:4::/62, 2001:489a:2202:c::/62, 2001:489a:2202:2000::/63` | **TCP:** 25, 443
+6 | Allow Required | Yes | `*.manage.office365.us, *.protection.office365.us, *.scc.office365.us, *.usgovcloud-mx.microsoft, manage.office365.us, scc.office365.us` `23.103.191.0/24, 23.103.199.128/25, 23.103.208.0/22, 52.227.182.149/32, 52.238.74.212/32, 52.244.65.13/32, 2001:489a:2202:4::/62, 2001:489a:2202:c::/62, 2001:489a:2202:2000::/63` | **TCP:** 25, 443
## SharePoint Online and OneDrive for Business
@@ -40,7 +40,7 @@ ID | Category | ER | Addresses | Ports
17 | Allow Required | Yes | `*.osi.office365.us, gcchigh.loki.office365.us, tasks.office365.us` `52.127.240.0/20, 2001:489a:2206::/48` | **TCP:** 443
18 | Default Required | No | `*.office.delivery.microsoft.com, activation.sls.microsoft.com, crl.microsoft.com, go.microsoft.com, insertmedia.bing.office.net, mrodevicemgr.officeapps.live.com, ocsa.officeapps.live.com, ocsredir.officeapps.live.com, ocws.officeapps.live.com, office15client.microsoft.com, officecdn.microsoft.com, officecdn.microsoft.com.edgesuite.net, officepreviewredir.microsoft.com, officeredir.microsoft.com, ols.officeapps.live.com, r.office.microsoft.com` | **TCP:** 443, 80
19 | Default Required | No | `cdn.odc.officeapps.live.com, odc.officeapps.live.com, officeclient.microsoft.com` | **TCP:** 443, 80
-23 | Default Required | No | `*.office365.us` | **TCP:** 443, 80
+23 | Default Required | No | `*.office365.us, *.usgovcloud-static.microsoft, *.usgovcloud-usercontent.microsoft, *.usgovcloud.microsoft` | **TCP:** 443, 80
24 | Default Required | No | `lpcres.delve.office.com` | **TCP:** 443
25 | Default Required | No | `*.cdn.office.net` | **TCP:** 443, 80
26 | Allow Required | Yes | `*.security.microsoft.us, compliance.microsoft.us, purview.microsoft.us, scc.office365.us, security.microsoft.us` `20.158.112.0/21, 52.127.240.0/20, 2001:489a:2209::/49` | **TCP:** 443, 80
diff --git a/microsoft-365/includes/office-365-worldwide-endpoints.md b/microsoft-365/includes/office-365-worldwide-endpoints.md
index 0dbb6bee35e..af913dc3d34 100644
--- a/microsoft-365/includes/office-365-worldwide-endpoints.md
+++ b/microsoft-365/includes/office-365-worldwide-endpoints.md
@@ -1,7 +1,7 @@
-
-
+
+
## Exchange Online
@@ -28,9 +28,9 @@ ID | Category | ER | Addresses | Ports
## Microsoft Teams
ID | Category | ER | Addresses | Ports
---- | ------------------------------------------------------------------------------------------------------------- | --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------
+--- | ------------------------------------------------------------------------------------------------------------- | --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------
11 | Optimize Required | Yes | `52.112.0.0/14, 52.122.0.0/15, 2603:1063::/38` | **UDP:** 3478, 3479, 3480, 3481
-12 | Allow Required | Yes | `*.lync.com, *.teams.cloud.microsoft, *.teams.microsoft.com, teams.cloud.microsoft, teams.microsoft.com` `52.112.0.0/14, 52.122.0.0/15, 52.238.119.141/32, 52.244.160.207/32, 2603:1027::/48, 2603:1037::/48, 2603:1047::/48, 2603:1057::/48, 2603:1063::/38, 2620:1ec:6::/48, 2620:1ec:40::/42` | **TCP:** 443, 80
+12 | Allow Required | Yes | `*.lync.com, *.teams.cloud.microsoft, *.teams.microsoft.com, teams.cloud.microsoft, teams.microsoft.com` `52.112.0.0/14, 52.122.0.0/15, 52.238.119.141/32, 52.244.160.207/32, 2603:1027::/48, 2603:1037::/48, 2603:1047::/48, 2603:1057::/48, 2603:1063::/38, 2620:1ec:6::/48, 2620:1ec:40::/42` | **TCP:** 443, 80 **UDP:** 443
16 | Default Required | No | `*.keydelivery.mediaservices.windows.net, *.streaming.mediaservices.windows.net` | **TCP:** 443
17 | Default Required | No | `aka.ms` | **TCP:** 443
18 | Default Optional **Notes:** Federation with Skype and public IM connectivity: Contact picture retrieval | No | `*.users.storage.live.com` | **TCP:** 443
diff --git a/microsoft-365/includes/smb-how-to-get-tech-support.md b/microsoft-365/includes/smb-how-to-get-tech-support.md
new file mode 100644
index 00000000000..d87ef289f50
--- /dev/null
+++ b/microsoft-365/includes/smb-how-to-get-tech-support.md
@@ -0,0 +1,14 @@
+---
+ms.author: kvice
+author: kelleyvice-msft
+ms.date: 03/18/2025
+ms.service: microsoft-365-business
+ms.topic: include
+---
+
+> [!TIP]
+> Some configuration tasks might be complex to perform. For technical support, follow these steps:
+> 1. Go to [admin.microsoft.com](https://admin.microsoft.com), select **Help & Support** at the bottom right, and type your question.
+> 2. Review the results and if you still have questions, **select the headset** to contact technical support.
+>
+> To learn about your options for contacting support, see [Get support for Microsoft 365 for business](/microsoft-365/admin/get-help-support).
\ No newline at end of file
diff --git a/microsoft-365/index.yml b/microsoft-365/index.yml
index c6e1b134cf8..77fa7af5f32 100644
--- a/microsoft-365/index.yml
+++ b/microsoft-365/index.yml
@@ -110,6 +110,9 @@ conceptualContent:
- url: /office365/planner
itemType: overview
text: Planner
+ - url: /microsoft-365/places
+ itemType: overview
+ text: Microsoft Places
# Card
- title: Microsoft 365 Apps and Office
links:
diff --git a/microsoft-365/lighthouse/TOC.yml b/microsoft-365/lighthouse/TOC.yml
index c8ef03f105b..c5b79951a18 100644
--- a/microsoft-365/lighthouse/TOC.yml
+++ b/microsoft-365/lighthouse/TOC.yml
@@ -17,6 +17,8 @@ items:
href: m365-lighthouse-overview-of-permissions.md
- name: Manage Lighthouse RBAC permissions
href: m365-lighthouse-manage-lighthouse-rbac-permissions.md
+ - name: View your assigned roles
+ href: m365-lighthouse-view-your-roles.md
- name: Configure portal security
href: m365-lighthouse-configure-portal-security.md
- name: Review audit logs
@@ -69,8 +71,8 @@ items:
items:
- name: Overview of the Tenants page
href: m365-lighthouse-tenants-page-overview.md
- - name: View your Microsoft Entra roles across tenants
- href: m365-lighthouse-view-your-roles.md
+ - name: Create a customer report
+ href: m365-lighthouse-create-customer-report.md
- name: Manage your tenant list
href: m365-lighthouse-manage-tenant-list.md
- name: View tenant service health
diff --git a/microsoft-365/lighthouse/m365-lighthouse-create-customer-report.md b/microsoft-365/lighthouse/m365-lighthouse-create-customer-report.md
new file mode 100644
index 00000000000..1cc534f2658
--- /dev/null
+++ b/microsoft-365/lighthouse/m365-lighthouse-create-customer-report.md
@@ -0,0 +1,56 @@
+---
+title: "Create a customer report in Microsoft 365 Lighthouse"
+f1.keywords: CSH
+ms.author: sharik
+author: SKjerland
+manager: scotv
+ms.reviewer: ebamoh
+ms.date: 03/12/2025
+audience: Admin
+ms.topic: how-to
+ms.service: microsoft-365-lighthouse
+ms.localizationpriority: medium
+ms.collection:
+- Tier1
+- scotvorg
+- M365-subscription-management
+- Adm_O365
+ms.custom:
+- AdminSurgePortfolio
+- M365-Lighthouse
+search.appverid: MET150
+description: "For Managed Service Providers (MSPs) using Microsoft 365 Lighthouse, learn how to create a PDF report for each of the customer tenants that you manage in Lighthouse."
+---
+
+# Create a customer report in Microsoft 365 Lighthouse
+
+You can create a PDF report in Microsoft 365 Lighthouse for each of your customer tenants that shows the status of their security posture along with opportunities to help them get the most value from their existing licenses. The report also summarizes activities that your partner organization performed in Lighthouse to keep the customer safe, secure, and productive. The report is designed to be shared with customers and can be especially helpful during monthly or quarterly business reviews.
+
+## Before you begin
+
+To create a customer report, you must hold at least the Global Reader role in Microsoft Entra ID for the customer tenant. To learn more, see [Overview of permissions in Microsoft 365 Lighthouse](m365-lighthouse-overview-of-permissions.md). For a complete list of Microsoft Entra roles and the actions they can perform, see [Microsoft Entra built-in roles](/entra/identity/role-based-access-control/permissions-reference).
+
+## Create a customer report
+
+1. In the left navigation pane in Lighthouse, select **Tenants**.
+
+2. Select a tenant that shows **Managed** in the **Lighthouse management** column to open the tenant details page for that tenant.
+
+3. On the **Overview** tab, select **Summary** in the left pane, and then select **Create customer report**.
+
+ A details pane opens showing an overview of the information contained in the report.
+
+4. To create and download a PDF copy of the report, select **Download PDF**.
+
+> [!NOTE]
+> The data in customer reports is refreshed once a week.
+
+## Next steps
+
+After you download a PDF copy of the report, you can retrieve it from the Downloads folder on your computer and share it with your customer.
+
+## Related content
+
+[Set up GDAP in Microsoft 365 Lighthouse](m365-lighthouse-setup-gdap.md) (article)\
+[Overview of permissions in Microsoft 365 Lighthouse](m365-lighthouse-overview-of-permissions.md) (article)\
+[Overview of the Tenants page in Microsoft 365 Lighthouse](m365-lighthouse-tenants-page-overview.md) (article)
diff --git a/microsoft-365/lighthouse/m365-lighthouse-overview-of-permissions.md b/microsoft-365/lighthouse/m365-lighthouse-overview-of-permissions.md
index 50444bff630..dffe046394d 100644
--- a/microsoft-365/lighthouse/m365-lighthouse-overview-of-permissions.md
+++ b/microsoft-365/lighthouse/m365-lighthouse-overview-of-permissions.md
@@ -74,6 +74,7 @@ The following table describes the actions that each Lighthouse RBAC role can per
| | Create, update, and delete tags in Lighthouse | | ✓ | ✓ | | | No |
| | Assign and remove tags from tenants | | ✓ | ✓ | | | No |
| | Activate and inactivate a tenant | | ✓ | ✓ | | | No |
+| | Create customer reports | | | | | | Yes |
| | View delegated access status | ✓ | ✓ | ✓ | ✓ | ✓ | No |
| | View Microsoft Secure Score | | | | | | Yes |
| | View baseline assignments | ✓ | ✓ | ✓ | ✓ | ✓ | No |
diff --git a/microsoft-365/lighthouse/m365-lighthouse-view-your-roles.md b/microsoft-365/lighthouse/m365-lighthouse-view-your-roles.md
index 626b7d38921..c40a493729c 100644
--- a/microsoft-365/lighthouse/m365-lighthouse-view-your-roles.md
+++ b/microsoft-365/lighthouse/m365-lighthouse-view-your-roles.md
@@ -1,11 +1,11 @@
---
-title: "View your Microsoft Entra roles in Microsoft 365 Lighthouse"
+title: "View your assigned roles in Microsoft 365 Lighthouse"
f1.keywords: NOCSH
ms.author: sharik
author: SKjerland
manager: scotv
ms.reviewer: taylorau
-ms.date: 09/27/2024
+ms.date: 04/10/2025
audience: Admin
ms.topic: how-to
ms.service: microsoft-365-lighthouse
@@ -19,30 +19,40 @@ ms.custom:
- AdminSurgePortfolib
- M365-Lighthouse
search.appverid: MET150
-description: "For Managed Service Provider (MSP) technicians using Microsoft 365 Lighthouse, learn how to view your Microsoft Entra roles across the different customer tenants that your organization manages."
+description: "For Managed Service Provider (MSP) technicians using Microsoft 365 Lighthouse, learn how to view your assigned Lighthouse roles and Microsoft Entra roles in Lighthouse."
---
-# View your Microsoft Entra roles in Microsoft 365 Lighthouse
+# View your assigned roles in Microsoft 365 Lighthouse
-This article provides instructions for how to view your Microsoft Entra roles across the different customer tenants that your organization manages. Your role determines which actions you can perform in Lighthouse.
+Lighthouse role-based access control (RBAC) roles and Microsoft Entra roles determine the actions you can perform in Microsoft 365 Lighthouse:
+
+- *Lighthouse RBAC roles* determine the data you can access and change within your partner tenant. Lighthouse RBAC roles don't provide access to customer data.
+
+- *Microsoft Entra roles* provide access to customer data and are based on the granular delegated administrative privileges (GDAP) relationships you set up with your customers.
## Before you begin
You must have access to a partner tenant that has onboarded to the Microsoft 365 Lighthouse service.
-## View your roles
-
-1. In the left navigation pane in Lighthouse, select **Tenants**.
+## View your assigned roles
-2. From the list of tenants, select any tenant name to open the tenant details page.
+There are two ways to view your assigned roles:
-3. Under **Your permissions**, select **View role**.
+- In the left navigation pane in Lighthouse, select **Roles** > **Assigned roles**.
- On the **Roles** page, if you hold one or more roles in a customer tenant, you'll see a green checkmark in the **Enabled** column for that tenant, along with the number of roles you hold. If you don't hold any roles in a tenant, you'll see a red **X**.
-
-4. For customer tenants with a green checkmark next to them, expand the tenant to see the list of roles you hold in that tenant. For more information about Microsoft Entra roles and the permissions they grant, see [Microsoft Entra built-in roles](/azure/active-directory/roles/permissions-reference).
+- To view the roles you hold for a specific tenant:
- The **Roles** page also shows any custom tags that are applied to your tenants. You can filter the data on the page by assigned roles or tags.
+ 1. In the left navigation pane in Lighthouse, select **Tenants**.
+
+ 2. From the list of tenants, select any tenant name to open the tenant details page.
+
+ 3. Under **Your permissions**, select **View role**.
+
+ On the **Roles** page, if you hold one or more roles in a customer tenant, you'll see a green checkmark in the **Enabled** column for that tenant, along with the number of roles you hold. If you don't hold any roles in a tenant, you'll see a red **X**.
+
+ 4. For customer tenants with a green checkmark next to them, expand the tenant to see the list of roles you hold in that tenant. For more information about Microsoft Entra roles and the permissions they grant, see [Microsoft Entra built-in roles](/azure/active-directory/roles/permissions-reference).
+
+ The **Roles** page also shows any custom tags that are applied to your tenants. You can filter the data on the page by assigned roles or tags.
## Next steps
@@ -51,4 +61,5 @@ If you don't have permission to perform an action that you need to perform in Li
## Related content
[Overview of permissions in Microsoft 365 Lighthouse](m365-lighthouse-overview-of-permissions.md) (article)\
-[Manage your tenant list in Microsoft 365 Lighthouse](m365-lighthouse-manage-tenant-list.md) (article)
+[Manage Lighthouse RBAC permissions in Microsoft 365 Lighthouse](m365-lighthouse-manage-lighthouse-rbac-permissions.md) (article)\
+[Microsoft Entra built-in roles](/azure/active-directory/roles/permissions-reference) (article)
diff --git a/microsoft-365/lighthouse/m365-lighthouse-whats-new.md b/microsoft-365/lighthouse/m365-lighthouse-whats-new.md
index ce93c34dc0c..acd5f6bdb27 100644
--- a/microsoft-365/lighthouse/m365-lighthouse-whats-new.md
+++ b/microsoft-365/lighthouse/m365-lighthouse-whats-new.md
@@ -5,7 +5,7 @@ ms.author: sharik
author: SKjerland
manager: scotv
ms.reviewer: ebamoh
-ms.date: 02/19/2025
+ms.date: 04/06/2025
audience: Admin
ms.topic: whats-new
ms.service: microsoft-365-lighthouse
@@ -32,6 +32,76 @@ We're continuously adding new features to [Microsoft 365 Lighthouse](m365-lighth
>
> To see which new features are currently available in your partner tenant, go to the **Home** page of Microsoft 365 Lighthouse, and then either select the **What's new** link in the upper-right corner of the page or select **What's new** on the **What's new & learning resources** card.
+## March 2025
+
+### Updated Assigned roles page
+
+We've updated the **Assigned roles** page in Microsoft 365 Lighthouse. This page shows your assigned roles and helps you understand the actions you can perform in Lighthouse:
+
+- **Lighthouse RBAC roles:** Determine the data you can access and change within your partner tenant. Lighthouse roles don't provide access to customer data.
+
+- **Microsoft Entra roles:** Provide access to customer data based on the granular delegated administrative privileges (GDAP) relationships you set up with your customers.
+
+To view your assigned roles, in the left navigation pane in Lighthouse, select **Roles** > **Assigned roles**.
+
+[Go to the Assigned roles page now](https://lighthouse.microsoft.com/#view/Microsoft_Intune_MTM/AssignedRoles.ReactView)
+
+To learn more, see [View your assigned roles in Microsoft 365 Lighthouse](m365-lighthouse-view-your-roles.md).
+
+## February 2025
+
+### Track assigned licenses per subscription plan
+
+We've added a new **Licenses** tab to the **Subscription renewals** section of Sales Advisor. This new tab provides detailed insights on the total number of licenses assigned per subscription plan for a particular tenant. Having this information all in one place helps you manage subscriptions effectively, use available licenses efficiently, and make informed decisions.
+
+To see assigned licenses, go to **Sales Advisor** > **Subscription renewals**, select a tenant from the list to open the details pane, and then select the **Licenses** tab.
+
+[Go to the Subscription renewals page now](https://lighthouse.microsoft.com/#view/Microsoft_Intune_MTM/UpcomingRenewals.ReactView)
+
+To learn more, see [Overview of Sales Advisor in Microsoft 365 Lighthouse](m365-lighthouse-sales-advisor-overview.md).
+
+### Opportunities during subscription renewal
+
+We've added an **Opportunity** column to the **Subscription renewals** page in Sales Advisor that shows potential opportunities that you can leverage during the subscription renewal process with your customers. Talking about the benefits of additional services or products during renewal discussions is a great way to grow your business and help your customers. Potential opportunities are surfaced and integrated into the renewal experience, making it easy to take action.
+
+To check out the new **Opportunity** column, in the left navigation pane in Lighthouse, select **Sales Advisor** > **Subscription renewals**.
+
+[Go to the Subscription renewals page now](https://lighthouse.microsoft.com/#view/Microsoft_Intune_MTM/UpcomingRenewals.ReactView)
+
+To learn more, see [Overview of Sales Advisor in Microsoft 365 Lighthouse](m365-lighthouse-sales-advisor-overview.md).
+
+### New Group and Product filters available on Opportunities page in Sales Advisor
+
+We've added two new filters to the **Opportunities** page in Sales Advisor to help you better manage and prioritize your opportunities and ensure you never miss out on important deals.
+
+The new **Group** filter allows you to quickly identify and focus on the most relevant opportunities. This feature is particularly useful when you have multiple opportunities and need a streamlined way to manage them. The **Group** filter includes two options:
+
+- **New:** Displays opportunities added since you last opened Sales Advisor. Select this option to see the latest opportunities and ensure you don't miss any new leads.
+
+- **High priority:** Helps you focus on high-priority opportunities, which are determined based on factors such as upcoming renewals, total seat size, and product relevance. Select this option to see deals that require immediate attention and are more likely to close successfully.
+
+The new **Product** filter identifies opportunities related to specific products. For example, if you're looking for new Microsoft Copilot opportunities or high-priority Microsoft 365 Business Premium opportunities, use the **Product** filter to narrow your search and find exactly what you need.
+
+To check out the new filters, in the left navigation pane in Lighthouse, select **Sales Advisor** > **Opportunities**.
+
+[Go to the Opportunities page now](https://lighthouse.microsoft.com/#view/Microsoft_Intune_MTM/OrlandInsights.ReactView)
+
+To learn more, see [Overview of Sales Advisor in Microsoft 365 Lighthouse](m365-lighthouse-sales-advisor-overview.md).
+
+## January 2025
+
+### Create an "Executive Summary" customer report
+
+You can now generate a report for each customer tenant in Microsoft 365 Lighthouse that highlights key areas around security posture and business status. The report also summarizes key activities your partner organization performed in Lighthouse to keep customers safe, secure, and productive.
+
+We heard from you about the need to share a report with your customers during monthly or quarterly business reviews and this Executive Summary is the first step towards building the end-to-end views needed to ensure reviews with customers are as productive as possible.
+
+To generate a customer report, in the left navigation pane in Lighthouse, select **Tenants**, and then select any tenant in the list to open the tenant details page. From there, select the **Overview** tab, select **Summary** in the left pane, and then select **Create report**.
+
+[Go to the Tenants page now](https://lighthouse.microsoft.com/#view/Microsoft_Intune_MTM/Tenants.ReactView) (once there, select a tenant)
+
+To learn more, see [Create a customer report in Microsoft 365 Lighthouse](m365-lighthouse-create-customer-report.md).
+
## December 2024
### View all commercial licenses for a customer tenant
@@ -114,6 +184,18 @@ We've made it easy for you to access customer tenant details from any page in Li
## September 2024
+### Track expired subscriptions
+
+To help you keep track of expired subscriptions more effectively, ensure timely follow-up with customers, and minimize service disruptions, we've added an **Expired** tab to Sales Advisor. This new **Expired** tab reduces the risk of missed renewals and helps maintain continuous service for your customers.
+
+The **Expired** tab shows customer tenants that have expired subscriptions that are currently in a grace period. Select any of the expired subscriptions under a tenant to open a details pane that shows more information about the expired subscriptions.
+
+To access information about a customer tenant's expired subscriptions, in the left navigation pane in Lighthouse, select **Sales Advisor** > **Subscription renewals**, and then select the **Expired** tab.
+
+[Go to the Subscription renewals page now](https://lighthouse.microsoft.com/#view/Microsoft_Intune_MTM/UpcomingRenewals.ReactView)
+
+To learn more, see [Overview of Sales Advisor in Microsoft 365 Lighthouse](m365-lighthouse-sales-advisor-overview.md).
+
### Delegated access page
We've simplified management of granular delegated administrative privileges (GDAP) in Microsoft 365 Lighthouse by removing the GDAP Setup tool and replacing it with the **Delegated access** page. This new page lets you do the following:
diff --git a/microsoft-365/loop/loop-compliance-summary.md b/microsoft-365/loop/loop-compliance-summary.md
index e5bfb0b8d71..65ebfabbb1a 100644
--- a/microsoft-365/loop/loop-compliance-summary.md
+++ b/microsoft-365/loop/loop-compliance-summary.md
@@ -1,6 +1,6 @@
---
ms.date: 03/06/2025
-title: "Summary of governance, lifecycle, and compliance capabilities for Loop experiences"
+title: "Summary of governance, lifecycle, and compliance capabilities for Copilot Pages and Loop experiences"
ms.reviewer: dancost, tonchan
ms.author: jenz
author: jenzamora
@@ -21,10 +21,10 @@ ms.collection:
search.appverid:
- SPO160
- MET150
-description: "Learn about the governance, data lifecycle management, and compliance capabilities for Loop experiences."
+description: "Learn about the governance, data lifecycle management, and compliance capabilities for Copilot Pages and Loop experiences."
---
-# Summary of governance, lifecycle, and compliance capabilities for Loop
+# Summary of governance, lifecycle, and compliance capabilities for Copilot Pages and Loop
As a Compliance Manager or IT administrator, it's crucial to stay up-to-date on the latest governance, data lifecycle, and compliance posture for the software solutions being used in your organization. This article details the capabilities available and not available yet for [Microsoft Loop](https://www.microsoft.com/en-us/microsoft-loop).
@@ -58,7 +58,7 @@ As a Compliance Manager or IT administrator, it's crucial to stay up-to-date on
|Legal Hold |**Legal Hold** support to ensure content isn't deleted (as related to litigation and security investigations) and stored in the [Preservation Hold Library](/sharepoint/governance/ediscovery-and-in-place-holds-in-sharepoint-server).|**Legal Hold** support to ensure content isn't deleted (as related to litigation and security investigations) and stored in the [Preservation Hold Library](/sharepoint/governance/ediscovery-and-in-place-holds-in-sharepoint-server).|
|***Microsoft 365 retention and deletion***|---|---|
|Retention policies |**[Retention policies](/purview/create-retention-policies?tabs=other-retention)** from Microsoft Purview Data Lifecycle Management are enforced for all .loop files.|**[Retention policies](/purview/create-retention-policies?tabs=other-retention)** from Microsoft Purview Data Lifecycle Management configured for all SharePoint sites are enforced for all .loop files or alternatively can be configured per Loop workspace *.|
-|Retention labels |**[Retention labels](/purview/retention#retention-labels)** from Microsoft Purview Data Lifecycle Management and Microsoft Purview Records Management are supported for .loop files by [applying published labels](/purview/create-apply-retention-labels?tabs=spo-onedrive) in OneDrive or SharePoint, or [automatically applying](/purview/apply-retention-labels-automatically) the labels.| **[Retention labels](/purview/retention#retention-labels)** from Microsoft Purview Data Lifecycle Management and Microsoft Purview Records Management are supported for .loop files by [applying published labels](/purview/create-apply-retention-labels?tabs=spo-onedrive) in SharePoint, or [automatically applying](/purview/apply-retention-labels-automatically) the labels.
**Not Yet Available**: Retention labels cannot be viewed or applied directly from a Loop component outside the Loop app, the user must navigate to the Loop component within the Loop app itself to view or apply a retention label on a Loop component or page. In addition, manually applying a record lock or regulatory record lock is not yet available.
+|Retention labels |**[Retention labels](/purview/retention#retention-labels)** from Microsoft Purview Data Lifecycle Management and Microsoft Purview Records Management are supported for .loop files by [applying published labels](/purview/create-apply-retention-labels?tabs=spo-onedrive) in OneDrive or SharePoint, or [automatically applying](/purview/apply-retention-labels-automatically) the labels.| **[Retention labels](/purview/retention#retention-labels)** from Microsoft Purview Data Lifecycle Management and Microsoft Purview Records Management are supported for .loop files by [applying published labels](/purview/create-apply-retention-labels?tabs=spo-onedrive) in SharePoint and [automatically applying](/purview/apply-retention-labels-automatically) the labels. There's limited support for [manually applying retention labels in the Loop app and to Loop components in apps](/purview/create-apply-retention-labels?tabs=loop%2Cdefault-label-for-sharepoint#manually-apply-retention-labels).
**Not Yet Available**: Retention labels cannot be viewed or applied directly from a Loop component outside the Loop app. Instead, the user must navigate to the Loop component within the Loop app itself to view or apply a retention label on a Loop component or page. Retention labels that mark the content as a record or regulatory record can't be manually applied in the Loop app and if content is automatically labeled as a record, locking and unlocking this record is not yet available.
|
|***Information Protection***|---|---|
|Sensitivity labels |**[Sensitivity labeling](/purview/sensitivity-labels-loop)** is available for Loop pages and components.|**[Sensitivity labeling](/purview/sensitivity-labels-loop)** is available for Loop pages and components, and admin configurable for individual Loop workspaces via PowerShell and rolling out in the Loop app for end users.|
@@ -85,7 +85,7 @@ The following sections detail capabilities that are **not yet available** for Mi
- When an **admin deletes** a Loop workspace, it **will not be removed from the user's view** of Loop workspaces. When users click on the deleted Loop workspace, it displays an error. Microsoft Roadmap ID 421613 addresses this.
- When an **admin modifies the list of owners or members** of a Loop workspace through the SharePoint Admin Center or via PowerShell, the **changes won't be visible to the users within that Loop workspace**. Changes to the workspace membership are only updated in the user's view of the Loop app if they're made directly within the Loop app itself. Microsoft Roadmap ID 421613 addresses this.
- All shared Loop workspaces, including Ideas, are created as tenant-owned, in the tenant default geo like SharePoint Communication sites, not in the creator's preferred data location. Copilot Pages is created as user-owned, in the geo that matches the user's preferred data location. See [storage management after user departure](/microsoft-365/loop/loop-workspaces-storage-permission#storage-management-after-user-departure) for more information on managing workspaces. Microsoft Roadmap ID 422729 addresses Ideas functioning as a shared Loop workspace.
-- **Individual controls for guest or external sharing** of a specific Loop workspace isn't available. Microsoft Roadmap ID 421614 addresses this.
+- **Individual controls for guest or external sharing** of a specific Loop workspace isn't available.
### eDiscovery capabilities not yet available
@@ -93,8 +93,8 @@ The following sections detail capabilities that are **not yet available** for Mi
### Microsoft 365 retention and deletion capabilities not available
-- Retention labels cannot be viewed or applied directly from a Loop component outside the Loop app, the user must navigate to the Loop component within the Loop app itself to view or apply a retention label on a Loop component or page
-- Manually applying a record lock or regulatory record lock is not yet available.
+- Retention labels cannot be viewed or applied directly from a Loop component outside the Loop app. Instead, the user must navigate to the Loop component within the Loop app itself to view or apply a retention label on a Loop component or page.
+- Retention labels that mark the content as a record or regulatory record can't be manually applied in the Loop app and if content is automatically labeled as a record, locking and unlocking this record is not yet available.
- For clarification only, not a limitation: retention labels have never been applied to containers like SharePoint sites or Loop workspaces; instead, use retention policies for these containers. See [retention](/purview/retention) to learn more.
## Managing Loop in your organization
diff --git a/microsoft-365/loop/loop-components-configuration.md b/microsoft-365/loop/loop-components-configuration.md
index 7e096094356..d85cf60b211 100644
--- a/microsoft-365/loop/loop-components-configuration.md
+++ b/microsoft-365/loop/loop-components-configuration.md
@@ -1,6 +1,6 @@
---
ms.date: 03/06/2025
-title: "Manage Loop components in your organization"
+title: "Manage Copilot Pages and Loop components in your organization"
ms.reviewer: dancost, tonchan
ms.author: jenz
author: jenzamora
@@ -21,10 +21,10 @@ ms.collection:
search.appverid:
- SPO160
- MET150
-description: "Learn how to manage Loop components in your organization."
+description: "Manage Copilot Pages and Loop in your organization"
---
-# Loop admin policies for Loop components and Loop workspaces
+# Loop admin policies for Copilot Pages, Loop components, and Loop workspaces
Loop components and integrations are backed by `.loop` files (earlier releases of Loop created these as `.fluid` files), stored in OneDrive, SharePoint, or [SharePoint Embedded](/sharepoint/dev/embedded/concepts/admin-exp/consuming-tenant-admin/cta). Learn more about [Loop storage](/microsoft-365/loop/loop-workspaces-storage-permission#loop-storage), which is combined with SharePoint in your tenant. IT administrators need to manage creation of Loop content and integrations using **BOTH**:
@@ -56,6 +56,10 @@ You'll be able to use this group for the Cloud Policy setup procedure specified
If you prefer, you can also create other types of groups to use with Cloud Policy. For more information, see [learn more about creating groups in the Microsoft 365 admin center](/microsoft-365/admin/email/create-edit-or-delete-a-security-group) or [learn more about creating dynamic groups in AzureAD](/azure/active-directory/external-identities/use-dynamic-groups).
+### Exchange Online mailboxes
+
+To utilize all Loop app features, including workspace sharing and at mentions, it's necessary for all users to have an Exchange Online mailbox. Those with Exchange On-Premises mailboxes will not have access to the full range of Loop app capabilities.
+
## Available policy settings
There are several IT Admin policy settings provided to enable creation of Loop content across Microsoft 365:
diff --git a/microsoft-365/loop/loop-workspaces-storage-permission.md b/microsoft-365/loop/loop-workspaces-storage-permission.md
index 55f1baa5d8a..7d7800ec02e 100644
--- a/microsoft-365/loop/loop-workspaces-storage-permission.md
+++ b/microsoft-365/loop/loop-workspaces-storage-permission.md
@@ -1,5 +1,5 @@
---
-title: Overview of Loop workspaces storage and permissions
+title: Overview of Copilot Pages and Loop workspaces storage and permissions
ms.author: jenz
author: jenzamora
manager: jtremper
@@ -14,7 +14,7 @@ ms.collection:
- M365-collaboration
- essentials-compliance
- magic-ai-copilot
-description: Learn about Loop workspaces storage and permissions in the Microsoft 365 ecosystem.
+description: Learn about Copilot Pages and Loop workspaces storage and permissions in the Microsoft 365 ecosystem.
f1.keywords:
- CSH
ms.custom:
@@ -24,7 +24,7 @@ appliesto:
- Microsoft Teams
---
-# Overview of Loop workspaces storage and permissions
+# Overview of Copilot Pages and Loop workspaces storage and permissions
## Loop Storage
@@ -74,7 +74,7 @@ You can share Loop workspaces, pages, and components with users external to your
- Your organization must allow sharing files with guests. Learn how to [manage this policy](/sharepoint/turn-external-sharing-on-or-off#change-the-organization-level-external-sharing-setting).
- The user you're sharing with must have a guest account in your tenant or [Business-to-Business Invitation Manager is enabled](/entra/external-id/what-is-b2b).
-- Your organization doesn't have sensitivity labels configured. Loop external sharing doesn't work for companies with sensitivity labels configured. Once sensitivity labels for Loop workspaces, pages, and components are generally available, then external sharing for companies with sensitivity labels configured doesn't function. Microsoft Roadmap ID 421614 addresses this.
+- Sensitivity labels and conditional access can further restrict sharing, so when testing guest sharing, ensure these features aren't configured to prevent it.
Workspaces can only be shared with users that have an existing guest account in your tenant. If Business-to-business Invitation Manager is enabled, users can share a page or component with a guest, which enables the flow to create a guest account for the user.
diff --git a/microsoft-365/lti/TOC.yml b/microsoft-365/lti/TOC.yml
index 69a60fb397b..9260e4380a8 100644
--- a/microsoft-365/lti/TOC.yml
+++ b/microsoft-365/lti/TOC.yml
@@ -69,3 +69,6 @@ items:
items:
- name: Use Microsoft Teams Meetings LTI with any LTI 1.3 compliant LMS
href: integrate-with-other-lms.md
+ - name: Use Microsoft Teams Assignments LTI with any LTI 1.3 compliant LMS
+ href: teams-assignments-with-other-lms.md
+
diff --git a/microsoft-365/lti/browser-cookies.md b/microsoft-365/lti/browser-cookies.md
index 7b428370003..c9d73075e7b 100644
--- a/microsoft-365/lti/browser-cookies.md
+++ b/microsoft-365/lti/browser-cookies.md
@@ -1,13 +1,14 @@
---
title: Allow cookies for LMS URLs in your browser
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 02/06/2024
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-enterprise
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/index.md b/microsoft-365/lti/index.md
index 23830f56b7c..3b8382830e3 100644
--- a/microsoft-365/lti/index.md
+++ b/microsoft-365/lti/index.md
@@ -1,13 +1,14 @@
---
title: An overview of Microsoft LTI apps
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman, sovaish
ms.date: 06/15/2021
audience: admin
ms.topic: concept-article
-ms.service: microsoft-365-enterprise
+ms.service: msteams
+ms.subservice: teams-education
search.appverid:
ms.collection:
- M365-modern-desktop
@@ -80,6 +81,7 @@ The integration allows you to Connect Class Teams and add Teams Assignments righ
- [Microsoft Assignments integration with Schoology Learning](teams-assignments-with-schoology.md).
- [Microsoft Assignments integration with Blackboard](teams-assignments-with-blackboard.md).
- [Microsoft Assignments integration with Desire2Learn Brightspace](teams-assignments-with-brightspace.md).
+- [Microsoft Assignments integration with any LTI 1.3 compliant LMS](teams-assignments-with-other-lms.md).
More LMS support coming soon! Please sign up for more information on current and future LMS integration previews at https://aka.ms/LMSPreview
diff --git a/microsoft-365/lti/integrate-with-other-lms.md b/microsoft-365/lti/integrate-with-other-lms.md
index 0b1651fa519..fe19981424a 100644
--- a/microsoft-365/lti/integrate-with-other-lms.md
+++ b/microsoft-365/lti/integrate-with-other-lms.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft Teams Meetings LTI with any LTI 1.3 compliant LMS
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 10/31/2022
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/manage-microsoft-one-lti.md b/microsoft-365/lti/manage-microsoft-one-lti.md
index 11d51a76c39..6d3f990c802 100644
--- a/microsoft-365/lti/manage-microsoft-one-lti.md
+++ b/microsoft-365/lti/manage-microsoft-one-lti.md
@@ -1,13 +1,14 @@
---
title: Manage Microsoft LMS Gateway for any LMS
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 04/04/2022
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/moodle-plugin-configuration.md b/microsoft-365/lti/moodle-plugin-configuration.md
index 89e9a844117..5928789ed2d 100644
--- a/microsoft-365/lti/moodle-plugin-configuration.md
+++ b/microsoft-365/lti/moodle-plugin-configuration.md
@@ -1,13 +1,14 @@
---
title: Set up and configure the Moodle LMS plugins
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 04/06/2022
audience: admin
ms.topic: install-set-up-deploy
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/onedrive-lti-blackboard.md b/microsoft-365/lti/onedrive-lti-blackboard.md
index 1c99066a6a8..f856803360d 100644
--- a/microsoft-365/lti/onedrive-lti-blackboard.md
+++ b/microsoft-365/lti/onedrive-lti-blackboard.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft OneDrive LTI with Blackboard
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 03/02/2022
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- m365initiative-edu
- tier2
diff --git a/microsoft-365/lti/onedrive-lti-brightspace.md b/microsoft-365/lti/onedrive-lti-brightspace.md
index 6443d24864e..58465e4ac29 100644
--- a/microsoft-365/lti/onedrive-lti-brightspace.md
+++ b/microsoft-365/lti/onedrive-lti-brightspace.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft OneDrive LTI with Desire2Learn Brightspace
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 08/03/2022
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- m365initiative-edu
- tier2
diff --git a/microsoft-365/lti/onedrive-lti-schoology.md b/microsoft-365/lti/onedrive-lti-schoology.md
index 5d2dc7c75c0..3d27d889817 100644
--- a/microsoft-365/lti/onedrive-lti-schoology.md
+++ b/microsoft-365/lti/onedrive-lti-schoology.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft OneDrive LTI with Schoology Learning
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 08/08/2022
audience: admin
ms.topic: integration
-ms.service: o365-administration
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/onedrive-lti.md b/microsoft-365/lti/onedrive-lti.md
index d44e2c0651c..bf70bba30eb 100644
--- a/microsoft-365/lti/onedrive-lti.md
+++ b/microsoft-365/lti/onedrive-lti.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft OneDrive LTI with Canvas
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 06/21/2021
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/open-lms-plugin-configuration.md b/microsoft-365/lti/open-lms-plugin-configuration.md
index 9302789fb0d..8e8c9cef9f6 100644
--- a/microsoft-365/lti/open-lms-plugin-configuration.md
+++ b/microsoft-365/lti/open-lms-plugin-configuration.md
@@ -1,13 +1,14 @@
---
title: Set up and configure the Moodle LMS plugins for Open LMS
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 04/06/2022
audience: admin
ms.topic: install-set-up-deploy
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/open-lms-teams-classes-and-meetings.md b/microsoft-365/lti/open-lms-teams-classes-and-meetings.md
index da1a3c088d1..6bfa61c5239 100644
--- a/microsoft-365/lti/open-lms-teams-classes-and-meetings.md
+++ b/microsoft-365/lti/open-lms-teams-classes-and-meetings.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Teams classes and meetings with Open LMS
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 04/04/2022
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/reflect-lti-blackboard.md b/microsoft-365/lti/reflect-lti-blackboard.md
index f58c8ea9038..bc4e54907e1 100644
--- a/microsoft-365/lti/reflect-lti-blackboard.md
+++ b/microsoft-365/lti/reflect-lti-blackboard.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Reflect LTI with Blackboard Learn
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: eladgr
ms.date: 11/28/2023
audience: admin
ms.topic: integration
-ms.service: o365-administration
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/reflect-lti-brightspace.md b/microsoft-365/lti/reflect-lti-brightspace.md
index 3ae9956ed97..33fd3f6781e 100644
--- a/microsoft-365/lti/reflect-lti-brightspace.md
+++ b/microsoft-365/lti/reflect-lti-brightspace.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Reflect LTI with D2L Brightspace
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: eladgr
ms.date: 11/28/2023
audience: admin
ms.topic: integration
-ms.service: o365-administration
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/reflect-lti-canvas.md b/microsoft-365/lti/reflect-lti-canvas.md
index 5400aabe59b..89fe559ea6b 100644
--- a/microsoft-365/lti/reflect-lti-canvas.md
+++ b/microsoft-365/lti/reflect-lti-canvas.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Reflect LTI with Canvas
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: eladgr
ms.date: 12/07/2023
audience: admin
ms.topic: integration
-ms.service: o365-administration
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/reflect-lti-moodle.md b/microsoft-365/lti/reflect-lti-moodle.md
index e34d71a4abc..b417bce43b0 100644
--- a/microsoft-365/lti/reflect-lti-moodle.md
+++ b/microsoft-365/lti/reflect-lti-moodle.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Reflect LTI with Moodle
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: eladgr
ms.date: 11/28/2023
audience: admin
ms.topic: integration
-ms.service: o365-administration
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/reflect-lti-schoology.md b/microsoft-365/lti/reflect-lti-schoology.md
index 7fa57c27c66..30c6bc6a7c7 100644
--- a/microsoft-365/lti/reflect-lti-schoology.md
+++ b/microsoft-365/lti/reflect-lti-schoology.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Reflect LTI with Schoology Learning
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: eladgr
ms.date: 11/28/2023
audience: admin
ms.topic: integration
-ms.service: o365-administration
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/teams-assignments-with-blackboard.md b/microsoft-365/lti/teams-assignments-with-blackboard.md
index 1e88325a35e..8cce289d5d5 100644
--- a/microsoft-365/lti/teams-assignments-with-blackboard.md
+++ b/microsoft-365/lti/teams-assignments-with-blackboard.md
@@ -1,12 +1,13 @@
---
title: Use Microsoft Teams Assignments LTI app with Blackboard by Anthology
description: Integrate and use the Microsoft Teams Assignments learning tool interoperability (LTI) app with Blackboard by Anthology.
-author: jennplatt
-ms.author: avering
+author: DaniEASmith
+ms.author: danismith
manager: mimast
ms.date: 02/05/2025
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
---
# Use Microsoft Teams Assignments LTI® with Blackboard by Anthology
diff --git a/microsoft-365/lti/teams-assignments-with-brightspace.md b/microsoft-365/lti/teams-assignments-with-brightspace.md
index 5c5ab3d7c12..04baa2f5b13 100644
--- a/microsoft-365/lti/teams-assignments-with-brightspace.md
+++ b/microsoft-365/lti/teams-assignments-with-brightspace.md
@@ -1,12 +1,13 @@
---
title: Integrate Teams Assignments with Brightspace
description: Integrate and use the Microsoft Teams Assignments learning tool interoperability (LTI) app with Desire2Learn Brightspace.
-author: jennplatt
-ms.author: avering
+author: DaniEASmith
+ms.author: danismith
manager: mimast
ms.date: 02/10/2025
ms.topic: article
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
---
# Use Teams Assignments LTI with Desire2Learn Brightspace
diff --git a/microsoft-365/lti/teams-assignments-with-canvas.md b/microsoft-365/lti/teams-assignments-with-canvas.md
index bee06904a7d..6df8be246ee 100644
--- a/microsoft-365/lti/teams-assignments-with-canvas.md
+++ b/microsoft-365/lti/teams-assignments-with-canvas.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft Teams Assignments LTI app with Canvas
description: Integrate and use the Microsoft Teams Assignments learning tool interoperability (LTI) app with Canvas
-author: jennplatt
-ms.author: avering
+author: DaniEASmith
+ms.author: danismith
manager: mimast
ms.date: 09/12/2024
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
---
# Use Microsoft Teams Assignments LTI® app with Canvas
diff --git a/microsoft-365/lti/teams-assignments-with-moodle.md b/microsoft-365/lti/teams-assignments-with-moodle.md
index 598c57eda8d..1aa7da849bd 100644
--- a/microsoft-365/lti/teams-assignments-with-moodle.md
+++ b/microsoft-365/lti/teams-assignments-with-moodle.md
@@ -1,12 +1,13 @@
---
title: Integrate Teams Assignments with Moodle
description: Integrate and use the Microsoft Teams Assignments learning tool interoperability (LTI) app with Moodle.
-author: jennplatt
-ms.author: avering
+author: DaniEASmith
+ms.author: danismith
manager: mimast
ms.date: 02/12/2025
ms.topic: article
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
---
# Use Teams Assignments LTI with Moodle™
diff --git a/microsoft-365/lti/teams-assignments-with-other-lms.md b/microsoft-365/lti/teams-assignments-with-other-lms.md
new file mode 100644
index 00000000000..785a405fd1e
--- /dev/null
+++ b/microsoft-365/lti/teams-assignments-with-other-lms.md
@@ -0,0 +1,80 @@
+---
+title: Use Microsoft Teams Assignments with LTI 1.3 Advantage compliant LMS
+description: Learn how to integrate and use the Teams Assignments LTI app with any LTI 1.3 Advantage compliant LMS or virtual learning environment (VLE).
+author: DaniEASmith
+ms.author: danismith
+manager: mimast
+ms.date: 03/20/2025
+ms.topic: how-to
+ms.service: msteams
+ms.subservice: teams-education
+---
+
+# Use Microsoft Teams Assignments with any LTI 1.3® Advantage compliant LMS/VLE
+
+This guide provides steps for deploying the Microsoft Teams Assignments Learning Tools Interoperability (LTI®) app in any learning management system (LMS) that implements [the LTI® 1.3 Advantage](https://www.imsglobal.org/spec/lti/v1p3/impl/) standard as a fully conformant platform (LTI® Advantage Complete).
+
+For an overview of all of the Microsoft integrations for LMS, see [Integrating Microsoft products with your LMS](/microsoft-365/lti/).
+
+## Request a Microsoft 365 sandbox environment
+
+> [!IMPORTANT]
+> If you're a **Microsoft Partner** that has an LTI® 1.3 Advantage compliant platform and wish to test deployment and functionality of the Teams Assignments LTI® tool on behalf of your customers, you need a Microsoft 365 Education sandbox environment to deploy and use the application.
+
+**To request a Microsoft 365 sandbox environment:**
+
+1. You first need a Microsoft Partner ID. Your Microsoft Partner ID appears in the top right corner next to your name when you log into the [Microsoft Partner Center](https://partner.microsoft.com). If you don't have one, you can obtain one by [joining the Microsoft AI Cloud Partner program](https://partner.microsoft.com/partnership).
+1. When you have your Microsoft Parter ID, request a sandbox using one of the following methods based on your business type:
+ - [Request a Microsoft 365 Education development/testing sandbox](https://m365edupartnerportal.powerappsportals.com/MSEDUIntegrationSignup/) as an Education ISV or SI partner who builds and supports integrations with Microsoft products and services.
+ - [Request to join the Microsoft Global Training Partner program](https://m365edupartnerportal.powerappsportals.com/MSGTPSignup/) as a Training Partner who delivers training and support to customers on Microsoft products and services.
+
+> [!NOTE]
+> The person who performs this integration should be an administrator of their LMS and have a Microsoft 365 Education (school) account.
+
+## Deploy the Teams Assignments LTI® tool for your LMS
+
+1. Go to the [Microsoft LMS Gateway](https://lti.microsoft.com/).
+1. Select the **Go to Registration Portal** button.
+1. Sign in with a _Microsoft 365 Education_ account (this is the account provided to you by your qualified education institution, or an account in your Edu Partner Microsoft 365 Education sandbox environment).
+1. After signing in, select **Add new registration**.
+1. Select **Microsoft** **Teams Assignments**, and then select **Next**.
+1. Enter an easily identifiable **Registration name**.
+1. Select **Other** as the **LMS platform**, and then select **Next**. You're given a list of keys that need to be copied and pasted to your LMS site.
+1. Leave the Microsoft LMS Gateway open in your browser tab and open the LMS site in another browser or tab and log in as an administrator.
+1. Navigate to your platform's LTI Tool configurations and add a new LTI 1.3 tool.
+1. Copy the values provided and save them. You need to add them to your LMS LTI® 1.3 tool configuration in the following steps. Hint: Check your LMS documentation to find the steps to create a new LTI® 1.3 registration and the correct fields to paste these values into.
+1. On the **Microsoft LMS gateway** tab, select **LMS provided registration keys**.
+1. Copy and paste the LTI® 1.3 platform values from the LMS tool registration into correct fields on Microsoft's **LMS provided registration keys** page. Hint: Check your LMS's documentation to find the correct place to get the registration values from your LMS.
+1. Select **Next**.
+1. Review the fields and values summarized on the **Review and add** page.
+1. If there are no errors, select **Save and exit**.
+1. When you see a message indicating successful registration, you've completed registration of the platform on the Microsoft LMS Gateway.
+You're now ready to continue configure common registration settings in the LTI® 1.3 tool in your LMS platform.
+
+## Configure common registration settings
+
+Every platform may have different options and steps for completing tool registration and adding placements for where the tool is launched within the platform. However, many common settings and steps are required to successfully deploy the app.
+
+1. Enable the tool to be available to both instructor (teacher) and learner (student) roles in the platform.
+1. Enable Deep Linking.
+1. Enable Names and Roles Provisioning Service (NRPS).
+1. Enable Assignment and Grading Services (AGS).
+1. Confirm that the Name, Email, and Username of the user that launches the tool will be sent to the tool in the privacy settings.
+1. Add the following custom parameters to be replaced by the platform at runtime. The LTI spec suggests the following variables be available, but platforms may have additional variables that are better suited based on definitions.
+
+ | **Name** | **LTI/LIS Variable** | **Description** | **Example expression** |
+ |---|---|---|---|
+ | **t** | ResourceLink.title | Title of the resource lineItem (assignment) from the label property | t=$ResourceLink.title |
+ | **dd** | ResourceLink.submission.endDateTime | Due date of the resource lineItem (assignment) from the endDateTime property | dd=$ResourceLink.submission.endDateTime |
+ | **mp** | N/A | Maximum score possible for a lineItem submission form the scoreMaximum property | mp=$ResourceLink.lineItem.scoreMaximum |
+ | **csid** | CourseOffering.sourcedId | Sourced ID for the course offering in the LMS | csid=$CourseOffering.sourcedId |
+ | **ssid** | CourseSection.sourcedId | Sourced IDs for the course sections in the LMS | ssid=$CourseSection.sourcedId |
+
+1. Add the secure **Icon URL** from the tool values copied if the platform requires this URL to display an icon.
+
+## Add placements for the tool to launch from in the LMS platform
+
+The Teams Assignments LTI® tool implements both a Resource Launch and a Deep Linking launch using the same **Target link URL** that is used in the core registration.
+
+- **Resource Launch placement** - best used in a course context as a navigation menu item placement, or where course level resources are available to instructor and student member roles.
+- **Deep Linking Launch placement** - best used in a new assignment or content activity placement (external tool type of assignment/content) where the tool, when launched by an instructor, creates a resource link that can be launched from the assignments or content activity list by instructors and teachers. The tool also creates a lineItem and sends scores back to the LMS to sync into its gradebook as Teams Assignments are graded by the instructor.
diff --git a/microsoft-365/lti/teams-assignments-with-schoology.md b/microsoft-365/lti/teams-assignments-with-schoology.md
index 92a1abacf0c..4b754a62e6b 100644
--- a/microsoft-365/lti/teams-assignments-with-schoology.md
+++ b/microsoft-365/lti/teams-assignments-with-schoology.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft Teams Assignments with Powerschool Schoology
description: Integrate and use the Microsoft Teams Assignments learning tool interoperability (LTI) app with Powerschool Schoology
-author: jennplatt
-ms.author: avering
+author: DaniEASmith
+ms.author: danismith
manager: mimast
ms.date: 09/12/2024
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
---
# Use Microsoft Teams Assignments with PowerSchool Schoology Learning
diff --git a/microsoft-365/lti/teams-classes-and-meetings-with-schoology.md b/microsoft-365/lti/teams-classes-and-meetings-with-schoology.md
index e75fff956e7..812121a9d5c 100644
--- a/microsoft-365/lti/teams-classes-and-meetings-with-schoology.md
+++ b/microsoft-365/lti/teams-classes-and-meetings-with-schoology.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Teams meetings with Schoology Learning
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 08/08/2022
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/teams-classes-meetings-with-brightspace.md b/microsoft-365/lti/teams-classes-meetings-with-brightspace.md
index 1140e6841c7..41bbea476a3 100644
--- a/microsoft-365/lti/teams-classes-meetings-with-brightspace.md
+++ b/microsoft-365/lti/teams-classes-meetings-with-brightspace.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Teams classes and meetings LTI apps with Desire2Learn Brightspace LMS
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremperger
ms.reviewer: amitman
ms.date: 07/06/2022
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/teams-classes-meetings-with-moodle.md b/microsoft-365/lti/teams-classes-meetings-with-moodle.md
index 3cb2ca9242f..1b2f5cd5a19 100644
--- a/microsoft-365/lti/teams-classes-meetings-with-moodle.md
+++ b/microsoft-365/lti/teams-classes-meetings-with-moodle.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Teams classes and meetings with Moodle
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 04/04/2022
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
diff --git a/microsoft-365/lti/teams-classes-with-blackboard.md b/microsoft-365/lti/teams-classes-with-blackboard.md
index cb61b37e2ee..2056ad65c93 100644
--- a/microsoft-365/lti/teams-classes-with-blackboard.md
+++ b/microsoft-365/lti/teams-classes-with-blackboard.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft Teams classes with Blackboard Learn Ultra
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 05/06/2021
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
@@ -24,9 +25,9 @@ Teamwork is at the core of every modern organization. By fostering collaboration
Your classes might include real-time conversations, video meetings, or asynchronous interactions. You can add file sharing and cocreation experiences for your students, all in one place. Microsoft Teams classes with Learn Ultra redefine the dynamics of teaching and what effective learning means.
> [!IMPORTANT]
-> Ensure that you have successfully set up the Institution Email field in your [Student Information System (SIS)](https://help.blackboard.com/Learn/Administrator/SaaS/Integrations/Student_Information_System/SIS_Planning)
+> Ensure that you have set up the Institution Email field in your [Student Information System (SIS)](https://help.blackboard.com/Learn/Administrator/SaaS/Integrations/Student_Information_System/SIS_Planning)
>
->The Microsoft Teams classes integration relies on the institution email field in your SIS to map to the correct Microsoft Entra ID’s (Microsoft Entra ID) [User Principle Name (UPN)](/azure/active-directory/hybrid/howto-troubleshoot-upn-changes). If no institution email has been provisioned, this will default to the existing email. It’s recommended that this field be set for every user to ensure their data is synchronized correctly and that there is no conflict of email data between Microsoft Entra ID and Blackboard Learn Ultra.
+>The Microsoft Teams classes integration relies on the institution email field in your SIS to map to the correct Microsoft Entra IDs (Microsoft Entra ID) [User Principle Name (UPN)](/azure/active-directory/hybrid/howto-troubleshoot-upn-changes). If no institution email has been provisioned, this will default to the existing email. It’s recommended that this field be set for every user to ensure their data is synchronized correctly and that there is no conflict of email data between Microsoft Entra ID and Blackboard Learn Ultra.
>
> If you haven’t set this field appropriately in your SIS mapping, the integration will continue to work, but users might not appear in the Teams classes created, and errors could occur.
diff --git a/microsoft-365/lti/teams-classes-with-canvas.md b/microsoft-365/lti/teams-classes-with-canvas.md
index 77bb072fc7b..70eed1c6c6f 100644
--- a/microsoft-365/lti/teams-classes-with-canvas.md
+++ b/microsoft-365/lti/teams-classes-with-canvas.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft Teams classes with Canvas
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: sovaish
ms.date: 05/26/2021
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
@@ -28,9 +29,9 @@ Microsoft Teams classes is a Learning Tools Interoperability (LTI) app that help
> The current Teams classes LTI only supports syncing Canvas users with Microsoft Entra ID in a limited scope.
>
> - Your tenant must have a Microsoft Education license (A1 or higher).
-> - Only a single Microsoft tenant can be used for mapping users between Canvas and Microsoft.
+> - A single Microsoft tenant only can be used for mapping users between Canvas and Microsoft.
> - Your tenant must have an exact match between a Canvas field (email, Unique User ID, SIS ID, or Integration ID) and a field in Microsoft Entra ID (User Principal Name (UPN), Primary Email Address (Mail), or Email Alias (mailNickname)).
-> - If you use SDS to create classes and groups, we recommend disabling the Team Creation Option in SDS and performing a [Group Cleanup](/schooldatasync/group-cleanup) to avoid duplication of classes. SDS can still be used to sync organization and user data.
+> - You must disable the Team Creation Option in School Data Sync (SDS) and perform a [Group Cleanup](/schooldatasync/group-cleanup) to avoid duplication of classes, if you use SDS to create classes and groups. SDS can still be used to sync organization and user data.
## Enable the Microsoft Teams app in Canvas
diff --git a/microsoft-365/lti/teams-meetings-with-blackboard-learn.md b/microsoft-365/lti/teams-meetings-with-blackboard-learn.md
index 6fc3c412942..c16f2081894 100644
--- a/microsoft-365/lti/teams-meetings-with-blackboard-learn.md
+++ b/microsoft-365/lti/teams-meetings-with-blackboard-learn.md
@@ -1,13 +1,14 @@
---
title: Integrate Microsoft Teams meetings with Blackboard Learn
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: amitman
ms.date: 07/08/2022
audience: admin
ms.topic: integration
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
ms.collection:
- M365-modern-desktop
- m365initiative-edu
diff --git a/microsoft-365/lti/teams-meetings-with-canvas.md b/microsoft-365/lti/teams-meetings-with-canvas.md
index 92b6b98784c..4f2a434bbb1 100644
--- a/microsoft-365/lti/teams-meetings-with-canvas.md
+++ b/microsoft-365/lti/teams-meetings-with-canvas.md
@@ -1,13 +1,14 @@
---
title: Use Microsoft Teams meetings with Canvas
-author: MicrosoftHeidi
-ms.author: heidip
+author: DaniEASmith
+ms.author: danismith
manager: jacktremper
ms.reviewer: sovaish
ms.date: 05/26/2021
audience: admin
ms.topic: how-to
-ms.service: microsoft-365-business
+ms.service: msteams
+ms.subservice: teams-education
f1.keywords:
- CSH
ms.collection:
@@ -30,7 +31,7 @@ Microsoft Teams meetings is a Learning Tools Interoperability (LTI) app that hel
> - Your tenant must have a Microsoft Education license.
> - Only a single Microsoft tenant can be used for mapping users between Canvas and Microsoft.
> - If you plan to use the Microsoft Teams Sync feature of Canvas concurrently with Microsoft’s School Data Sync (SDS), don't include class and class roster data in your SDS sync. You can continue to use SDS to sync all other data including users, organizations, parent contacts, and demographics.
-> - You can use Teams Meetings LTI without enabling **Course Sync**. However, you won't be able to use the **Add entire class** option. You can either type or copy and paste attendees' email addresses, or add channels of existing teams to the meetings.
+> - You can use Teams Meetings LTI without enabling **Course Sync**. However, you can't use the **Add entire class** option. You can either type or copy and paste attendees' email addresses, or add channels of existing teams to the meetings.
## Microsoft Office 365 Admin
@@ -44,7 +45,7 @@ Before managing the Microsoft Teams integration within Instructure Canvas, it's

-4. Enter your Microsoft tenant name, login attribute, domain suffix, and Microsoft Entra lookup attribute. These fields will be used for matching users in Canvas with users in Microsoft Entra ID.
+4. Enter your Microsoft tenant name, Login attribute, domain suffix, and Microsoft Entra lookup attribute. These fields are used for matching users in Canvas with users in Microsoft Entra ID.
- The Login Attribute is the Canvas user attribute utilized for matching.
- The Suffix field is optional and lets you specify a domain when there isn't an exact mapping between Canvas attributes and Microsoft Entra fields. For example, if your Canvas email is 'name@example.edu' while the UPN in Microsoft Entra is 'name', you can match users by entering 'example.edu' in the suffix field.
- The Active Directory Lookup Attribute is the field on the Microsoft side which Canvas attributes are matched to. Select in between UPN, primary email address, or the email alias.
@@ -58,7 +59,7 @@ Before managing the Microsoft Teams integration within Instructure Canvas, it's
7. Select **Accept**.
> [!NOTE]
- > Sync is a functionality that is managed by LMS partner and is used to sync membership at a course level to the Teams team using Microsoft graph APIs. This is primarily a functionality that an educator switches on as true at a course level. Subsequently any membership change done on LMS side for the addition or deletion of the members gets reflected using the Sync implemented by the LMS partner. Even before this process is enabled for an Educator the M365 education institute admin allows their educators to access sync using the Sync permission modal found below. These permissions are granted to the LMS partner to enable educators to sync membership between the LMS course and Teams Class teams.
+ > Sync is a functionality that is managed by LMS partner and is used to sync membership at a course level to the Teams team using Microsoft Graph APIs. This is primarily a functionality that an educator switches on as true at a course level. Subsequently any membership change done on LMS side for the addition or deletion of the members gets reflected using the Sync implemented by the LMS partner. Even before this process is enabled for an Educator the Microsoft 365 education institute admin allows their educators to access sync using the Sync permission modal found below. These permissions are granted to the LMS partner to enable educators to sync membership between the LMS course and Teams Class teams.
8. Enable the Microsoft Teams sync by turning on the toggle.
diff --git a/microsoft-365/media/0bcf67e6-a6e4-4109-a215-369f9f20ad84.png b/microsoft-365/media/0bcf67e6-a6e4-4109-a215-369f9f20ad84.png
deleted file mode 100644
index f01f2412783..00000000000
Binary files a/microsoft-365/media/0bcf67e6-a6e4-4109-a215-369f9f20ad84.png and /dev/null differ
diff --git a/microsoft-365/media/O365-CDN/O365-CDN-flow-transparent.svg b/microsoft-365/media/O365-CDN/O365-CDN-flow-transparent.svg
deleted file mode 100644
index 601916f08e5..00000000000
--- a/microsoft-365/media/O365-CDN/O365-CDN-flow-transparent.svg
+++ /dev/null
@@ -1,1583 +0,0 @@
-
-
-
-
diff --git a/microsoft-365/media/SPONavOptionsListOfSites.png b/microsoft-365/media/SPONavOptionsListOfSites.png
index 813d727855f..e62a7ec2446 100644
Binary files a/microsoft-365/media/SPONavOptionsListOfSites.png and b/microsoft-365/media/SPONavOptionsListOfSites.png differ
diff --git a/microsoft-365/media/classic-admin-center.png b/microsoft-365/media/classic-admin-center.png
index c9f4813c6e8..0f419e59dde 100644
Binary files a/microsoft-365/media/classic-admin-center.png and b/microsoft-365/media/classic-admin-center.png differ
diff --git a/microsoft-365/media/classic-outlook-from-dialog-box.png b/microsoft-365/media/classic-outlook-from-dialog-box.png
new file mode 100644
index 00000000000..3498fc7e044
Binary files /dev/null and b/microsoft-365/media/classic-outlook-from-dialog-box.png differ
diff --git a/microsoft-365/media/classic-outlook-from-dropdown.png b/microsoft-365/media/classic-outlook-from-dropdown.png
new file mode 100644
index 00000000000..fe41f4cce25
Binary files /dev/null and b/microsoft-365/media/classic-outlook-from-dropdown.png differ
diff --git a/microsoft-365/media/classic-outlook-options.png b/microsoft-365/media/classic-outlook-options.png
new file mode 100644
index 00000000000..9179f445575
Binary files /dev/null and b/microsoft-365/media/classic-outlook-options.png differ
diff --git a/microsoft-365/media/command-to-verify-settings.png b/microsoft-365/media/command-to-verify-settings.png
new file mode 100644
index 00000000000..d4ba86c98e1
Binary files /dev/null and b/microsoft-365/media/command-to-verify-settings.png differ
diff --git a/microsoft-365/media/content-understanding/agreements-attachments.png b/microsoft-365/media/content-understanding/agreements-attachments.png
new file mode 100644
index 00000000000..dd0b8063328
Binary files /dev/null and b/microsoft-365/media/content-understanding/agreements-attachments.png differ
diff --git a/microsoft-365/media/content-understanding/prebuilt-site-settings.png b/microsoft-365/media/content-understanding/prebuilt-site-settings.png
new file mode 100644
index 00000000000..566f348ef00
Binary files /dev/null and b/microsoft-365/media/content-understanding/prebuilt-site-settings.png differ
diff --git a/microsoft-365/media/content-understanding/structured-freeform-site-scoping.png b/microsoft-365/media/content-understanding/structured-freeform-site-scoping.png
new file mode 100644
index 00000000000..a4725f6110a
Binary files /dev/null and b/microsoft-365/media/content-understanding/structured-freeform-site-scoping.png differ
diff --git a/microsoft-365/media/content-understanding/translation-feedback-1.png b/microsoft-365/media/content-understanding/translation-feedback-1.png
new file mode 100644
index 00000000000..33b43283005
Binary files /dev/null and b/microsoft-365/media/content-understanding/translation-feedback-1.png differ
diff --git a/microsoft-365/media/content-understanding/translation-feedback-2.png b/microsoft-365/media/content-understanding/translation-feedback-2.png
new file mode 100644
index 00000000000..d35f40bff48
Binary files /dev/null and b/microsoft-365/media/content-understanding/translation-feedback-2.png differ
diff --git a/microsoft-365/media/content-understanding/unstructured-site-scoping.png b/microsoft-365/media/content-understanding/unstructured-site-scoping.png
new file mode 100644
index 00000000000..b1a8a0da6d8
Binary files /dev/null and b/microsoft-365/media/content-understanding/unstructured-site-scoping.png differ
diff --git a/microsoft-365/media/contoso-win10/contoso-win10-fig1.png b/microsoft-365/media/contoso-win11/contoso-win11-fig1.png
similarity index 100%
rename from microsoft-365/media/contoso-win10/contoso-win10-fig1.png
rename to microsoft-365/media/contoso-win11/contoso-win11-fig1.png
diff --git a/microsoft-365/media/dns-cloudflare/cloudflare-domains-1.png b/microsoft-365/media/dns-cloudflare/cloudflare-domains-1.png
index a6d418412b1..9c8d09ef72d 100644
Binary files a/microsoft-365/media/dns-cloudflare/cloudflare-domains-1.png and b/microsoft-365/media/dns-cloudflare/cloudflare-domains-1.png differ
diff --git a/microsoft-365/media/dns-cloudflare/cloudflare-domains-2.png b/microsoft-365/media/dns-cloudflare/cloudflare-domains-2.png
index ef0d1b47c2c..55ecae81a90 100644
Binary files a/microsoft-365/media/dns-cloudflare/cloudflare-domains-2.png and b/microsoft-365/media/dns-cloudflare/cloudflare-domains-2.png differ
diff --git a/microsoft-365/media/dns-cloudflare/cloudflare-domains-TXT-save.png b/microsoft-365/media/dns-cloudflare/cloudflare-domains-TXT-save.png
index 3e1026dc156..a7459b9cd09 100644
Binary files a/microsoft-365/media/dns-cloudflare/cloudflare-domains-TXT-save.png and b/microsoft-365/media/dns-cloudflare/cloudflare-domains-TXT-save.png differ
diff --git a/microsoft-365/media/dns-wix/wix-domains-edit-mx-records.png b/microsoft-365/media/dns-wix/wix-domains-edit-mx-records.png
index 87efaf028a6..689aebe6e33 100644
Binary files a/microsoft-365/media/dns-wix/wix-domains-edit-mx-records.png and b/microsoft-365/media/dns-wix/wix-domains-edit-mx-records.png differ
diff --git a/microsoft-365/media/dns-wix/wix-domains-other.png b/microsoft-365/media/dns-wix/wix-domains-other.png
index b776cbd168d..edab38b771c 100644
Binary files a/microsoft-365/media/dns-wix/wix-domains-other.png and b/microsoft-365/media/dns-wix/wix-domains-other.png differ
diff --git a/microsoft-365/media/dns-wix/wix-domains-txt-save.png b/microsoft-365/media/dns-wix/wix-domains-txt-save.png
index 10a3e32324e..b6027f5c1fb 100644
Binary files a/microsoft-365/media/dns-wix/wix-domains-txt-save.png and b/microsoft-365/media/dns-wix/wix-domains-txt-save.png differ
diff --git a/microsoft-365/media/exchange-web-usage-report.png b/microsoft-365/media/exchange-web-usage-report.png
new file mode 100644
index 00000000000..7382ca41397
Binary files /dev/null and b/microsoft-365/media/exchange-web-usage-report.png differ
diff --git a/microsoft-365/media/katanaglossary/001-account-en.png b/microsoft-365/media/katanaglossary/001-account-en.png
new file mode 100644
index 00000000000..8f12cd978ed
Binary files /dev/null and b/microsoft-365/media/katanaglossary/001-account-en.png differ
diff --git a/microsoft-365/media/katanaglossary/001_account.png b/microsoft-365/media/katanaglossary/001_account.png
deleted file mode 100644
index ea1b631f093..00000000000
Binary files a/microsoft-365/media/katanaglossary/001_account.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/002-1-addon-en.png b/microsoft-365/media/katanaglossary/002-1-addon-en.png
new file mode 100644
index 00000000000..e6fe5e2d69e
Binary files /dev/null and b/microsoft-365/media/katanaglossary/002-1-addon-en.png differ
diff --git a/microsoft-365/media/katanaglossary/002_1_addon.png b/microsoft-365/media/katanaglossary/002_1_addon.png
deleted file mode 100644
index 57bf71436ba..00000000000
Binary files a/microsoft-365/media/katanaglossary/002_1_addon.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/003-customdomain-en.png b/microsoft-365/media/katanaglossary/003-customdomain-en.png
new file mode 100644
index 00000000000..a41014b64b3
Binary files /dev/null and b/microsoft-365/media/katanaglossary/003-customdomain-en.png differ
diff --git a/microsoft-365/media/katanaglossary/003_customdomain.png b/microsoft-365/media/katanaglossary/003_customdomain.png
deleted file mode 100644
index 80d399a7d5b..00000000000
Binary files a/microsoft-365/media/katanaglossary/003_customdomain.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/004_cloudstorage.png b/microsoft-365/media/katanaglossary/004-cloudstorage.png
similarity index 100%
rename from microsoft-365/media/katanaglossary/004_cloudstorage.png
rename to microsoft-365/media/katanaglossary/004-cloudstorage.png
diff --git a/microsoft-365/media/katanaglossary/005-group-updated-en.png b/microsoft-365/media/katanaglossary/005-group-updated-en.png
new file mode 100644
index 00000000000..f26a4789d7c
Binary files /dev/null and b/microsoft-365/media/katanaglossary/005-group-updated-en.png differ
diff --git a/microsoft-365/media/katanaglossary/005_group_updated.png b/microsoft-365/media/katanaglossary/005_group_updated.png
deleted file mode 100644
index a58dac4ddfa..00000000000
Binary files a/microsoft-365/media/katanaglossary/005_group_updated.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/006-globaladmin-en.png b/microsoft-365/media/katanaglossary/006-globaladmin-en.png
new file mode 100644
index 00000000000..34c9b405336
Binary files /dev/null and b/microsoft-365/media/katanaglossary/006-globaladmin-en.png differ
diff --git a/microsoft-365/media/katanaglossary/006_globaladmin.png b/microsoft-365/media/katanaglossary/006_globaladmin.png
deleted file mode 100644
index be2e88dd50b..00000000000
Binary files a/microsoft-365/media/katanaglossary/006_globaladmin.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/007-collabo-commu-en.png b/microsoft-365/media/katanaglossary/007-collabo-commu-en.png
new file mode 100644
index 00000000000..9bc2b2c88ca
Binary files /dev/null and b/microsoft-365/media/katanaglossary/007-collabo-commu-en.png differ
diff --git a/microsoft-365/media/katanaglossary/007_collabo-commu.png b/microsoft-365/media/katanaglossary/007_collabo-commu.png
deleted file mode 100644
index e4655c7f938..00000000000
Binary files a/microsoft-365/media/katanaglossary/007_collabo-commu.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/008-trainingguide-en.png b/microsoft-365/media/katanaglossary/008-trainingguide-en.png
new file mode 100644
index 00000000000..04f85d150fa
Binary files /dev/null and b/microsoft-365/media/katanaglossary/008-trainingguide-en.png differ
diff --git a/microsoft-365/media/katanaglossary/008_trainingguide.png b/microsoft-365/media/katanaglossary/008_trainingguide.png
deleted file mode 100644
index 81f5d32c280..00000000000
Binary files a/microsoft-365/media/katanaglossary/008_trainingguide.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/009-feedback-en.png b/microsoft-365/media/katanaglossary/009-feedback-en.png
new file mode 100644
index 00000000000..ddfe1e6e0e5
Binary files /dev/null and b/microsoft-365/media/katanaglossary/009-feedback-en.png differ
diff --git a/microsoft-365/media/katanaglossary/009_feedback.png b/microsoft-365/media/katanaglossary/009_feedback.png
deleted file mode 100644
index 7d17cf06312..00000000000
Binary files a/microsoft-365/media/katanaglossary/009_feedback.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/010-privacy-updated-en.png b/microsoft-365/media/katanaglossary/010-privacy-updated-en.png
new file mode 100644
index 00000000000..9fae5adcdab
Binary files /dev/null and b/microsoft-365/media/katanaglossary/010-privacy-updated-en.png differ
diff --git a/microsoft-365/media/katanaglossary/010_privacy_updated.png b/microsoft-365/media/katanaglossary/010_privacy_updated.png
deleted file mode 100644
index be197f31c93..00000000000
Binary files a/microsoft-365/media/katanaglossary/010_privacy_updated.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/011-billing-profiles-en.png b/microsoft-365/media/katanaglossary/011-billing-profiles-en.png
new file mode 100644
index 00000000000..3f72a10f193
Binary files /dev/null and b/microsoft-365/media/katanaglossary/011-billing-profiles-en.png differ
diff --git a/microsoft-365/media/katanaglossary/012-domain-en.png b/microsoft-365/media/katanaglossary/012-domain-en.png
new file mode 100644
index 00000000000..8efcdc0c264
Binary files /dev/null and b/microsoft-365/media/katanaglossary/012-domain-en.png differ
diff --git a/microsoft-365/media/katanaglossary/012_domain.png b/microsoft-365/media/katanaglossary/012_domain.png
deleted file mode 100644
index 17cc88c32c5..00000000000
Binary files a/microsoft-365/media/katanaglossary/012_domain.png and /dev/null differ
diff --git a/microsoft-365/media/katanaglossary/013-licenses-en.png b/microsoft-365/media/katanaglossary/013-licenses-en.png
new file mode 100644
index 00000000000..52b664ab7da
Binary files /dev/null and b/microsoft-365/media/katanaglossary/013-licenses-en.png differ
diff --git a/microsoft-365/media/katanaglossary/013_licenses.png b/microsoft-365/media/katanaglossary/013_licenses.png
deleted file mode 100644
index 45446bb745d..00000000000
Binary files a/microsoft-365/media/katanaglossary/013_licenses.png and /dev/null differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-billing.png b/microsoft-365/media/m365-backup/backup-setup-billing.png
index 4c3fd251b18..90125fcac6a 100644
Binary files a/microsoft-365/media/m365-backup/backup-setup-billing.png and b/microsoft-365/media/m365-backup/backup-setup-billing.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-number1.png b/microsoft-365/media/m365-backup/backup-setup-number1.png
new file mode 100644
index 00000000000..cabdf4564bf
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-number1.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-number2.png b/microsoft-365/media/m365-backup/backup-setup-number2.png
new file mode 100644
index 00000000000..04c9c7f1d49
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-number2.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-number3.png b/microsoft-365/media/m365-backup/backup-setup-number3.png
new file mode 100644
index 00000000000..76eb96f3ec2
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-number3.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-number4.png b/microsoft-365/media/m365-backup/backup-setup-number4.png
new file mode 100644
index 00000000000..e6ffe3e97a8
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-number4.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-step1.png b/microsoft-365/media/m365-backup/backup-setup-step1.png
new file mode 100644
index 00000000000..f9f07fe3fd2
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-step1.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-step2.png b/microsoft-365/media/m365-backup/backup-setup-step2.png
new file mode 100644
index 00000000000..8cc814ef6c2
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-step2.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-step3.png b/microsoft-365/media/m365-backup/backup-setup-step3.png
new file mode 100644
index 00000000000..10020b2b8da
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-step3.png differ
diff --git a/microsoft-365/media/m365-backup/backup-setup-step4.png b/microsoft-365/media/m365-backup/backup-setup-step4.png
new file mode 100644
index 00000000000..c7ac8d02eee
Binary files /dev/null and b/microsoft-365/media/m365-backup/backup-setup-step4.png differ
diff --git a/microsoft-365/media/m365-backup/button1-400.png b/microsoft-365/media/m365-backup/button1-400.png
new file mode 100644
index 00000000000..d1164e57ad8
Binary files /dev/null and b/microsoft-365/media/m365-backup/button1-400.png differ
diff --git a/microsoft-365/media/m365-backup/button1.png b/microsoft-365/media/m365-backup/button1.png
new file mode 100644
index 00000000000..8ca59b429f6
Binary files /dev/null and b/microsoft-365/media/m365-backup/button1.png differ
diff --git a/microsoft-365/media/m365-backup/button2.png b/microsoft-365/media/m365-backup/button2.png
new file mode 100644
index 00000000000..a0d63836892
Binary files /dev/null and b/microsoft-365/media/m365-backup/button2.png differ
diff --git a/microsoft-365/media/m365-backup/button3.png b/microsoft-365/media/m365-backup/button3.png
new file mode 100644
index 00000000000..03eb9bd7613
Binary files /dev/null and b/microsoft-365/media/m365-backup/button3.png differ
diff --git a/microsoft-365/media/m365-backup/button4.png b/microsoft-365/media/m365-backup/button4.png
new file mode 100644
index 00000000000..f37d143165f
Binary files /dev/null and b/microsoft-365/media/m365-backup/button4.png differ
diff --git a/microsoft-365/media/m365-backup/step1-400.png b/microsoft-365/media/m365-backup/step1-400.png
new file mode 100644
index 00000000000..6f7be80854d
Binary files /dev/null and b/microsoft-365/media/m365-backup/step1-400.png differ
diff --git a/microsoft-365/media/m365-backup/step1.png b/microsoft-365/media/m365-backup/step1.png
new file mode 100644
index 00000000000..6a3761494e2
Binary files /dev/null and b/microsoft-365/media/m365-backup/step1.png differ
diff --git a/microsoft-365/media/m365-backup/step2.png b/microsoft-365/media/m365-backup/step2.png
new file mode 100644
index 00000000000..ac9cfd3c843
Binary files /dev/null and b/microsoft-365/media/m365-backup/step2.png differ
diff --git a/microsoft-365/media/m365-backup/step3.png b/microsoft-365/media/m365-backup/step3.png
new file mode 100644
index 00000000000..aaaf437ec50
Binary files /dev/null and b/microsoft-365/media/m365-backup/step3.png differ
diff --git a/microsoft-365/media/m365-backup/step4.png b/microsoft-365/media/m365-backup/step4.png
new file mode 100644
index 00000000000..25a1919a3ad
Binary files /dev/null and b/microsoft-365/media/m365-backup/step4.png differ
diff --git a/microsoft-365/media/microsoft-365-overview/m365-fundamentals.png b/microsoft-365/media/microsoft-365-overview/m365-fundamentals.png
new file mode 100644
index 00000000000..ce719ac2ecb
Binary files /dev/null and b/microsoft-365/media/microsoft-365-overview/m365-fundamentals.png differ
diff --git a/microsoft-365/media/microsoft-365-overview/m365-fundamentals.svg b/microsoft-365/media/microsoft-365-overview/m365-fundamentals.svg
deleted file mode 100644
index de1bac5a0b1..00000000000
--- a/microsoft-365/media/microsoft-365-overview/m365-fundamentals.svg
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
- M365 Fundamentals/m365-fundamentals
- Created with Sketch.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/microsoft-365/media/microsoft365-apps-usage-ww/microsoft-365-apps-usage-report.png b/microsoft-365/media/microsoft365-apps-usage-ww/microsoft-365-apps-usage-report.png
new file mode 100644
index 00000000000..218145d4a25
Binary files /dev/null and b/microsoft-365/media/microsoft365-apps-usage-ww/microsoft-365-apps-usage-report.png differ
diff --git a/microsoft-365/media/new-mail.png b/microsoft-365/media/new-mail.png
new file mode 100644
index 00000000000..e29fce0839c
Binary files /dev/null and b/microsoft-365/media/new-mail.png differ
diff --git a/microsoft-365/media/open-in-new-window-email-outlook.png b/microsoft-365/media/open-in-new-window-email-outlook.png
new file mode 100644
index 00000000000..49b8ebadbea
Binary files /dev/null and b/microsoft-365/media/open-in-new-window-email-outlook.png differ
diff --git a/microsoft-365/media/other-email-addresses-in-outlook.png b/microsoft-365/media/other-email-addresses-in-outlook.png
new file mode 100644
index 00000000000..a916fc8eceb
Binary files /dev/null and b/microsoft-365/media/other-email-addresses-in-outlook.png differ
diff --git a/microsoft-365/media/send-as-group-email.png b/microsoft-365/media/send-as-group-email.png
new file mode 100644
index 00000000000..8ba9e0ee120
Binary files /dev/null and b/microsoft-365/media/send-as-group-email.png differ
diff --git a/microsoft-365/media/show-from-options-in-outlook.png b/microsoft-365/media/show-from-options-in-outlook.png
new file mode 100644
index 00000000000..fdcdf9e7d3f
Binary files /dev/null and b/microsoft-365/media/show-from-options-in-outlook.png differ
diff --git a/microsoft-365/media/upload-csv-file.png b/microsoft-365/media/upload-csv-file.png
index 115b179bce0..ac255089529 100644
Binary files a/microsoft-365/media/upload-csv-file.png and b/microsoft-365/media/upload-csv-file.png differ
diff --git a/microsoft-365/media/vpn-split-tunneling/vpn-split-tunnel-example.png b/microsoft-365/media/vpn-split-tunneling/vpn-split-tunnel-example.png
index 603db1548c1..ea4f9e2d6b5 100644
Binary files a/microsoft-365/media/vpn-split-tunneling/vpn-split-tunnel-example.png and b/microsoft-365/media/vpn-split-tunneling/vpn-split-tunnel-example.png differ
diff --git a/microsoft-365/media/vsb-add-user-view.png b/microsoft-365/media/vsb-add-user-view.png
index b8e36363f4c..826adb2c118 100644
Binary files a/microsoft-365/media/vsb-add-user-view.png and b/microsoft-365/media/vsb-add-user-view.png differ
diff --git a/microsoft-365/solutions/TOC.yml b/microsoft-365/solutions/TOC.yml
index 4a1538b6638..1396d036f3a 100644
--- a/microsoft-365/solutions/TOC.yml
+++ b/microsoft-365/solutions/TOC.yml
@@ -35,7 +35,7 @@ items:
items:
- name: Overview
href: manage-devices-with-intune-overview.md
- - name: Step 1. Implement App Protection policies
+ - name: Step 1. Implement app protection policies
href: manage-devices-with-intune-app-protection.md
- name: Step 2. Enroll devices into management
href: manage-devices-with-intune-enroll.md
diff --git a/microsoft-365/solutions/allow-members-to-send-as-or-send-on-behalf-of-group.md b/microsoft-365/solutions/allow-members-to-send-as-or-send-on-behalf-of-group.md
index 23bac81a5c5..05c490ab1c1 100644
--- a/microsoft-365/solutions/allow-members-to-send-as-or-send-on-behalf-of-group.md
+++ b/microsoft-365/solutions/allow-members-to-send-as-or-send-on-behalf-of-group.md
@@ -26,7 +26,7 @@ description: "Learn how to allow group members to send email as a Microsoft 365
# Allow members to send as or send on behalf of a group
-A member of a Microsoft 365 group who has been granted **Send as** or **Send on behalf** permissions can send email as the group, or on behalf of the group. (Guests in the group cannot be granted these permissions.)
+A member of a Microsoft 365 group who has been granted **Send as** or **Send on behalf** permissions can send email as the group, or on behalf of the group. (Guests in the group can't be granted these permissions.)
This article explains how a global or Exchange administrator can set these permissions.
@@ -38,11 +38,11 @@ The **Send on Behalf** permission lets a user send email on behalf of a Microsof
> You can configure **Send as** or **Send on behalf** for a given user, but not both. If you configure both, it will default to **Send as**.
> [!NOTE]
-> **Send as** and **Send on behalf** are not supported on Outlook for Mac in hybrid Exchange configurations.
+> **Send as** and **Send on behalf** aren't supported on Outlook for Mac in hybrid Exchange configurations.
## Considerations for scheduling meetings
> [!NOTE]
-> Meeting invitations sent from a Microsoft 365 group mailbox currently display the sender as *User on behalf of Group*, even if **Send as** permission is assigned. There is no native method for meeting invites to appear purely as the group.
+> Meeting invitations sent from a Microsoft 365 group mailbox currently display the sender as *User on behalf of Group*, even if **Send as** permission is assigned. There's no native method for meeting invites to appear purely as the group.
## Allow members to send email as a group
@@ -66,6 +66,44 @@ This section explains how to allow users to send email on behalf of a group in t
5. Select **Permission Type** as **Send on behalf** from the drop-down.
6. Select **Save changes**.
+## Send email as a group
+
+After permissions are assigned, users can send an email using the group's email address by composing a new email. To send an email as a group using the new Outlook or the Outlook on the web, follow these steps:
+
+1. Click **New mail**.
+
+ :::image type="content" source="../media/new-mail.png" alt-text="Screenshot of the New email option in Outlook.":::
+
+2. To open in new window, click the **Arrow** to pop out the email.
+
+ :::image type="content" source="../media/open-in-new-window-email-outlook.png" alt-text="Screenshot of the Arrow that opens in new window in Outlook.":::
+3. Go to the **Options** tab and select **Show From**.
+
+ :::image type="content" source="../media/show-from-options-in-outlook.png" alt-text="Screenshot of the Options tab in outlook.":::
+4. Click the drop-down menu and select **Other email address…**.
+
+ :::image type="content" source="../media/other-email-addresses-in-outlook.png" alt-text="Screenshot of the other email addresses in outlook.":::
+5. Enter the email address of the Microsoft 365 Group for which the user has been assigned **Send As** permission.
+
+ :::image type="content" source="../media/send-as-group-email.png" alt-text="Screenshot of the From dropdown in outlook.":::
+6. Compose and send the email.
+
+To send an email as a group using the classic Outlook, follow these steps:
+
+1. Click **New mail**.
+2. Go to the **Options** tab and select **From**.
+
+ :::image type="content" source="../media/classic-outlook-options.png" alt-text="Screenshot of Options tab in classic Outlook.":::
+3. Click the **From** drop-down and select **Other Email Address…**.
+
+ :::image type="content" source="../media/classic-outlook-from-dropdown.png" alt-text="Screenshot of the From dropdown in classic Outlook.":::
+4. Type in the group's email address and select **OK**.
+
+ :::image type="content" source="../media/classic-outlook-from-dialog-box.png" alt-text="Screenshot of the From dialog box in classic outlook.":::
+ >[!NOTE]
+ >Ensure the user has been assigned **Send As** permission on the group.
+5. Compose and send the email.
+
## Related articles
[Send email from or on behalf of a Microsoft 365 group](https://support.microsoft.com/office/0f4964af-aec6-484b-a65c-0434df8cdb6b)
diff --git a/microsoft-365/solutions/apps-protect-step-1.md b/microsoft-365/solutions/apps-protect-step-1.md
index c877f1f6ae9..df87d34598d 100644
--- a/microsoft-365/solutions/apps-protect-step-1.md
+++ b/microsoft-365/solutions/apps-protect-step-1.md
@@ -27,7 +27,7 @@ The policies in level 1 enforce a reasonable data access level while minimizing
Use the following recommended app protection settings when creating and applying Intune app protection for Level 1 enterprise basic data protection.
-[!INCLUDE [app-protection-framework-level1](~/../_memdocs/memdocs/intune-service/includes/app-protection-framework-level1.md)]
+[!INCLUDE [app-protection-framework-level1](~/../_memdocs/intune/intune-service/includes/app-protection-framework-level1.md)]
## Next step
[:::image type="content" source="../media/protect-managed-apps/protect-managed-apps-steps-02.png" alt-text="Step 2. Apply enhanced data protection." border="false" :::](apps-protect-step-2.md)
diff --git a/microsoft-365/solutions/apps-protect-step-2.md b/microsoft-365/solutions/apps-protect-step-2.md
index c3c8c409b3d..58fe15705cb 100644
--- a/microsoft-365/solutions/apps-protect-step-2.md
+++ b/microsoft-365/solutions/apps-protect-step-2.md
@@ -25,7 +25,7 @@ The policies in level 1 enforce a reasonable data access level while minimizing
Use the following recommended app protection settings when creating and applying Intune app protection for Level 2 enterprise enhanced data protection.
-[!INCLUDE [app-protection-framework-level1](~/../_memdocs/memdocs/intune-service/includes/app-protection-framework-level2.md)]
+[!INCLUDE [app-protection-framework-level1](~/../_memdocs/intune/intune-service/includes/app-protection-framework-level2.md)]
## Next step
[:::image type="content" source="../media/protect-managed-apps/protect-managed-apps-steps-03.png" alt-text="Step 3 - Apply high data protection." border="false" :::](apps-protect-step-3.md)
diff --git a/microsoft-365/solutions/apps-protect-step-3.md b/microsoft-365/solutions/apps-protect-step-3.md
index f723f6a8b90..fb3f512b67f 100644
--- a/microsoft-365/solutions/apps-protect-step-3.md
+++ b/microsoft-365/solutions/apps-protect-step-3.md
@@ -24,7 +24,7 @@ keywords:
Use the following recommended app protection settings when creating and applying Intune app protection for Level 3 enterprise high data protection.
-[!INCLUDE [app-protection-framework-level1](~/../_memdocs/memdocs/intune-service/includes/app-protection-framework-level3.md)]
+[!INCLUDE [app-protection-framework-level1](~/../_memdocs/intune/intune-service/includes/app-protection-framework-level3.md)]
## Next step
diff --git a/microsoft-365/solutions/deploy-voice.md b/microsoft-365/solutions/deploy-voice.md
index 2db999953b8..1a4ac65faeb 100644
--- a/microsoft-365/solutions/deploy-voice.md
+++ b/microsoft-365/solutions/deploy-voice.md
@@ -1,6 +1,6 @@
---
title: Deploy voice in Microsoft 365
-ms.author: crowe
+ms.author: pamgreen
author: CarolynRowe
manager: pamgreen
ms.date: 11/16/2020
diff --git a/microsoft-365/solutions/manage-creation-of-groups.md b/microsoft-365/solutions/manage-creation-of-groups.md
index 4d0458421f0..183fe73fed3 100644
--- a/microsoft-365/solutions/manage-creation-of-groups.md
+++ b/microsoft-365/solutions/manage-creation-of-groups.md
@@ -2,7 +2,7 @@
title: Manage who can create Microsoft 365 Groups
f1.keywords: NOCSH
ms.reviewer: rahulnayak
-ms.date: 11/22/2023
+ms.date: 03/13/2025
author: DaniEASmith
ms.author: danismith
manager: jtremper
@@ -13,6 +13,7 @@ ms.localizationpriority: medium
ms.custom:
- has-azure-ad-ps-ref
- azure-ad-ref-level-one-done
+ - admindeeplinkMAC
ms.collection:
- highpri
- M365-subscription-management
@@ -44,7 +45,7 @@ When you limit who can create a group, it affects all services that rely on grou
- Power BI (classic)
- Project for the web / Roadmap
-The steps in this article won't prevent members of certain roles from creating Groups. Microsoft 365 global admins can create groups via the Microsoft 365 admin center, Planner, Exchange, and SharePoint, but not other locations such as Teams. Other roles can create Microsoft 365 Groups via limited means, listed below.
+The steps in this article can't prevent members of certain roles from creating Groups. Microsoft 365 global admins can create groups via the Microsoft 365 admin center, Planner, Exchange, and SharePoint, but not other locations such as Teams. Other roles can create Microsoft 365 Groups via limited means:
- Exchange Administrator: Exchange admin center, Microsoft Entra ID
- Partner Tier 1 Support: Microsoft 365 admin center, Exchange admin center, Microsoft Entra ID
@@ -59,13 +60,13 @@ If you're a member of one of these roles, you can create Microsoft 365 Groups fo
## Licensing requirements
-To manage who creates groups, the following people need Microsoft Entra ID P1 or P2 licenses or Microsoft Entra Basic EDU licenses assigned to them:
+To manage who creates groups, the following people need Microsoft Entra ID P1 or P2 licenses or Microsoft Entra Basic Education (EDU) licenses assigned to them:
-- The admin who configures these group creation settings
-- The members of the group who are allowed to create groups
+- The admin who configures these group creation settings.
+- The members of the group who are allowed to create groups.
> [!NOTE]
-> See [Assign or remove licenses in the Microsoft Entra admin center](/azure/active-directory/fundamentals/license-users-groups) for more details about how to assign Azure licenses.
+> See [Assign or remove licenses in the Microsoft Entra admin center](/azure/active-directory/fundamentals/license-users-groups) for more details about how to assign Entra ID licenses.
The following people don't need Microsoft Entra ID P1 or P2 or Microsoft Entra Basic EDU licenses assigned to them:
@@ -75,21 +76,18 @@ The following people don't need Microsoft Entra ID P1 or P2 or Microsoft Entra B
Only one group in your organization can be used to control who is able to create Microsoft 365 Groups. But, you can nest other groups as members of this group.
-Admins in the roles listed above don't need to be members of this group: they retain their ability to create groups.
-
-1. In the admin center, go to the [Groups page](https://admin.microsoft.com/adminportal/home#/groups).
-
-2. Click on **Add a Group**.
-
-3. Choose the group type you want. Remember the name of the group! You'll need it later.
+Admins in the roles listed previously don't need to be members of this group; they retain their ability to create groups.
+1. In the [Microsoft 365 admin center](https://go.microsoft.com/fwlink/p/?linkid=2024339), go to the [Groups page](https://admin.microsoft.com/adminportal/home#/groups).
+2. Select **Add a Group**.
+3. Choose the group type you want. Remember the name of the group. You need it later.
4. Finish setting up the group, adding people or other groups who you want to be able to create groups as members (not owners).
For detailed instructions, see [Create, edit, or delete a security group in the Microsoft 365 admin center](../admin/email/create-edit-or-delete-a-security-group.md).
## Step 2: Run PowerShell commands
-You'll use the [Microsoft Graph PowerShell](/powershell/microsoftgraph/installation) **Beta** module to change the group-level guest access setting:
+Use the [Microsoft Graph PowerShell](/powershell/microsoftgraph/installation) **Beta** module to change the group-level guest access setting:
- If you have already installed the Beta version, run `Update-Module Microsoft.Graph.Beta` to make sure it's the latest version of this module.
@@ -107,7 +105,7 @@ Run the script by typing:
`.\GroupCreators.ps1`
-and [sign in with your administrator account](../enterprise/connect-to-microsoft-365-powershell.md#step-2-connect-to-azure-ad-for-your-microsoft-365-subscription) when prompted.
+Then, [sign in with your administrator account](../enterprise/connect-to-microsoft-365-powershell.md#step-2-connect-to-azure-ad-for-your-microsoft-365-subscription) when prompted.
```PowerShell
Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement
@@ -127,7 +125,7 @@ if(!$settingsObjectID)
values = @(
@{
name = "EnableMSStandardBlockedWords"
- value = "true"
+ value = $true
}
)
}
@@ -160,24 +158,21 @@ Update-MgBetaDirectorySetting -DirectorySettingId $settingsObjectID -BodyParamet
```
-The last line of the script will display the updated settings:
+The last line of the script displays the updated settings:

If in the future you want to change which group is used, you can rerun the script with the name of the new group.
-If you want to turn off the group creation restriction and again allow all users to create groups, set $GroupName to "" and $AllowGroupCreation to "$true" and rerun the script.
+If you want to turn off the group creation restriction and again allow all users to create groups, set `$GroupName` to `""` and `$AllowGroupCreation` to `"$true"` and rerun the script.
## Step 3: Verify that it works
-Changes can take 30 minutes or more to take effect. You can verify the new settings by doing the following:
-
-1. Sign in to Microsoft 365 with a user account of someone who should NOT have the ability to create groups. That is, they aren't a member of the group you created or an administrator.
+Changes can take 30 minutes or more to take effect. You can verify the new settings by completing the following steps:
+1. Sign in to Microsoft 365 with a user account of someone who shouldn't have the ability to create groups. That is, they aren't a member of the group you created or an administrator.
2. Select the **Planner** tile.
-
3. In Planner, select **New Plan** in the left navigation to create a plan.
-
4. You should get a message that plan and group creation is disabled.
Try the same procedure again with a member of the group.
@@ -185,16 +180,11 @@ Try the same procedure again with a member of the group.
> [!NOTE]
> If members of the group aren't able to create groups, check that they aren't being blocked through their [OWA mailbox policy](/powershell/module/exchange/set-owamailboxpolicy).
-## Related topics
-
-[Collaboration governance planning recommendations](collaboration-governance-overview.md#collaboration-governance-planning-recommendations)
-
-[Create your collaboration governance plan](collaboration-governance-first.md)
-
-[Getting started with Office 365 PowerShell](../enterprise/getting-started-with-microsoft-365-powershell.md)
-
-[Set up self-service group management in Microsoft Entra ID](/azure/active-directory/users-groups-roles/groups-self-service-management)
-
-[Set-ExecutionPolicy](/powershell/module/microsoft.powershell.security/set-executionpolicy)
+## Related articles
-[Microsoft Entra cmdlets for configuring group settings](/azure/active-directory/users-groups-roles/groups-settings-cmdlets)
+- [Collaboration governance planning recommendations](collaboration-governance-overview.md#collaboration-governance-planning-recommendations)
+- [Create your collaboration governance plan](collaboration-governance-first.md)
+- [Getting started with Office 365 PowerShell](../enterprise/getting-started-with-microsoft-365-powershell.md)
+- [Set up self-service group management in Microsoft Entra ID](/azure/active-directory/users-groups-roles/groups-self-service-management)
+- [Set-ExecutionPolicy](/powershell/module/microsoft.powershell.security/set-executionpolicy)
+- [Microsoft Entra cmdlets for configuring group settings](/azure/active-directory/users-groups-roles/groups-settings-cmdlets)
diff --git a/microsoft-365/solutions/manage-devices-with-intune-app-protection.md b/microsoft-365/solutions/manage-devices-with-intune-app-protection.md
index befe9c2c3ef..c1afcec46ad 100644
--- a/microsoft-365/solutions/manage-devices-with-intune-app-protection.md
+++ b/microsoft-365/solutions/manage-devices-with-intune-app-protection.md
@@ -9,7 +9,7 @@ f1.keywords:
- MAM
- set up mobile ap protection
manager: dougeby
-ms.date: 04/17/2024
+ms.date: 03/14/2025
audience: ITPro
ms.topic: how-to
description: Configure mobile app protection with App Protection policies (APP) to prevent specified corporate data from being copied and pasted to other apps.
@@ -25,27 +25,27 @@ ms.custom:
keywords:
---
-# Step 1. Implement App Protection Policies
+# Step 1. Implement app protection policies
-Intune App Protection Policies (APP), sometimes referred to as Mobile Application Management (MAM), protect corporate data even if a device itself is not managed. This allows you to enable bring-your-own (BYO) and personal devices at work where users may be reluctant to “enroll” their device into management. APP ensure corporate data in the apps you specify cannot be copied and pasted to other apps on the device.
+Microsoft Intune app protection policies, sometimes referred to as Mobile Application Management (MAM), protect corporate data even if a device itself is not managed. This allows you to enable bring-your-own (BYO) and personal devices at work where users might be reluctant to "enroll" their device into management. App protection policies ensure corporate data in the apps you specify can't be copied and pasted to other apps on the device.
:::image type="content" source="../media/devices/intune-app-steps.png" alt-text="Steps for creating App Protection Policies to separate organization and personal data on a device." lightbox="../media/devices/intune-app-steps.png":::
In this illustration:
-- With APP, Intune creates a wall between your organization data and personal data. The app protection policies define which apps are allowed to access your data.
+- With app protection policies, Intune creates a wall between your organization data and personal data. The app protection policies define which apps are allowed to access your data.
- If a user signs in with their organization credentials, Intune applies a policy at the app layer to prevent copy and paste of your organization data to personal apps and to require PIN access to this data.
-- After creating an App Protection policy, you enforce data protection with a Conditional Access policy.
+- After creating an app protection policy, you enforce data protection with a Conditional Access policy.
-This configuration greatly increases your security posture with almost no impact to the user experience. Employees can use apps like Office and Microsoft Teams, that they know and love, while at the same time your organization can protect the data contained within the apps and devices.
+This configuration greatly increases your security posture with almost no impact on the user experience. Employees can use apps like Microsoft Office and Microsoft Teams, that they know and love, while at the same time your organization can protect the data contained within the apps and devices.
-If you have custom Line of Business applications that need protection, currently you can use the app wrapping tool to enable APP with these applications. Or, you can integrate using the Intune App SDK. When your app has app protection policies applied to it, it can be managed by Intune and is recognized by Intune as a managed app.
+If you have custom line-of-business applications that need protection, currently you can use the app wrapping tool to support using app protection policies with these applications. Or, you can integrate using the Intune App SDK. When your app has app protection policies applied to it, it can be managed by Intune and is recognized by Intune as a managed app.
-For more information about protecting your Line of Business applications using Intune, see [Prepare apps for mobile application management with Microsoft Intune](/mem/intune/developer/apps-prepare-mobile-application-management).
+For more information about protecting your line-of-business applications using Intune, see [Prepare apps for mobile application management with Microsoft Intune](/mem/intune-service/developer/apps-prepare-mobile-application-management).
## Configuring mobile app protection
-This guidance is tightly coordinated with the recommended [Zero Trust identity and device access policies](../security/office-365-security/zero-trust-identity-device-access-policies-overview.md). After you create the Mobile App protection policies in Intune, work with your identity team to configure the Conditional Access policies in Microsoft Entra ID that enforce mobile app protection.
+This guidance is tightly coordinated with the recommended [Zero Trust identity and device access policies](../security/office-365-security/zero-trust-identity-device-access-policies-overview.md). After you create the mobile app protection policies in Intune, work with your identity team to configure the Conditional Access policies in Microsoft Entra ID that enforce mobile app protection.
This illustration highlights the two policies (also described in the table following the illustration).
@@ -55,7 +55,7 @@ To configure these policies, use the recommended guidance and settings prescribe
|Policy |More information |Licensing |
|---------|---------|---------|
-| [Apply Application Protection Policies (APP) data protection](../security/office-365-security/zero-trust-identity-device-access-policies-common.md#app-protection-policies) | One Intune App Protection policy per platform (Windows, iOS/iPadOS, Android). | Microsoft 365 E3 or E5 |
+| [Apply application protection policies for data protection](../security/office-365-security/zero-trust-identity-device-access-policies-common.md#app-protection-policies) | One Intune App Protection policy per platform (Windows, iOS/iPadOS, Android). | Microsoft 365 E3 or E5 |
| [Require approved apps and app protection](../security/office-365-security/zero-trust-identity-device-access-policies-common.md#require-approved-apps-and-app-protection-policies) | Enforces mobile app protection for phones and tablets using iOS, iPadOS, or Android. | Microsoft 365 E3 or E5 |
## Next step
diff --git a/microsoft-365/solutions/manage-devices-with-intune-compliance-policies.md b/microsoft-365/solutions/manage-devices-with-intune-compliance-policies.md
index 96fa60796b9..6b524239cdb 100644
--- a/microsoft-365/solutions/manage-devices-with-intune-compliance-policies.md
+++ b/microsoft-365/solutions/manage-devices-with-intune-compliance-policies.md
@@ -6,7 +6,7 @@ f1.keywords:
- Create compliance policies
- Intune device compliance policy
manager: dougeby
-ms.date: 04/17/2024
+ms.date: 03/14/2025
audience: ITPro
description: Learn how to create device compliance policies that specify the minimum requirements for a device to access your environment.
ms.topic: how-to
@@ -24,11 +24,11 @@ keywords:
# Step 3. Set up compliance policies for devices with Intune
-Enrolling devices to Intune gives you the ability to achieve even greater security and control of data in your environment. [Step 2. Enroll devices to Intune](manage-devices-with-intune-enroll.md) details how to accomplish this using Intune. This article covers the next step, which is to configure device compliance policies.
+Enrolling devices to Microsoft Intune gives you the ability to achieve even greater security and control of data in your environment. [Step 2. Enroll devices in Intune](manage-devices-with-intune-enroll.md) details how to accomplish this using Intune. This article covers the next step, which is to configure device compliance policies.
:::image type="content" source="../media/devices/intune-mdm-step-2.png" alt-text="The second step of Mobile Device Management to create compliance policies." lightbox="../media/devices/intune-mdm-step-2.png":::
-You want to be sure devices that are accessing your apps and data meet minimum requirements. For example, they’re password or pin-protected and the operating system is up to date. Compliance policies are the way to define the requirements that devices must meet. Intune uses these compliance policies to mark a device as compliant or non-compliant. This binary status is passed to Microsoft Entra which can use this status in Conditional Access rules to allow or prevent a device from accessing resources.
+You want to be sure devices that access your apps and data meet minimum requirements. For example, that they’re password or PIN-protected and the operating system is up to date. Compliance policies are the way to define the requirements that devices must meet. Intune uses these compliance policies to mark a device as compliant or non-compliant. This binary status is passed to Microsoft Entra which can use this status in Conditional Access rules to allow or prevent a device from accessing resources.
## Configuring device compliance policies
@@ -38,7 +38,7 @@ This illustration highlights where the work of defining compliance policies fits
:::image type="content" source="../media/devices/identity-device-define-compliance.svg" alt-text="Highlighted Zero Trust identity and device access policies for Intune device compliance." lightbox="../media/devices/identity-device-define-compliance.svg":::
-In this illustration, defining device compliance policies is a dependency for achieving the recommended level of protection within the Zero Trust framework.
+In this illustration, defining device compliance policies is a dependency for achieving the recommended level of protection within the Zero Trust framework.
To configure device compliance policies, use the recommended guidance and settings prescribed in [Zero Trust identity and device access policies](../security/office-365-security/zero-trust-identity-device-access-policies-overview.md). The following table links directly to the instructions for configuring these policies in Intune, including the recommended settings for each platform.
diff --git a/microsoft-365/solutions/manage-devices-with-intune-configuration-profiles.md b/microsoft-365/solutions/manage-devices-with-intune-configuration-profiles.md
index 5d26b12f508..a873edbe47e 100644
--- a/microsoft-365/solutions/manage-devices-with-intune-configuration-profiles.md
+++ b/microsoft-365/solutions/manage-devices-with-intune-configuration-profiles.md
@@ -7,7 +7,7 @@ f1.keywords:
- Windows security baselines for Intune
- customize configuration profiles
manager: dougeby
-ms.date: 04/17/2024
+ms.date: 03/14/2025
audience: ITPro
description: Get started with configuration profiles to enforce secure settings on devices using Intune to transition these security controls to the cloud.
ms.topic: how-to
@@ -25,33 +25,33 @@ keywords:
# Step 5. Deploy device profiles in Microsoft Intune
-Microsoft Intune includes settings and features you can enable or disable on different devices within your organization. These settings and features are added to "configuration profiles." You can create profiles for different devices and different platforms, including iOS/iPadOS, Android device administrator, Android Enterprise, and Windows. Then, use Intune to apply or "assign" the profile to the devices.
+Microsoft Intune includes settings and features you can enable or disable on different devices within your organization. These settings and features are added to "configuration profiles." You can create profiles for different devices and platforms, including iOS/iPadOS, Android device administrator, Android Enterprise, and Windows. Then, use Intune to apply or "assign" the profile to the devices.
-This article provides guidance on getting started with configuration profiles.
+This article provides guidance on getting started with configuration profiles.
:::image type="content" source="../media/devices/intune-mdm-step-4.png" alt-text="The fourth step of Mobile Device Management to enforce secure settings on devices with configuration profiles." lightbox="../media/devices/intune-mdm-step-4.png":::
-Configuration profiles give you the ability to configure important protection and to bring devices into compliance so they can access your resources. Previously, these kinds of configuration changes were configured by using Group Policy settings in Active Directory Domain Services. A modern security strategy includes moving security controls to the cloud where enforcement of these controls isn't dependent on on-premises resources and access. Intune configuration profiles are the way to transition these security controls to the cloud.
+Configuration profiles give you the ability to configure important protection and to bring devices into compliance so they can access your resources. Previously, these kinds of configuration changes were configured by using Group Policy settings in Active Directory Domain Services. A modern security strategy includes moving security controls to the cloud where enforcement of these controls isn't dependent on on-premises resources and access. Intune configuration profiles are the way to transition these security controls to the cloud.
-To give you an idea of the kind of configuration profiles you can create, see [Apply features and settings on your devices using device profiles in Microsoft Intune](/mem/intune/configuration/device-profiles).
+To give you an idea of the kind of configuration profiles you can create, see [Apply features and settings on your devices using device profiles in Microsoft Intune](/mem/intune-service/configuration/device-profiles).
## Deploy Windows security baselines for Intune
-As a starting point, if you want to align your device configurations to Microsoft security baselines, we recommend the security baselines within Microsoft Intune. The advantage of this approach is you can rely on Microsoft to keep the baselines up to date as Windows 10 and 11 features are released.
+As a starting point, if you want to align your device configurations to Microsoft security baselines, we recommend the security baselines within Microsoft Intune. The advantage of this approach is that you can rely on Microsoft to keep the baselines up to date as Windows features are released.
-To deploy the Windows security baselines for Intune, available for Windows 10 and Windows 11. See [Use security baselines to configure Windows devices in Intune](/mem/intune/protect/security-baselines) to learn about the available baselines.
+To deploy the Windows security baselines for Intune, available for Windows 10 and Windows 11. See [Use security baselines to configure Windows devices in Intune](/mem/intune-service/protect/security-baselines) to learn about the available baselines.
-For now, just deploy the most appropriate MDM security baseline. See [Manage security baseline profiles in Microsoft Intune](/mem/intune/protect/security-baselines-configure)to create the profile and choose the baseline version.
+For now, just deploy the most appropriate MDM security baseline. See [Manage security baseline profiles in Microsoft Intune](/mem/intune-service/protect/security-baselines-configure)to create the profile and choose the baseline version.
-Later, when Microsoft Defender for Endpoint is set up and you’ve connected Intune, deploy the Defender for Endpoint baselines. This topic is covered in the next article in this series: [Step 6. Monitor device risk and compliance to security baselines](manage-devices-with-intune-monitor-risk.md).
+Later, when Microsoft Defender for Endpoint is set up and connected to Intune, deploy the Defender for Endpoint baselines. This subject is covered in the next article in this series: [Step 6. Monitor device risk and compliance to security baselines](manage-devices-with-intune-monitor-risk.md).
-It's important to understand that these security baselines aren't CIS or NIST compliant but closely mirror their recommendations. For more information, see [Are the Intune security baselines CIS or NIST compliant?](/mem/intune/protect/security-baselines#are-the-intune-security-baselines-cis-or-nist-compliant)
+It's important to understand that these security baselines aren't CIS or NIST compliant but closely mirror their recommendations. For more information, see [Are the Intune security baselines CIS or NIST compliant?](/mem/intune-service/protect/security-baselines#are-the-intune-security-baselines-cis-or-nist-compliant).
## Customize configuration profiles for your organization
-In addition to deploying the pre-configured baselines, many enterprise-scale organizations implement configuration profiles for more granular control. This configuration helps reduce the dependency on Group Policy Objects in the on-premises Active Directory environment and move security controls to the cloud.
+In addition to deploying the pre-configured baselines, many enterprise-scale organizations implement configuration profiles for more granular control. This configuration helps reduce the dependency on Group Policy Objects (GPOs) in the on-premises Active Directory environment and move security controls to the cloud.
-The many settings you can configure by using configuration profiles can be grouped into four categories, as illustrated below.
+The many settings you can configure by using configuration profiles can be grouped into four categories, as seen in the following illustration.
:::image type="content" source="../media/devices/intune-device-profile-categories.png" alt-text="Intune device profile categories including device features, device restrictions, access configuration, and custom settings." lightbox="../media/devices/intune-device-profile-categories.png":::
@@ -68,23 +68,23 @@ The following table describes the illustration.
When customizing configuration profiles for your organization, use the following guidance:
- Simplify your security governance strategy by keeping the overall number of policies small.
-- Group settings into the categories listed above, or categories that make sense for your organization.
-- When moving security controls from Group Policy Objects (GPO) to Intune configuration profiles, consider whether the settings configured by each GPO are still relevant, and needed to contribute to your overall cloud security strategy. Conditional Access and the many policies that can be configured across cloud services, including Intune, provide more sophisticated protection than could be configured in an on-premises environment where custom GPOs were originally designed.
-- Utilize Group Policy Analytics to compare and map your current GPO settings to capabilities within Microsoft Intune. See [Analyze your on-premises group policy objects (GPO) using Group Policy analytics](/mem/intune/configuration/group-policy-analytics) in Microsoft Intune.
-- When utilizing custom configuration profiles, be sure to use the guidance here: [Create a profile with custom settings in Intune](/mem/intune/configuration/custom-settings-configure).
+- Group settings into the categories listed in the preceding table, or use categories that make sense for your organization.
+- When moving security controls from GPOs to Intune configuration profiles, consider whether the settings configured by each GPO are still relevant and required to contribute to your overall cloud security strategy. Conditional Access and the many policies that can be configured across cloud services, including Intune, provide more sophisticated protection than could be configured in an on-premises environment where custom GPOs were originally designed.
+- Utilize Group Policy Analytics to compare and map your current GPO settings to capabilities within Microsoft Intune. See [Analyze your on-premises group policy objects (GPO) using Group Policy analytics](/mem/intune-service/configuration/group-policy-analytics) in Microsoft Intune.
+- When utilizing custom configuration profiles, be sure to use the guidance at [Create a profile with custom settings in Intune](/mem/intune-service/configuration/custom-settings-configure).
## Additional resources
-If you're not sure where to start with device profiles, the following can help:
+If you're not sure where to start with device profiles, the following resources can help:
-- [Guided scenarios](/mem/intune/fundamentals/guided-scenarios-overview)
-- [Security baselines](/mem/intune/protect/security-baselines)
+- [Guided scenarios](/mem/intune-service/fundamentals/guided-scenarios-overview)
+- [Security baselines](/mem/intune-service/protect/security-baselines)
-If your environment includes on-prem GPOs, the following features are a good transition to the cloud:
+If your environment includes on-premises GPOs, the following features are a good transition to the cloud:
-- [Group Policy analytics](/mem/intune/configuration/group-policy-analytics)
-- [Admin templates (ADMX)](/mem/intune/configuration/administrative-templates-windows)
-- [Settings Catalog](/mem/intune/configuration/settings-catalog)
+- [Group Policy analytics](/mem/intune-service/configuration/group-policy-analytics)
+- [Admin templates (ADMX)](/mem/intune-service/configuration/administrative-templates-windows)
+- [Settings Catalog](/mem/intune-service/configuration/settings-catalog)
## Next step
diff --git a/microsoft-365/solutions/manage-devices-with-intune-enroll.md b/microsoft-365/solutions/manage-devices-with-intune-enroll.md
index 3e1fd619001..ddaa817264e 100644
--- a/microsoft-365/solutions/manage-devices-with-intune-enroll.md
+++ b/microsoft-365/solutions/manage-devices-with-intune-enroll.md
@@ -7,7 +7,7 @@ f1.keywords:
- enroll devices to Intune
- Intune mobile device platforms
manager: dougeby
-ms.date: 04/17/2024
+ms.date: 03/14/2025
audience: ITPro
description: Use Intune and Autopilot to enroll devices into management to ensure the apps running on them are compliant and to prevent corporate data leaks.
ms.topic: how-to
@@ -25,26 +25,26 @@ keywords:
# Step 2. Enroll devices into management with Intune
-There are several ways to secure the endpoint, a term often used to refer to the combined entity including devices, apps, and user identity. Security policies must be enforced consistently and reliably not only on the apps but the device itself. Enrolling the device to Intune and registering with a cloud identity provider, such as Microsoft Entra ID, is a great start.
+There are several ways to secure the endpoint, a term often used to refer to the combined entity including devices, apps, and user identity. Security policies must be enforced consistently and reliably not only on the apps but the device itself. Enrolling the device to Microsoft Intune and registering with a cloud identity provider, such as Microsoft Entra ID, is a great start.
-Whether a device is a personally owned Bring Your Own Device (BYOD) or a corporate-owned and fully managed device, it's good to have visibility into the endpoints accessing your organization’s resources to ensure you’re only allowing healthy and compliant devices. This includes the health and trustworthiness of mobile and desktop apps that run on endpoints. You want to ensure those apps are healthy and compliant and that they prevent corporate data from leaking to consumer apps or services through malicious intent or accidental means.
+Whether a device is a personally owned *bring your own device* (BYOD) or a corporate-owned and fully managed device, it's good to have visibility into the endpoints that access your organization’s resources to ensure you’re only allowing healthy and compliant devices. This visibility should include the health and trustworthiness of mobile and desktop apps that run on endpoints. You want to ensure those apps are healthy and compliant and that they prevent corporate data from leaking to consumer apps or services through malicious intent or accidental means.
The device enrollment process establishes a relationship between the user, the device, and the Microsoft Intune service. Using Microsoft Intune as a standalone service enables you to use a single web-based administration console to manage Windows PCs, macOS, and the most popular mobile device platforms.
-This article recommends methods for enrolling devices to Intune. For more information about these methods and how to deploy each one, see [Deployment guidance: Enroll devices in Microsoft Intune](/mem/intune/fundamentals/deployment-guide-enrollment).
+This article recommends methods for enrolling devices in Intune. For more information about these methods and how to deploy each one, see [Deployment guidance: Enroll devices in Microsoft Intune](/mem/intune-service/fundamentals/deployment-guide-enrollment).
:::image type="content" source="../media/devices/intune-mdm-step-1.png" alt-text="The first step of Mobile Device Management to enroll devices in Intune." lightbox="../media/devices/intune-mdm-step-1.png":::
Use the guidance in this article together with this illustrated version of enrollment options for each platform.
-[](https://download.microsoft.com/download/e/6/2/e6233fdd-a956-4f77-93a5-1aa254ee2917/msft-intune-enrollment-options.pdf) [PDF](https://download.microsoft.com/download/e/6/2/e6233fdd-a956-4f77-93a5-1aa254ee2917/msft-intune-enrollment-options.pdf) | [Visio](https://download.microsoft.com/download/e/6/2/e6233fdd-a956-4f77-93a5-1aa254ee2917/msft-intune-enrollment-options.vsdx) Updated June 2022
+[](https://download.microsoft.com/download/e/6/2/e6233fdd-a956-4f77-93a5-1aa254ee2917/msft-intune-enrollment-options.pdf) [PDF](https://download.microsoft.com/download/e/6/2/e6233fdd-a956-4f77-93a5-1aa254ee2917/msft-intune-enrollment-options.pdf) | [Visio](https://download.microsoft.com/download/e/6/2/e6233fdd-a956-4f77-93a5-1aa254ee2917/msft-intune-enrollment-options.vsdx) Last reviewed March 2025
## Windows enrollment
-There are several options for enrolling Windows 10 and Windows 11 devices. The most common methods include these two:
+There are several options for enrolling Windows 10 and Windows 11 devices. The most common methods include the following two:
-- **Microsoft Entra ID join:** Joins the device with Microsoft Entra ID and enables users to sign in to Windows with their Microsoft Entra credentials. If Auto Enrollment is enabled, the device is automatically enrolled in Intune. The benefit of auto enrollment is a single-step process for the user. Otherwise, they'll have to enroll separately through MDM only enrollment and reenter their credentials. Users enroll this way either during initial Windows OOBE or from Settings. The device is marked as a corporate owned device in Intune.
-- **Autopilot:** Automates Microsoft Entra join and enrolls new corporate-owned devices into Intune. This method simplifies the out-of-box experience and removes the need to apply custom operating system images onto the devices. When admins use Intune to manage Autopilot devices, they can manage policies, profiles, apps, and more after they're enrolled. There are four types of Autopilot deployment:
+- **Microsoft Entra ID join:** Joins the device with Microsoft Entra ID and enables users to sign in to Windows with their Microsoft Entra credentials. When Automatic Enrollment is configured within Intune, the device is automatically enrolled in Intune. The benefit of automatic enrollment is a single-step process for the user. Otherwise, they'll have to enroll separately through MDM-only enrollment and reenter their credentials. Users enroll this way either during initial Windows out-of-box experience (OOBE) or from Settings. The device is marked as a corporate-owned device in Intune.
+- **Windows Autopilot:** Automates Microsoft Entra join and enrolls new corporate-owned devices into Intune. This method simplifies the out-of-box experience and removes the need to apply custom operating system images onto the devices. When admins use Intune to manage Autopilot devices, they can manage policies, profiles, apps, and more after they're enrolled. There are four types of Autopilot deployment:
- Self-Deploying Mode (for kiosks, digital signage, or a shared device)
@@ -54,14 +54,14 @@ There are several options for enrolling Windows 10 and Windows 11 devices. The m
- Autopilot for existing devices enables you to easily deploy the latest version of Windows to your existing devices.
-For additional options, including enrolling BYOD Windows devices, see, [Enroll Windows devices in Microsoft Intune](/mem/intune/fundamentals/deployment-guide-enrollment-windows).
+For additional options, including enrolling BYOD Windows devices, see, [Enroll Windows devices in Microsoft Intune](/mem/intune-service/fundamentals/deployment-guide-enrollment-windows).
## iOS and iPadOS enrollment
-For user owned (BYOD) devices, you can let users enroll their personal devices with Intune using one of the following methods.
+For user owned BYOD devices, you can let users enroll their personal devices with Intune using one of the following methods.
-- Device enrollment is what you may think of as typical BYOD enrollment. It provides admins with a wide range of management options.
-- User enrollment is a more streamlined enrollment process that provides admins with a subset of device management options. This feature is currently in preview.
+- Device enrollment is what you might think of as typical BYOD enrollment. It provides admins with a wide range of management options.
+- User enrollment is a more streamlined enrollment process that provides admins with a subset of device management options.
For organizations that buy devices for their users, Intune supports the following iOS/iPadOS company-owned device enrollment methods:
@@ -70,26 +70,26 @@ For organizations that buy devices for their users, Intune supports the followin
- Apple Configurator Setup Assistant enrollment
- Apple Configurator direct enrollment
-For more information, see [Enroll iOS and iPadOS devices in Microsoft Intune](/mem/intune/fundamentals/deployment-guide-enrollment-ios-ipados).
+For more information, see [Enroll iOS and iPadOS devices in Microsoft Intune](/mem/intune-service/fundamentals/deployment-guide-enrollment-ios-ipados).
## Android enrollment
-There are several options for Android Enrollment depending on the type of device, the type of enrollment you’d like to support, as well as things like the Android version you're using or even the manufacturer (particularly Samsung). Most organizations use Android Work profiles for their end users, particular in BYOD scenarios.
+There are several options for Android enrollment that depend on the type of device, the type of enrollment you want to support, factors like the Android version you're using, and even the manufacturer (particularly Samsung). Most organizations use Android Work profiles for their end users, particular in BYOD scenarios.
-With an Android work profile, the end user’s information is separated distinctly with data containers as well as separate apps for work and personal use. This is an ideal way for users to enroll their device while still maintaining the privacy of their own data and the security of corporate data.
+With an Android work profile, the end user’s information is separated distinctly with data containers and separate apps for work and personal use. This is an ideal way for users to enroll their device while still maintaining the privacy of their own data and the security of corporate data.
However, if your organization is providing Android devices, you might choose to use what is called a fully managed (User Affinity) or dedicated (no User Affinity) device.
-To learn more about Android enrollment, see [Enroll Android devices in Microsoft Intune](/mem/intune/fundamentals/deployment-guide-enrollment-android).
+To learn more about Android enrollment, see [Enroll Android devices in Microsoft Intune](/mem/intune-service/fundamentals/deployment-guide-enrollment-android).
## macOS enrollment
-Enrollment for macOS can be a tricky subject for lots of IT organizations. Unless a majority of your users are Mac users, then you may not be managing these types of devices to a great extent. If you have a small number of macOS users, we recommend Intune Only Enrollment. If you have a large number of macOS users, we recommend Intune + Jamf enrollment.
+Enrollment for macOS can be a tricky subject for lots of IT organizations. Unless a majority of your users are Mac users, you might not be managing these types of devices extensively. If you have a few macOS users, we recommend Intune-only enrollment. If you have a large number of macOS users, we recommend Intune + Jamf enrollment.
-- **Intune Only enrollment:** This is for basic management of macOS devices. It requires a manual process much like most of the other user-based enrollment options. But if you have a small number of Mac devices this may be easier than setting up an entire automated infrastructure just for those few users. With Intune only enrollment, you have the ability to deploy things such as certificates, password configurations, and applications. You can also configure compliance policies and enlighten Conditional Access as well as the ability to enforce encryption and device wipe.
-- **Intune and Jamf enrollment:** For those looking for the deepest support for Mac management with Jamf + Intune for Conditional Access, Microsoft has a great solution that combines the extensive Mac management capabilities of Jamf with Intune compliance with Conditional Access policies. In this scenario you're still fully managing the device with Jamf while being able to take those signals from Jamf for increased security.
+- **Intune-only enrollment:** This enrollment supports basic management of macOS devices. It requires a manual process much like most other user-based enrollment options. But if you have a small number of Mac devices this might be easier than setting up an entire automated infrastructure just for those few users. With Intune-only enrollment, you can deploy things like certificates, password configurations, and applications. You can also configure compliance policies, enable Conditional Access, and enforce encryption and device wipe.
+- **Intune and Jamf enrollment:** When you want deeper support for Mac management, use Jamf + Intune for Conditional Access. Microsoft has a great solution that combines the extensive Mac management capabilities of Jamf with Intune compliance with Conditional Access policies. In this scenario you're still fully managing the device with Jamf while being able to take those signals from Jamf for increased security.
-To learn more about macOS enrollment, see [Enroll macOS devices in Microsoft Intune](/mem/intune/fundamentals/deployment-guide-enrollment-macos).
+To learn more about macOS enrollment, see [Enroll macOS devices in Microsoft Intune](/mem/intune-service/fundamentals/deployment-guide-enrollment-macos).
## Next step
diff --git a/microsoft-365/solutions/manage-devices-with-intune-monitor-risk.md b/microsoft-365/solutions/manage-devices-with-intune-monitor-risk.md
index 2d16eba52fc..a8ef3ccf3ed 100644
--- a/microsoft-365/solutions/manage-devices-with-intune-monitor-risk.md
+++ b/microsoft-365/solutions/manage-devices-with-intune-monitor-risk.md
@@ -9,7 +9,7 @@ f1.keywords:
- monitor device compliance
- deploy security baselines
manager: dougeby
-ms.date: 04/16/2024
+ms.date: 03/14/2025
audience: ITPro
ms.topic: how-to
ms.service: o365-solutions
@@ -29,14 +29,14 @@ keywords:
After your organization deploys Microsoft Defender for Endpoint, you can gain greater insights and protection of your devices by integrating Microsoft Intune with Defender for Endpoint. For mobile devices, this includes the ability to monitor device risk as a condition for access. For Windows devices, you can monitor compliance of these devices to security baselines.
-Deploying Microsoft Defender for Endpoint includes onboarding endpoints. If you used Intune to onboard endpoints (recommended), then you've connected Microsoft Intune to Defender for Endpoint. If you used a different method to onboard endpoints to Defender for Endpoint, see [Configure Microsoft Defender for Endpoint in Intune](/mem/intune/protect/advanced-threat-protection-configure) to ensure you set up the service-to-service connection between Intune and Microsoft Defender for Endpoint.
+Deploying Microsoft Defender for Endpoint includes onboarding endpoints. If you used Intune to onboard endpoints (recommended), then you've connected Intune to Defender for Endpoint. If you used a different method to onboard endpoints to Defender for Endpoint, see [Configure Microsoft Defender for Endpoint in Intune](/mem/intune-service/protect/advanced-threat-protection-configure) to ensure you set up the service-to-service connection between Intune and Defender for Endpoint.
:::image type="content" source="../media/devices/devices-defender-for-endpoint-steps.svg" alt-text="The integration of Microsoft Intune with Microsoft Defender for Endpoint, including how Defender for Endpoint shares its signals with Microsoft Defender XDR." lightbox="../media/devices/devices-defender-for-endpoint-steps.svg":::
In this illustration:
- Microsoft Defender for Endpoint greatly increases the sophistication of threat protection for devices.
-- Microsoft Intune allows you to set App Protection Policies and manage devices (including configuration changes). Defender for Endpoint continuously monitors your devices for threats, and can take automated action to remediate attacks.
+- Microsoft Intune allows you to set app protection policies and manage devices (including configuration changes). Defender for Endpoint continuously monitors your devices for threats, and can take automated action to remediate attacks.
- You can use Intune to onboard devices to Defender for Endpoint, which enables these devices to work with Microsoft Purview Endpoint Data Loss Prevention (DLP).
This article includes these steps:
@@ -50,17 +50,17 @@ If Defender for Endpoint hasn’t already been set up, work with your threat pro
With Microsoft Defender for Endpoint deployed, you can take advantage of threat risk signals. This allows you to block access to devices based on their risk score. Microsoft recommends allowing access to devices with a risk score of medium or lower.
-For Android and iOS/iPadOS, threat signals can be used within your App Protection Policies (APP). For more information, see [Create and assign app protection policy to set device risk level](/mem/intune/protect/advanced-threat-protection-configure#create-and-assign-compliance-policy-to-set-device-risk-level).
+For Android and iOS/iPadOS, threat signals can be used within your app protection policies. For more information, see [Create and assign app protection policy to set device risk level](/mem/intune-service/protect/advanced-threat-protection-configure#create-and-assign-compliance-policy-to-set-device-risk-level).
-For all platforms, you can set the risk level in the existing device compliance policies. For more information, see [Create a Conditional Access policy](/mem/intune/protect/advanced-threat-protection-configure#create-a-conditional-access-policy).
+For all platforms, you can set the risk level in the existing device compliance policies. For more information, see [Create a Conditional Access policy](/mem/intune-service/protect/advanced-threat-protection-configure#create-a-conditional-access-policy).
## Deploy security baselines and monitor compliance for these settings
Applies to: Windows 10, Windows 11
-The [Step 5. Deploy configuration profiles](manage-devices-with-intune-configuration-profiles.md) article recommends getting started with configuration profiles by using the security baselines, available for Windows 10 and Windows 11. Microsoft Defender for Endpoint also includes security baselines that provide settings that optimize all the security controls in the Defender for Endpoint stack, including settings for endpoint detection and response (EDR). These are also deployed by using Microsoft Intune.
+The [Step 5. Deploy configuration profiles](manage-devices-with-intune-configuration-profiles.md) article recommends getting started with configuration profiles by using the Intune security baselines that are available for Windows 10 and Windows 11. Intune also includes security baselines for Microsoft Defender for Endpoint that provide settings to optimize all the security controls in the Defender for Endpoint stack, including settings for endpoint detection and response (EDR).
-Ideally, devices onboarded to Defender for Endpoint are deployed both baselines: the Windows Intune security baseline to initially secure Windows and then the Defender for Endpoint security baseline layered on top to optimally configure the Defender for Endpoint security controls.
+Ideally, devices onboarded to Defender for Endpoint would receive both baselines: the security baseline for Windows to initially secure Windows, and then the Defender for Endpoint security baseline layered on top to optimally configure the Defender for Endpoint security controls.
To benefit from the latest data on risks and threats and to minimize conflicts as baselines evolve, always apply the latest versions of the baselines across all products as soon as they're released.
@@ -72,10 +72,10 @@ To deploy security baselines and monitor compliance for these settings, use the
|Step |Description |
|---------|---------|
-|1 |Review key concepts and compare the Microsoft Defender for Endpoint and the Windows Intune security baselines.
See [Increase compliance to the Microsoft Defender for Endpoint security baseline](../security/defender-endpoint/configure-machines-security-baseline.md) to learn recommendations.
See [Use security baselines to configure Windows devices in Intune](/mem/intune/protect/security-baselines) to review the list of available security baselines and how to avoid conflicts. |
-|2 | Deploy Windows security baseline settings for Intune. If you haven't, see the guidance in [Step 5. Deploy configuration profiles](manage-devices-with-intune-configuration-profiles.md). |
-|3 | Deploy Defender for Endpoint baseline settings for Intune. See [Manage security baseline profiles in Microsoft Intune](/mem/intune/protect/security-baselines-configure) to create the profile and choose the baseline version.
You can also follow the instructions here: [Review and assign the Microsoft Defender for Endpoint security baseline](../security/defender-endpoint/configure-machines-security-baseline.md#review-and-assign-the-microsoft-defender-for-endpoint-security-baseline). |
-|4 | In Defender for Endpoint, review the [Security baseline card on device configuration management](../security/defender-endpoint/configure-machines.md). |
+|1 |Review key concepts and compare the Microsoft Defender for Endpoint and the Windows security baselines in Intune.
To learn about recommendations for Defender for Endpoint, see [Increase compliance to the Microsoft Defender for Endpoint security baseline](../security/defender-endpoint/configure-machines-security-baseline.md).
To review the list of security baselines that are available with Intune, and how to avoid conflicts, see [Use security baselines to configure Windows devices in Intune](/mem/intune-service/protect/security-baselines).
+|2 | Use Intune to deploy the security baseline for Windows settings. For more information, see related guidance in [Step 5. Deploy device profiles](manage-devices-with-intune-configuration-profiles.md). |
+|3 | Use Intune to deploy Defender for Endpoint baseline settings. To create the profile and choose the correct baseline, see [Manage security baseline profiles in Microsoft Intune](/mem/intune-service/protect/security-baselines-configure).
You can also follow the instructions as [Review and assign the Microsoft Defender for Endpoint security baseline](../security/defender-endpoint/configure-machines-security-baseline.md#review-and-assign-the-microsoft-defender-for-endpoint-security-baseline) in the Defender for Endpoint documentation. |
+|4 | In the Defender for Endpoint documentation, review [Ensure your devices are configured properly](../security/defender-endpoint/configure-machines.md) and the [Security baseline card on device configuration management](/defender-endpoint/configure-machines-security-baseline#monitor-compliance-to-the-defender-for-endpoint-security-baseline). |
## Next step
diff --git a/microsoft-365/solutions/manage-devices-with-intune-overview.md b/microsoft-365/solutions/manage-devices-with-intune-overview.md
index a4082dd1d4c..387ef16b71a 100644
--- a/microsoft-365/solutions/manage-devices-with-intune-overview.md
+++ b/microsoft-365/solutions/manage-devices-with-intune-overview.md
@@ -8,7 +8,7 @@ f1.keywords:
- zero trust deployment stack
- device management with zero trust
manager: dougeby
-ms.date: 04/17/2024
+ms.date: 03/14/2025
audience: ITPro
ms.topic: solution-overview
description: Enroll your endpoint devices in Microsoft Intune as part of your Zero Trust security architecture, protecting against ransomware while building in protection for remote workers.
@@ -31,7 +31,7 @@ While Microsoft 365 includes several tools and methodologies for managing and pr
- Plan to enroll devices into Intune through Microsoft Entra join (including Microsoft Entra hybrid join).
- Plan to manually enroll devices into Intune.
-- Allow BYOD devices with plans to implement protection for apps and data and/or enroll these devices to Intune.
+- Allow bring your own devices (BYOD) with plans to implement protection for apps and data and/or enroll these devices in Intune.
On the other hand, if your environment includes plans for co-management including Microsoft Configuration Manager, see [Co-management documentation](/mem/configmgr/comanage/) to develop the best path for your organization. If your environment includes plans for Windows 365 Cloud PC, see [Windows 365 Enterprise documentation](/windows-365/enterprise/) to develop the best path for your organization.
@@ -42,11 +42,11 @@ Watch this video for an overview of the deployment process.
## Why manage endpoints?
-The modern enterprise has an incredible diversity of endpoints accessing their data. This setup creates a massive attack surface, and as a result, endpoints can easily become the weakest link in your Zero Trust security strategy.
+The modern enterprise has an incredible diversity of endpoints accessing its data. This setup creates a massive attack surface, and as a result, endpoints can easily become the weakest link in your Zero Trust security strategy.
-Mostly driven by necessity as the world shifted to a remote or hybrid work model, users are working from anywhere, from any device, more than anytime in history. Attackers are quickly adjusting their tactics to take advantage of this change. Many organizations face constrained resources as they navigate these new business challenges. Virtually overnight, companies have accelerated digital transformation. Simply stated, the way people work has changed. We no longer expect to access the myriad of corporate resources only from the office and on company-owned devices.
+Mostly driven by necessity as the world shifted to a remote or hybrid work model, users work from anywhere, from any device, more than at any time in history. Attackers are quickly adjusting their tactics to take advantage of this change. Many organizations face constrained resources as they navigate these new business challenges. Virtually overnight, companies have accelerated digital transformation. Simply stated, the way people work has changed. We no longer expect to access the myriad corporate resources only from the office and on company-owned devices.
-Gaining visibility into the endpoints accessing your corporate resources is the first step in your Zero Trust device strategy. Typically, companies are proactive in protecting PCs from vulnerabilities and attack while mobile devices often go unmonitored and without protections. To ensure you’re not exposing your data to risk, we need to monitor every endpoint for risks and employ granular access controls to deliver the appropriate level of access based on organizational policy. For example, if a personal device is jailbroken, you can block access to ensure that enterprise applications aren't exposed to known vulnerabilities.
+Gaining visibility into the endpoints that access your corporate resources is the first step in your Zero Trust device strategy. Typically, companies are proactive in protecting PCs from vulnerabilities and attacks, while mobile devices often go unmonitored and without protections. To ensure you’re not exposing your data to risk, we need to monitor every endpoint for risks and employ granular access controls to deliver the appropriate level of access based on organizational policy. For example, if a personal device is jailbroken, you can block its access to prevent enterprise applications from being exposed to known vulnerabilities.
This series of articles walks through a recommended process for managing devices that access your resources. If you follow the recommended steps, your organization will achieve very sophisticated protection for your devices and the resources they access.
@@ -56,15 +56,15 @@ Protecting the data and apps on devices and the devices themselves is a multi-la
The following diagram illustrates building blocks to achieve a Zero Trust security posture for Microsoft 365 and other SaaS apps that you introduce to this environment. The elements related to devices are numbered 1 through 7. Device admins will coordinate with other administrators to accomplish these layers of protection.
-:::image type="content" source="../media/devices/m365-zero-trust-deployment-stack-devices.svg" alt-text="desc." lightbox="../media/devices/m365-zero-trust-deployment-stack-devices.svg":::
+:::image type="content" source="../media/devices/m365-zero-trust-deployment-stack-devices.svg" alt-text="Diagram of the Zero Trust security posture building blocks." lightbox="../media/devices/m365-zero-trust-deployment-stack-devices.svg":::
In this illustration:
| | Step | Description | Licensing requirements |
|---|---|---|---|
-|1|Configure starting-point Zero Trust identity and device access policies|Work with your identity administrator to [**Implement Level 2 App Protection Policies (APP) data protection**](manage-devices-with-intune-app-protection.md). These policies don't require that you manage devices. You configure the APP policies in Intune. Your identity admin configures a Conditional Access policy to require approved apps.|E3, E5, F1, F3, F5|
-|2|Enroll devices to Intune|This task requires more planning and time to implement. Microsoft recommends using Intune to enroll devices because this tool provides optimal integration. There are several options for enrolling devices, depending on the platform. For example, Windows devices can be enrolled by using Microsoft Entra join or by using Autopilot. You need to review the options for each platform and decide which enrollment option is best for your environment. See [**Step 2. Enroll devices to Intune**](manage-devices-with-intune-enroll.md) for more information.|E3, E5, F1, F3, F5|
-|3|Configure compliance policies|You want to be sure devices that are accessing your apps and data meet minimum requirements, for example devices are password or pin-protected and the operating system is up to date. Compliance policies are the way to define the requirements that devices must meet. [**Step 3. Set up compliance policies**](manage-devices-with-intune-compliance-policies.md) helps you configure these policies.|E3, E5, F3, F5|
+|1|Configure starting-point Zero Trust identity and device access policies|Step 1. [Implement app protection policies](manage-devices-with-intune-app-protection.md) to lay a foundation to protect devices by using Intune app protection policies, which don’t require device management. Then, collaborate with your identity team admin to implement Conditional Access policies that require approved apps and set [level 2 enterprise enhanced data protection](/mem/intune-service/apps/app-protection-framework#level-2-enterprise-enhanced-data-protection), which is the recommended starting level for devices where users access sensitive information.|E3, E5, F1, F3, F5|
+|2|Enroll devices to Intune|This task requires more planning and time to implement. Microsoft recommends using Intune to enroll devices because this tool provides optimal integration. There are several options for enrolling devices, depending on the platform. For example, Windows devices can be enrolled by using Microsoft Entra join or by using Autopilot. You need to review the options for each platform and decide which enrollment option is best for your environment. See [**Step 2. Enroll devices in Intune**](manage-devices-with-intune-enroll.md) for more information.|E3, E5, F1, F3, F5|
+|3|Configure compliance policies|You want to be sure devices that are accessing your apps and data meet minimum requirements. For example, devices are password or PIN-protected and the operating system is up to date. Compliance policies are the way to define the requirements that devices must meet. [**Step 3. Set up compliance policies**](manage-devices-with-intune-compliance-policies.md) helps you configure these policies.|E3, E5, F3, F5|
|4|Configure Enterprise (recommended) Zero Trust identity and device access policies|Now that your devices are enrolled, you can work with your identity admin to [**tune Conditional Access policies to require healthy and compliant devices**](manage-devices-with-intune-require-compliance.md).|E3, E5, F3, F5|
|5|Deploy configuration profiles|As opposed to device compliance policies that simply mark a device as compliant or not based on criteria you configure, configuration profiles actually change the configuration of settings on a device. You can use configuration policies to harden devices against cyberthreats. See [**Step 5. Deploy configuration profiles**](manage-devices-with-intune-configuration-profiles.md).|E3, E5, F3, F5|
|6|Monitor device risk and compliance with security baselines|In this step, you connect Intune to Microsoft Defender for Endpoint. With this integration, you can then monitor device risk as a condition for access. Devices that are found to be in a risky state are blocked. You can also monitor compliance with security baselines. See [**Step 6. Monitor device risk and compliance to security baselines**](manage-devices-with-intune-monitor-risk.md).|E5, F5|
@@ -72,15 +72,15 @@ In this illustration:
## Coordinating endpoint management with Zero Trust identity and device access policies
-This guidance is tightly coordinated with the recommended [**Zero Trust identity and device access policies**](../security/office-365-security/zero-trust-identity-device-access-policies-overview.md). You'll be working with your identity team to carry through protection that you configure with Intune into Conditional Access policies in Microsoft Entra ID.
+This guidance is tightly coordinated with the recommended [**Zero Trust identity and device access policies**](../security/office-365-security/zero-trust-identity-device-access-policies-overview.md). You'll work with your identity team to carry through protection that you configure with Intune into Conditional Access policies in Microsoft Entra ID.
-Here’s an illustration of the recommended policy set with step callouts for the work you'll do in Intune and the related Conditional Access policies you'll help coordinate in Microsoft Entra ID.
+Following is an illustration of the recommended policy set with step callouts for the work you'll do in Intune and the related Conditional Access policies you'll help coordinate in Microsoft Entra ID.
:::image type="content" source="../media/devices/identity-device-overview-steps.svg" alt-text="Zero Trust identity and device access policies." lightbox="../media/devices/identity-device-overview-steps.svg":::
In this illustration:
-- In Step 1, [**Implement Level 2 App Protection Policies (APP)**](manage-devices-with-intune-app-protection.md) you configure the recommended level of data protection with APP policies. Then you work with your identity team to configure the related Conditional Access rule to require use of this protection.
+- In Step 1, [level 2 app protection policies](manage-devices-with-intune-app-protection.md) are configured as the recommended level of data protection with Intune app protection policies. Then you work with your identity team to configure the related Conditional Access rule to require the use of this protection.
- In Steps 2, 3 and 4, you enroll devices into management with Intune, define device compliance policies, and then coordinate with your identity team to configure the related Conditional Access rule to only allow access to compliant devices.
-Microsoft Syntex provides a powerful suite of content management and productivity services that harnesses AI and machine learning to intelligently discover, analyze, organize, classify, and process your organization's documents.
+Microsoft Syntex provides a powerful suite of pay-as-you-go content management and productivity services that harnesses AI and machine learning to intelligently discover, analyze, organize, classify, and process your organization's documents. With pay-as-you-go licensing, your organization can use these services without any license commitment or upfront purchasing.
-By automating content workflows and enhancing understanding, these services transform your business documents into actionable knowledge. This streamlines everyday processes and provides valuable insights, empowering your organization to make informed decisions.
+By automating content workflows and enhancing understanding, these services transform your business documents into actionable knowledge. This streamlines everyday processes, provides valuable insights, and empowers people in your organization to make informed decisions.
\ No newline at end of file
diff --git a/microsoft-365/syntex/unstructured-setup.md b/microsoft-365/syntex/unstructured-setup.md
index 8eee2b32bc8..8c8d2a29afd 100644
--- a/microsoft-365/syntex/unstructured-setup.md
+++ b/microsoft-365/syntex/unstructured-setup.md
@@ -1,10 +1,10 @@
---
-title: Set up and manage unstructured document processing in Microsoft Syntex
+title: Set up and manage unstructured document processing in SharePoint
ms.author: chucked
author: chuckedmonson
manager: jtremper
ms.reviewer: ssquires
-ms.date: 01/13/2025
+ms.date: 03/24/2025
audience: admin
ms.topic: install-set-up-deploy
ms.custom: setup
@@ -15,12 +15,12 @@ ms.collection:
- enabler-strategic
- m365initiative-syntex
ms.localizationpriority: medium
-description: Learn how to set up and manage unstructured document processing in SharePoint.
+description: Learn how to set up and manage the unstructured document processing service in SharePoint.
---
-# Set up and manage unstructured document processing in Microsoft Syntex
+# Set up and manage unstructured document processing in SharePoint
-The unstructured document processing service for Microsoft Syntex is set up in the Microsoft 365 admin center.
+Unstructured document processing is a pay-as-you-go service that is set up in the Microsoft 365 admin center.
## Prerequisites
@@ -54,13 +54,16 @@ By default, unstructured document processing is turned on for libraries in all S
6. In the **Sites where models can be used** section, select **Edit**.
-7. On the **Sites where models can be used** panel, change the setting from **All sites** to **Selected sites (up to 100)**. For selected sites, follow the instructions to select the sites or upload a CSV listing of the sites. You can then manage site access permissions for the sites you selected.
+7. On the **Sites where models can be used** panel, change the setting from **All sites** to **Selected sites (up to 100)**.
- > [!NOTE]
- > You must be a member of any site that you want to include in the CSV file.
+ For selected sites, follow the instructions to select the sites or upload a CSV listing of the sites. You can then manage site access permissions for the sites you selected.
+
+ To allow model creation on content center sites, select **Enable unstructured model creation in all content center sites (recommended)**.
+
+ 
> [!NOTE]
- > Disabling a site after a model is made available to process files on that site doesn't disable the model. Models can still be used to process files and incur charges. A model can be made available to process files by being created either on that site or in a content center.
+ > You must be a member of any site that you want to include in the CSV file.
> [!NOTE]
> For multi-geo environments, the **No sites** and **Selected sites** settings apply only to the primary geo of multi-geo tenants. If you want to restrict or add sites in nonprimary geos, contact Microsoft support.
diff --git a/microsoft-365/whiteboard/deploy-on-windows-organizations.md b/microsoft-365/whiteboard/deploy-on-windows-organizations.md
index cfc773a4866..ad35ee96cbe 100644
--- a/microsoft-365/whiteboard/deploy-on-windows-organizations.md
+++ b/microsoft-365/whiteboard/deploy-on-windows-organizations.md
@@ -17,51 +17,18 @@ description: Learn how to deploy Microsoft Whiteboard on devices running Windows
# Deploy Microsoft Whiteboard on Windows 10 devices
-Whiteboard can be deployed on devices that run Windows 10 or later using Microsoft Intune or Microsoft Configuration Manager (formerly System Center Configuration Manager). Whiteboard isn't supported on Windows Server.
+Whiteboard can be deployed on devices that run Windows 10 or later using Microsoft Intune. Whiteboard isn't supported on Windows Server.
In order to deploy Whiteboard, you must first ensure that Whiteboard is enabled for your organization. For more information, see [Manage access to Whiteboard](manage-whiteboard-access-organizations.md).
- **Microsoft Intune using an online license mode** – This process allows you to specify groups of users who will receive access to the Whiteboard app.
-- **Microsoft Configuration Manager using manual offline installation and updates** – This process allows you to install Whiteboard and then manually update it every 2–4 weeks.
-
->[!NOTE]
-> We recommend using Microsoft Intune. Using Microsoft Configuration Manager requires IT to continuously repackage and install updates to ensure users are running an up-to-date version.
-
## Install Whiteboard using Microsoft Intune
1. Add Whiteboard as an available app using the steps in this article: [Add Microsoft Store apps to Microsoft Intune](/mem/intune/apps/store-apps-windows).
2. Assign the app to a group using the steps in this article: [Assign apps to groups with Microsoft Intune](/mem/intune/apps/apps-deploy).
-## Install Whiteboard using Microsoft Configuration Manager
-
-1. Using a global administrator account, sign in to the [Microsoft Store for Business](https://businessstore.microsoft.com).
-
-2. In the header, select **Manage**.
-
-3. In the right-hand navigation pane, select **Settings**, and then turn on **Show offline apps**.
-
-4. Wait 10–15 minutes for propagation.
-
-5. Next, go to the [Whiteboard app](https://businessstore.microsoft.com/store/details/microsoft-whiteboard/9mspc6mp8fm4).
-
-6. Select **Get the app**, and then accept the license terms.
-
-7. Go back to the application page.
-
-8. In the **License type** drop-down menu, select **Offline**.
-
-9. Select **Manage**.
-
-10. This action takes you to the inventory management page, which will now offer the option to **Download package for offline use**.
-
-11. Choose the architecture version, and then download it.
-
-12. As soon as you've downloaded the app, you can deploy it through Configuration Manager. To create an update package, follow steps 7–10 to download a newer version and package it for Configuration Manager.
-
-13. For more information, see [Install applications for a device](/mem/configmgr/apps/deploy-use/install-app-for-device).
-
## See also
[Manage access to Whiteboard](manage-whiteboard-access-organizations.md)