Skip to content

Commit a8f1abf

Browse files
ctapowershell.md
1 parent 7a117e2 commit a8f1abf

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/embedded/concepts/admin-exp/consuming-tenant-admin/ctapowershell.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ ms.localizationpriority: high
88
# Manage Containers in SharePoint PowerShell
99

1010

11-
The Consuming Tenant Administrator (CTA) can manage containers using PowerShell commands, specifically designed for container management. To access these commands, they must be assigned the role of Microsoft 365 SharePoint Embedded Administrator (SPE Admin). Global Administrators in Microsoft 365 can assign users the SharePoint Embedded Administrator role. The Global Administrator role inherently includes all permissions of the SharePoint Embedded Administrator role. Additionally, a SharePoint Administrator can assign themselves the SharePoint Embedded Administrator role to act as a Consuming Tenant Admin for SharePoint Embedded. The SharePoint Embedded Administrator role is available in both Microsoft Entra and the Microsoft 365 Admin Center.
11+
The Consuming Tenant Administrator can manage containers using PowerShell commands, specifically designed for container management. To access these commands, they must be assigned the role of Microsoft 365 SharePoint Embedded Administrator. Global Administrators in Microsoft 365 can assign users the SharePoint Embedded Administrator role. The Global Administrator role inherently includes all permissions of the SharePoint Embedded Administrator role. Additionally, a SharePoint Administrator can assign themselves the SharePoint Embedded Administrator role to act as a Consuming Tenant Admin for SharePoint Embedded. The SharePoint Embedded Administrator role is available in both Microsoft Entra and the Microsoft 365 Admin Center.
1212

13-
For more information on how to assign the SharePoint Embedded Admin role, refer to the [SPE Admin]([docs/embedded/concepts/admin-exp/adminrole.md](https://github.com/cindylay/sp-dev-docs/blob/update-ga/docs/embedded/concepts/admin-exp/adminrole.md))
13+
For more information on how to assign the SharePoint Embedded Admin role, refer to the [SharePoint Embedded Admin]([docs/embedded/concepts/admin-exp/adminrole.md](https://github.com/cindylay/sp-dev-docs/blob/update-ga/docs/embedded/concepts/admin-exp/adminrole.md))
1414

1515
The following are some of the container specific commands actions currently supported on PowerShell:
1616

1717
### Application administration
18-
- Get details of all SPE applications registered in the tenant
19-
- Get details of all SPE applications in CTA’s tenant sorted basis storage
20-
- Get detail of a specific SPE application in the tenant
18+
- Get details of all SharePoint Embedded applications registered in the tenant
19+
- Get details of all SharePoint Embedded applications the tenant sorted basis storage
20+
- Get detail of a specific SharePoint Embedded application in the tenant
2121
- Get the permissions of owning applications in the tenant
22-
- Configure External sharing setting of a container of a SPE application in the tenant
22+
- Configure External sharing setting of a container of a SharePoint Embedded application in the tenant
2323

2424
### Container administration
2525
- Get details of all containers of a particular SharePoint Embedded application in the tenant
@@ -70,7 +70,7 @@ OwningApplicationId is the ID of the SharePoint Embedded application and Applica
7070

7171
### Set Sharing Capability of applications
7272

73-
CTA can set the sharing capability at an application level to determine whether files of the containers of the application be shared with external guests or not.
73+
Consuming tenant admins can set the sharing capability at an application level to determine whether files of the containers of the application be shared with external guests or not.
7474

7575
```powershell
7676
Set-SPOApplication -OwningApplicationId <OwningApplicationId> – SharingCapability <SharingCapability> - OverrideTenantSharingCapability <$ OverrideTenantSharingCapability >
@@ -102,7 +102,7 @@ Get-SPOContainer -OwningApplicationId <OwningApplicationId>|FT
102102

103103
The `OwningApplicationId` is the ID of the SharePoint Embedded application. For more information about using this command, see [Get-SPOContainer cmdlet](/powershell/module/sharepoint-online/get-spocontainer). To enumerate Microsoft Loop containers, use Owning App ID: a187e399-0c36-4b98-8f04-1edc167a0996 for all the cmdlets of container administration.
104104

105-
CTA can also get a list of all the containers of a SharePoint Embedded application sorted by storage using the following commands.
105+
Consuming tenant admins can also get a list of all the containers of a SharePoint Embedded application sorted by storage using the following commands.
106106

107107
```powershell
108108
Get-SPOContainer -OwningApplicationId <OwningApplicationId> -SortByStorage <value>
@@ -116,23 +116,23 @@ Get-SPOContainer -OwningApplicationId <OwningApplicationId> -SortByStorage <valu
116116

117117
### View details of a Container
118118

119-
CTA can get the details of a container within an application using the following command. This command returns more details of a container including StorageUsed, Ownership details, SiteURL, Label information, Owners count etc.
120-
CTA can use the following command:
119+
Consuming tenant admins can get the details of a container within an application using the following command. This command returns more details of a container including StorageUsed, Ownership details, SiteURL, Label information, Owners count etc.
120+
Consuming tenant admins can use the following command:
121121

122122
```powershell
123123
Get-SPOContainer -OwningApplicationId <OwningApplicationId> -Identity <ContainerId>
124124
```
125125
Here, The ContainerId is the ID of the container.
126126

127127
### Sensitivity Label of a container
128-
CTA can set the sensitivity label of a container of an application using the following:
128+
Consuming tenant admins can set the sensitivity label of a container of an application using the following:
129129

130130
```powershell
131131
Set-SPOContainer -Identity <ContainerID> -SensitivityLabel <SensitivityLabel>
132132
```
133133
![image](https://github.com/cindylay/sp-dev-docs/assets/136049061/4b059ca9-d180-46df-927f-e331bcc52b33)
134134

135-
CTA can remove the sensitivity label of a container of an application using the following:
135+
Consuming tenant admins can remove the sensitivity label of a container of an application using the following:
136136

137137
```powershell
138138
Set-SPOContainer -Identity b! <ContainerID> -RemoveLabel

0 commit comments

Comments
 (0)