Skip to content

Commit fb3141e

Browse files
committed
Learn Editor: Update Set-SPOContainerTypeConfiguration.md
1 parent 4658055 commit fb3141e

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Set-SPOContainerTypeConfiguration -ContainerTypeId <Guid> [-DiscoverabilityDisab
2424
[-WhoCanShareAuthenticatedGuestAllowList <Guid[]>] [-OverrideTenantWhoCanShareAnonymousAllowList <Boolean>]
2525
[-OverrideTenantWhoCanShareAuthenticatedGuestAllowList <Boolean>]
2626
[-CopilotEmbeddedChatHosts <System.Collections.Generic.List`1[System.String]>]
27-
[-AnonymousLinkExpirationInDays <Int32>] [-WhatIf] [-Confirm] [<CommonParameters>]
27+
[-AnonymousLinkExpirationInDays <Int32>] [-IsArchiveEnabled <Boolean>] [-WhatIf] [-Confirm] [<CommonParameters>]
2828
```
2929

3030
## DESCRIPTION
@@ -82,6 +82,15 @@ Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb
8282
```
8383
This example sets the host URLs for the container type with Id 4f0af585-8dcc-0000-223d-661eb2c604e4.
8484

85+
### Example 7
86+
87+
88+
```powershell
89+
Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4 -IsArchiveEnabled $true
90+
```
91+
92+
Example 7 enables support for archive and reactivate actions on all the containers of ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4.
93+
8594
## PARAMETERS
8695

8796
### -AnonymousLinkExpirationInDays
@@ -169,6 +178,25 @@ Position: Named
169178
Default value: None
170179
Accept pipeline input: False
171180
Accept wildcard characters: False
181+
182+
```
183+
184+
185+
### -IsArchiveEnabled
186+
187+
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.
188+
189+
190+
```yaml
191+
Type: System.Boolean
192+
Parameter Sets: (All)
193+
Aliases:
194+
195+
Required: False
196+
Position: Named
197+
Default value: False
198+
Accept pipeline input: False
199+
Accept wildcard characters: False
172200
```
173201
174202
### -OverrideTenantWhoCanShareAnonymousAllowList

0 commit comments

Comments
 (0)