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
Example 2 returns the detailed properties of the Container with associated Container ID b66f5b2e.
91
+
Example 2 returns the detailed properties of the Container with associated Container ID b!ISJs1WRro0y0EWgkUYcktDa0mE8zSlFEqFzqRn70Zwp1CEtDEBZgQICPkRbil_8U.
92
92
93
93
### Example 3
94
94
95
95
```powershell
96
-
Get-SPOContainer -OwningApplicationId 423poi45 | ft
96
+
Get-SPOContainer -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf | ft
97
97
```
98
-
Example 3 returns a tabular list of Containers created under the SharePoint Embedded application with the `OwningApplicationId` of `423poi45`.
98
+
Example 3 returns a tabular list of Containers created under the SharePoint Embedded application with the `OwningApplicationId` of `2ce03211-353e-45d7-b487-8ac6981332cf`.
99
99
100
100
### Example 4
101
101
102
102
```powershell
103
-
Get-SPOContainer -OwningApplicationId 423poi45 -Paged | ft
103
+
Get-SPOContainer -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -Paged | ft
104
104
```
105
105
Example 4 uses the `-Paged` command to retrieve a paging token.
106
106
107
107
### Example 5
108
108
109
109
```powershell
110
-
Get-SPOContainer -OwningApplicationId 423poi45 -Paged -PagingToken <zacad> | ft
110
+
Get-SPOContainer -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -Paged -PagingToken <zacad> | ft
111
111
```
112
112
113
113
Example 5 uses the `-PagingToken` parameter along with the `-Paged` parameter to view more containers that were not displayed in Example 3.
Example 8 displays the next list of paged view of containers belonging to the application, sorted in ascending order of storage.
138
138
139
139
### Example 9
140
140
141
141
```powershell
142
-
Get-SPOContainer -OwningApplicationId 423poi45 -ArchiveStatus RecentlyArchived | ft
142
+
Get-SPOContainer -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -ArchiveStatus RecentlyArchived | ft
143
143
```
144
144
145
145
Example 9 returns a tabular list of recently archived containers belonging to the SharePoint Embedded application with the OwningApplicationId of 423poi45.
0 commit comments