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
The `Get-SPOContainer` cmdlet retrieves and returns the details of an individual container when paired `Identity` parameter, where the container ID needs to be mentioned. The cmdlet returns the list of containers belonging to a SharePoint Embedded application when paired with the `OwningApplicationId` parameter.
62
+
The `Get-SPOContainer` cmdlet retrieves and returns the details of an individual container when paired with `Identity` parameter, where the container ID needs to be mentioned. The cmdlet returns the list of containers belonging to a SharePoint Embedded application when paired with the `OwningApplicationId` parameter.
63
63
64
-
You must be a SharePoint Embedded Administrator to run the cmdlet.
64
+
You must be a SharePoint Embedded Administrator to run this cmdlet.
65
65
66
66
For permissions and the most current information about Windows PowerShell for SharePoint Embedded Containers, see the documentation at [Intro to SharePoint Embedded Containers Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell).
67
67
@@ -76,57 +76,57 @@ For permissions and the most current information about Windows PowerShell for Sh
Example 1 returns the detailed properties of the Container with associated Container ID b66f5b2e-4cbd-4754-9ad3-8291c2c81ade
83
83
84
84
### Example 2
85
85
86
86
```powershell
87
-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 | FT
87
+
Get-SPOContainer -OwningApplicationId 423poi45-as | ft
88
88
```
89
89
Example 2 returns a tabular list of Containers created under the SharePoint Embedded application with the `OwningApplicationId` of `423poi45-jikl-9bnm-b302-1234ghy56789`.
90
90
91
91
92
92
### Example 3
93
93
94
94
```powershell
95
-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -Paged | FT
95
+
Get-SPOContainer -OwningApplicationId 423poi45-as -Paged | ft
96
96
```
97
97
Example 3 uses the `-Paged` command to retrieve a paging token.
98
98
99
99
### Example 4
100
100
101
101
```powershell
102
-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -Paged -PagingToken <Token String> | FT
102
+
Get-SPOContainer -OwningApplicationId 423poi45-as -Paged -PagingToken <Token String> | ft
103
103
```
104
104
105
105
Example 4 uses the `-PagingToken` parameter along with the `-Paged`parameter to view more containers that were not displayed in Example 3
This parameter can be used when there are more than 200 Containers in a given SharePoint Embedded application. Using `-Paged` will provide a `<Paging Token>` that will display the next 200 Containers.
170
+
This parameter can be used when there are more than 200 Containers in a given SharePoint Embedded application. Using `-Paged` will provide a `paging token` that will display the next 200 Containers.
Use this parameter to provide the `<Paging Token>` provided to view the remaining Containers as shown in Example 4. If there are no more Containers to display, the commandlet output will return the message `End of Containers view.` Otherwise, use the given `<Paging Token>` to retrieve the next batch of up to 200 Containers.
188
+
Use this parameter to provide the `<Paging Token>` provided to view the remaining Containers as shown in Example 4. If there are no more Containers to display, the commandlet output will return the message `End of Containers view.` Otherwise, use the given `paging token` to retrieve the next batch of up to 200 Containers.
0 commit comments