Skip to content

Commit edd321b

Browse files
committed
Learn Editor: Update New-SPOContainerType.md
1 parent 4658055 commit edd321b

File tree

1 file changed

+30
-2
lines changed

1 file changed

+30
-2
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: shsaravanan
1010
ms.reviewer:
1111
---
1212

13-
# New-SPOContainerType
13+
# INew-SPOContainerType
1414

1515
## SYNOPSIS
1616

@@ -21,7 +21,7 @@ This cmdlet creates a new container type of standard or trial status. The standa
2121
```
2222
New-SPOContainerType [-ContainerTypeName] <String> -OwningApplicationId <Guid>
2323
[-ApplicationRedirectUrl <String>] [-TrialContainerType] [-IsPassThroughBilling]
24-
[-IsGovernableByAdmin <Boolean>] [-WhatIf] [-Confirm] [<CommonParameters>]
24+
[-IsGovernableByAdmin <Boolean>] [-IsArchiveEnabled <Boolean>] [-WhatIf] [-Confirm] [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -64,6 +64,15 @@ New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce032
6464

6565
In Example 4, the cmdlet creates a standard container type, ContosoLegal that has opted out of management through Microsoft-enabled administrator platforms.
6666

67+
### Example 5
68+
69+
70+
```powershell
71+
New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -IsArchiveEnabled $true
72+
```
73+
74+
In Example 5, the cmdlet creates a standard container type, ContosoLegal that support archive and reactivate actions on its containers.
75+
6776
## PARAMETERS
6877

6978
### -ApplicationRedirectUrl
@@ -102,6 +111,25 @@ Accept pipeline input: False
102111
Accept wildcard characters: False
103112
```
104113
114+
### -IsArchiveEnabled
115+
116+
> Applicable: SharePoint Online
117+
118+
Using -IsArchiveEnabled flag, you can start supporting archival and reactivation actions on containers. Archival moves the data in cold tier and offers cost saving benefit. While archived, the content becomes inaccessible and needs to be reactivated first. Reactivation is instantaneous within first 7 days of archival and may take up to 24 hours after that. When not passed, the value of this parameter is set to False and all the calls to archive and unarchive API will fail.
119+
120+
121+
```yaml
122+
Type: System.Boolean
123+
Parameter Sets: (All)
124+
Aliases:
125+
126+
Required: False
127+
Position: Named
128+
Default value: False
129+
Accept pipeline input: False
130+
Accept wildcard characters: False
131+
```
132+
105133
### -IsGovernableByAdmin
106134
107135
> Applicable: SharePoint Online

0 commit comments

Comments
 (0)