You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: microsoft-365/loop/cpcn-loop-spe-management.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
ms.date: 06/10/2025
3
-
title: "Managing SharePoint Embedded containers for Copilot Notebooks, Copilot Pages, or Loop workspaces"
3
+
title: "Manage SharePoint Embedded containers for Copilot Notebooks, Copilot Pages, or Loop workspaces"
4
4
ms.reviewer: dancost, tonchan
5
5
ms.author: jenz
6
6
author: jenzamora
@@ -24,21 +24,29 @@ search.appverid:
24
24
description: "Learn about managing SharePoint Embedded containers for Copilot Notebooks, Copilot Pages, or Loop workspaces."
25
25
---
26
26
27
-
# Managing SharePoint Embedded containers for Copilot Notebooks, Copilot Pages, or Loop workspaces
27
+
# Manage SharePoint Embedded containers for Copilot Notebooks, Copilot Pages, or Loop workspaces
28
28
29
-
IT admins can manage SharePoint Embedded containers like they manage SharePoint sites using either [SharePoint Admin Center](/sharepoint/dev/embedded/concepts/admin-exp/consuming-tenant-admin/ctaux) or [PowerShell](/sharepoint/dev/embedded/concepts/admin-exp/consuming-tenant-admin/ctapowershell), with the appropriate [SharePoint Embedded administrator role](/sharepoint/dev/embedded/concepts/admin-exp/adminrole). Storage and quota are combined with SharePoint in your tenant. You'll need the Loop application IDs for PowerShell and Audit Logs:
29
+
IT admins can manage SharePoint Embedded containers like they manage SharePoint sites using either [SharePoint Admin Center](/sharepoint/dev/embedded/concepts/admin-exp/consuming-tenant-admin/ctaux) or [PowerShell](/sharepoint/dev/embedded/concepts/admin-exp/consuming-tenant-admin/ctapowershell), with the appropriate [SharePoint Embedded administrator role](/sharepoint/dev/embedded/concepts/admin-exp/adminrole). Install the [latest version of SharePoint PowerShell module](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online). Storage and quota are combined with SharePoint in your organization. Use the Loop application IDs to filter to Loop in PowerShell and Audit Logs:
30
30
31
31
- Loop Web Application ID: `a187e399-0c36-4b98-8f04-1edc167a0996`
32
32
- Loop Mobile Application ID: `0922ef46-e1b9-4f7e-9134-9ad00547eb41`
33
33
- Copilot Pages and Copilot Notebooks containers are created using the Loop Application IDs.
34
34
35
35
## Ownerless workspaces
36
36
37
-
IT admins can use SharePoint Admin Center and PowerShell to find ownerless tenant-owned Loop workspaces. For more information, see [Consuming Tenant Admin](/sharepoint/dev/embedded/concepts/admin-exp/cta), and [Get-SPO Container](/powershell/module/sharepoint-online/get-spocontainer). The Loop Application IDs are listed in this article.
37
+
IT admins can use SharePoint Admin Center and PowerShell to find ownerless tenant-owned Loop workspaces. For more information, see [Consuming Tenant Admin](/sharepoint/dev/embedded/concepts/admin-exp/cta), and [Get-SPO Container](/powershell/module/sharepoint-online/get-spocontainer). The Loop Application IDs are listed [in this article](#manage-sharepoint-embedded-containers-for-copilot-notebooks-copilot-pages-or-loop-workspaces).
38
+
39
+
## Listing all the user-owned containers
40
+
41
+
To get a list of all of user-owned containers in your organization, regardless of the container name, update the following sample PowerShell to your needs:
42
+
43
+
```PowerShell
44
+
Get-SPOContainer -OwningApplicationId 'a187e399-0c36-4b98-8f04-1edc167a0996' | WHERE OwnershipType -EQ 'UserOwned' | FT
45
+
```
38
46
39
47
## Purview and SharePoint Embedded
40
48
41
-
All SharePoint Embedded containers are targeted using the "All SharePoint Sites" scope in Microsoft Purview. For example, if configuring Retention Policies, the configuration you specify that targets All SharePoint Sites will apply to every Copilot Pages and Copilot Notebooks container in SharePoint Embedded, and every Loop workspace in SharePoint Embedded. This includes all ownership types: user, group, and tenantowned SharePoint Embedded containers.
49
+
All SharePoint Embedded containers are targeted using the "All SharePoint Sites" scope in Microsoft Purview. For example, if configuring Retention Policies, the configuration you specify that targets All SharePoint Sites applies to every Copilot Pages and Copilot Notebooks container in SharePoint Embedded, and every Loop workspace in SharePoint Embedded. All SharePoint Sites includes all SharePoint Embedded container ownership types: user, group, and tenant-owned.
Copy file name to clipboardExpand all lines: microsoft-365/loop/cpcn-storage.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,19 +28,15 @@ appliesto:
28
28
29
29
## Storage
30
30
31
-
Copilot Pages and Copilot Notebooks are stored within your tenant in SharePoint Embedded. Copilot Pages, Copilot Notebooks and the Loop My workspace all use the same container. The container is lifetime managed with the user account and can be [managed using SharePoint Embedded admin tools](cpcn-loop-spe-management.md).
31
+
Copilot Pages and Copilot Notebooks are stored within your organization in SharePoint Embedded. Copilot Pages, Copilot Notebooks and the Loop My workspace all use the same container. The container is lifetime managed with the user account and can be [managed using SharePoint Embedded admin tools](cpcn-loop-spe-management.md).
32
32
33
33
## Container name
34
34
35
-
The Copilot Pages, Copilot Notebooks and Loop My workspace all use the same container. This user-owned container is named 'Pages' if the person visits the M365 Copilot app first. It is named 'My workspace' if the person visits the Loop app first. To get a list of all of these user-owned containers in your organization, regardless of the container name, update the following sample PowerShell to your needs:
36
-
37
-
```PowerShell
38
-
Get-SPOContainer -OwningApplicationId 'a187e399-0c36-4b98-8f04-1edc167a0996' | WHERE OwnershipType -EQ 'UserOwned' | FT
39
-
```
35
+
The Copilot Pages, Copilot Notebooks and Loop My workspace all use the same container. This user-owned container is named 'Pages' if the person visits the Microsoft 365 Copilot app first. It is named 'My workspace' if the person visits the Loop app first. Refer to [listing all user-owned containers](cpcn-loop-spe-management.md#listing-all-the-user-owned-containers) to get a list, regardless of the container name.
40
36
41
37
## Storage quota
42
38
43
-
All Copilot Pages and Copilot Notebooks count against your tenant's SharePoint storage quota.
39
+
All Copilot Pages and Copilot Notebooks count against your organization's SharePoint storage quota.
44
40
45
41
SharePoint Embedded also offers a platform for developers to build their own applications. This alternate usage pattern which bills per use is different from Loop and Copilot Pages storage quota management.
46
42
@@ -60,7 +56,7 @@ Copilot Pages + Copilot Notebooks container has a maximum size of 25 TB. This li
60
56
- Admins can recover content during the soft delete period using the SharePoint Admin Center or PowerShell.
61
57
62
58
> [!NOTE]
63
-
> When a user selects the Copilot Pages module in the Microsoft 365 Copilot app, a SharePoint Embedded container is currently created automatically—even if the user does not go on to create a Copilot Page. If no files are added to the container, the system will later delete it automatically. *This behavior is temporary.* An update is in progress to ensure that a Copilot Pages container is only created when a user actually creates a Copilot Page. Until that update is deployed, IT administrators and compliance officers can safely disregard these system-initiated deletions. These containers do not contain any user-generated content when they are removed.
59
+
> When a user selects the Copilot Pages module in the Microsoft 365 Copilot app, a SharePoint Embedded container is currently created automatically—even if the user doesn't go on to create a Copilot Page. If no files are added to the container, the system will later delete it automatically. *This behavior is temporary.* An update is in progress to ensure that a Copilot Pages container is only created when a user actually creates a Copilot Page. Until that update is deployed, IT administrators and compliance officers can safely disregard these system-initiated deletions. These containers don't contain any user-generated content when they're removed.
64
60
65
61
> [!IMPORTANT]
66
62
> A feature for IT admins to assign temporary custodians during the cleanup period of user-owned workspaces isn't yet available. This capability for Copilot Pages and Copilot Notebooks is planned (Microsoft Roadmap ID 421612).
Copy file name to clipboardExpand all lines: microsoft-365/loop/loop-storage.md
+9-15Lines changed: 9 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,17 +29,17 @@ appliesto:
29
29
## Storage
30
30
31
31
> [!NOTE]
32
-
> The Copilot Pages and Copilot Notebooks content has moved to a [dedicated article](cpcn-storage.md).
32
+
> The Copilot Pages and Copilot Notebooks content moved to a [dedicated article](cpcn-storage.md).
33
33
34
34
Loop content is stored in SharePoint, OneDrive, and [SharePoint Embedded](/sharepoint/dev/embedded/concepts/admin-exp/consuming-tenant-admin/cta), allowing familiar management within existing file management workflows. Where the content was originally created determines its storage location:
35
35
36
36
|Content content originally created in|Content stored in SharePoint Embedded|Content stored in SharePoint Site|Content stored in User's OneDrive|Lifetime Management|
37
37
|-----|-----|-----|-----|-----|
38
38
|Loop app, My workspace *|✔️in user-owned container|||user account|
|OneNote for Windows or for the web|||✔️in 📁`OneNote Loop files`|user account|
@@ -49,17 +49,11 @@ Loop content is stored in SharePoint, OneDrive, and [SharePoint Embedded](/share
49
49
50
50
## My workspace container name
51
51
52
-
Copilot Pages and Copilot Notebooks all use the Loop My workspace container. This user-owned container appears as 'Pages' if the person first visits the M365 Copilot app, or as 'My workspace' if they first visit the Loop app. To list all user-owned containers in your organization, regardless of their name, use, and adapt the following sample PowerShell:
53
-
54
-
```PowerShell
55
-
Get-SPOContainer -OwningApplicationId 'a187e399-0c36-4b98-8f04-1edc167a0996' | WHERE OwnershipType -EQ 'UserOwned' | FT
56
-
```
57
-
58
-
Refer to the article [Managing SharePoint Embedded containers for Copilot Notebooks, Copilot Pages, or Loop workspaces](cpcn-loop-spe-management.md) for more information.
52
+
Copilot Pages and Copilot Notebooks all use the Loop My workspace container. This user-owned container is named 'Pages' if the person visits the Microsoft 365 Copilot app first. It is named 'My workspace' if the person visits the Loop app first. Refer to [listing all user-owned containers](cpcn-loop-spe-management.md#listing-all-the-user-owned-containers) to get a list, regardless of the container name.
59
53
60
54
## Storage quota
61
55
62
-
All Loop workspaces count against your tenant's SharePoint storage quota.
56
+
All Loop workspaces count against your organization's SharePoint storage quota.
63
57
64
58
SharePoint Embedded also offers a platform for developers to build their own applications. This alternate usage pattern which bills per use is different from Loop and Copilot Pages storage quota management.
65
59
@@ -71,7 +65,7 @@ Loop workspaces have a maximum size of 25 TB. This limit can't be increased or d
71
65
72
66
### Types of Loop workspaces
73
67
74
-
Storage behaviors after user departure depends on the type of Loop workspace. There's one **personal workspace** per user in your organization, created on demand by the person when accessed. All other created Loop workspaces are **shared workspaces**. For more information, see [workspace membership and Microsoft 365 groups](cpcn-loop-permission.md#workspace-membership-and-microsoft-365-groups) on the two shared workspace types.
68
+
Storage behaviors after user departure depends on the type of Loop workspace. There's one **personal workspace** per user in your organization, created on demand by the person when accessed. All other created Loop workspaces are **shared workspaces**. For more information, see [workspace membership and Microsoft 365 Groups](cpcn-loop-permission.md#workspace-membership-and-microsoft-365-groups) on the two shared workspace types.
75
69
76
70
### Shared Workspaces
77
71
@@ -82,7 +76,7 @@ Storage behaviors after user departure depends on the type of Loop workspace. Th
82
76
83
77
#### Microsoft 365 Group-owned
84
78
85
-
- The Microsoft 365 group permissions and manages the lifetime of group-owned shared Loop workspaces, similar to the management of SharePoint Team sites.
79
+
- The Microsoft 365 Group permissions and manages the lifetime of group-owned shared Loop workspaces, similar to the management of SharePoint Team sites.
86
80
87
81
### Personal Workspaces
88
82
@@ -103,7 +97,7 @@ Storage behaviors after user departure depends on the type of Loop workspace. Th
103
97
- The Ideas workspace is deprecated, no longer created by default, and replaced with the My workspace personal workspace.
104
98
- Ideas were the first default workspace, was tenant-owned, permissioned with a single-person roster.
105
99
- The Loop app doesn't delete the deprecated Ideas workspace; a user or an admin must delete it if needed.
106
-
- If a user hasn't added multiple owners to their Ideas workspace, the workspace becomes ownerless when they leave the company. It remains in the tenant and isn't automatically deleted.
100
+
- If a user doesn't have multiple owners on their Ideas workspace, the workspace becomes ownerless when they leave the company. It remains in the tenant and isn't automatically deleted.
107
101
108
102
### Loop components created in Microsoft 365 outside of the Loop app or Copilot Pages
0 commit comments