Skip to content

Commit 33954aa

Browse files
Merge pull request #1076 from ishwarit/docs-editor/Set-SPOContainerTypeConfigurat-1763061415
Update Set-SPOContainerTypeConfiguration.md
2 parents a656ba1 + 16d0293 commit 33954aa

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

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

Lines changed: 25 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,14 @@ 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+
```powershell
88+
Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4 -IsArchiveEnabled $true
89+
```
90+
91+
Example 7 enables support for archive and reactivate actions on all the containers of ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4.
92+
8593
## PARAMETERS
8694

8795
### -AnonymousLinkExpirationInDays
@@ -171,6 +179,22 @@ Accept pipeline input: False
171179
Accept wildcard characters: False
172180
```
173181
182+
### -IsArchiveEnabled
183+
184+
Use the `-IsArchiveEnabled` flag to enable archival of containers. Archival moves data to the cold tier, reducing storage costs. While archived, content is inaccessible until reactivated. Reactivation is immediate within the first seven days and can take up to 24 hours afterward. If you don't include this flag, the value defaults to `False`, and all archive API calls fail. After you update the flag, allow up to 24 hours for the change to take effect in the consuming tenant.
185+
186+
```yaml
187+
Type: System.Boolean
188+
Parameter Sets: (All)
189+
Aliases:
190+
191+
Required: False
192+
Position: Named
193+
Default value: False
194+
Accept pipeline input: False
195+
Accept wildcard characters: False
196+
```
197+
174198
### -OverrideTenantWhoCanShareAnonymousAllowList
175199

176200
This setting determines if the container type `WhoCanShareAnonymousAllowList` overrides the tenant-level `WhoCanShareAnonymousAllowList`.

0 commit comments

Comments
 (0)