Skip to content

Commit f983a8f

Browse files
authored
Get-SPOContainer.md
1 parent a09b656 commit f983a8f

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOContainer.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Get-SPOContainer -OwningApplicationId <OwningApplicationId> -SortByStorage <Asce
5959

6060
## DESCRIPTION
6161

62-
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.
6363

64-
You must be a SharePoint Embedded Administrator to run the cmdlet.
64+
You must be a SharePoint Embedded Administrator to run this cmdlet.
6565

6666
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).
6767

@@ -76,57 +76,57 @@ For permissions and the most current information about Windows PowerShell for Sh
7676
### Example 1
7777

7878
```powershell
79-
Get-SPOContainer -Identity b66f5b2e-4cbd-4754-9ad3-8291c2c81ade
79+
Get-SPOContainer -Identity b66f5b2e-4cbd
8080
```
8181

8282
Example 1 returns the detailed properties of the Container with associated Container ID b66f5b2e-4cbd-4754-9ad3-8291c2c81ade
8383

8484
### Example 2
8585

8686
```powershell
87-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 | FT
87+
Get-SPOContainer -OwningApplicationId 423poi45-as | ft
8888
```
8989
Example 2 returns a tabular list of Containers created under the SharePoint Embedded application with the `OwningApplicationId` of `423poi45-jikl-9bnm-b302-1234ghy56789`.
9090

9191

9292
### Example 3
9393

9494
```powershell
95-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -Paged | FT
95+
Get-SPOContainer -OwningApplicationId 423poi45-as -Paged | ft
9696
```
9797
Example 3 uses the `-Paged` command to retrieve a paging token.
9898

9999
### Example 4
100100

101101
```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
103103
```
104104

105105
Example 4 uses the `-PagingToken` parameter along with the `-Paged`parameter to view more containers that were not displayed in Example 3
106106

107107
### Example 5
108108

109109
```powershell
110-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -SortByStorage <Ascending>
110+
Get-SPOContainer -OwningApplicationId 423poi45-as -SortByStorage <Ascending>
111111
```
112112

113113
Example 5 displays the containers belonging to the application, sorted in ascending order of storage
114114

115115
### Example 6
116116

117117
```powershell
118-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -SortByStorage <Ascending>-Paged
118+
Get-SPOContainer -OwningApplicationId 423poi45-as -SortByStorage <Ascending> -Paged
119119
```
120120

121121
Example 6 displays a paged view of the the containers belonging to the application, sorted in ascending order of storage
122122

123123
### Example 7
124124

125125
```powershell
126-
Get-SPOContainer -OwningApplicationId 423poi45-jikl-9bnm-b302-1234ghy56789 -SortByStorage <Ascending>-Paged-PagingToken <Token String>
126+
Get-SPOContainer -OwningApplicationId 423poi45-as -SortByStorage <Ascending> -Paged -PagingToken <Token String>
127127
```
128128

129-
Example 7 displays the next list of paged view of containers belonging to the application, sorted in ascending order of storage
129+
Example 7 displays the next list of paged view of containers belonging to the application, sorted in ascending order of storage
130130

131131

132132
## PARAMETERS
@@ -150,7 +150,7 @@ Accept wildcard characters: False
150150
151151
### -Identity
152152
153-
Use this parameter to specify the Container ID of a container.
153+
Use this parameter to specify the Container ID.
154154
155155
```yaml
156156
Type: String
@@ -167,7 +167,7 @@ Accept wildcard characters: False
167167
168168
### -Paged
169169
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.
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.
171171

172172
```yaml
173173
Type: String
@@ -185,7 +185,7 @@ Accept wildcard characters: False
185185

186186
### -PagingToken
187187

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.
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.
189189

190190
```yaml
191191
Type: String

0 commit comments

Comments
 (0)