From edd321b65294f4024a463c453ea05cea4ccdb06d Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:30:45 +0530 Subject: [PATCH 1/6] Learn Editor: Update New-SPOContainerType.md --- .../New-SPOContainerType.md | 32 +++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md index 616402efa..a339551fd 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md @@ -10,7 +10,7 @@ ms.author: shsaravanan ms.reviewer: --- -# New-SPOContainerType +# INew-SPOContainerType ## SYNOPSIS @@ -21,7 +21,7 @@ This cmdlet creates a new container type of standard or trial status. The standa ``` New-SPOContainerType [-ContainerTypeName] -OwningApplicationId [-ApplicationRedirectUrl ] [-TrialContainerType] [-IsPassThroughBilling] - [-IsGovernableByAdmin ] [-WhatIf] [-Confirm] [] + [-IsGovernableByAdmin ] [-IsArchiveEnabled ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -64,6 +64,15 @@ New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce032 In Example 4, the cmdlet creates a standard container type, ContosoLegal that has opted out of management through Microsoft-enabled administrator platforms. +### Example 5 + + +```powershell +New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -IsArchiveEnabled $true +``` + +In Example 5, the cmdlet creates a standard container type, ContosoLegal that support archive and reactivate actions on its containers. + ## PARAMETERS ### -ApplicationRedirectUrl @@ -102,6 +111,25 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -IsArchiveEnabled + +> Applicable: SharePoint Online + +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. + + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -IsGovernableByAdmin > Applicable: SharePoint Online From 544e945599995e211a27f00c9ea4978352a6b225 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:50:39 +0530 Subject: [PATCH 2/6] Learn Editor: Update New-SPOContainerType.md --- .../New-SPOContainerType.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md index a339551fd..1a89024ef 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md @@ -10,7 +10,7 @@ ms.author: shsaravanan ms.reviewer: --- -# INew-SPOContainerType +# New-SPOContainerType ## SYNOPSIS From c372ff33ee7dcf742021d42e953f17a5f915aa72 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:55:10 +0530 Subject: [PATCH 3/6] Learn Editor: Update New-SPOContainerType.md From 3fb1485fba23138399131519c2f8165d5cadf26c Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 11:26:37 +0530 Subject: [PATCH 4/6] Learn Editor: Update New-SPOContainerType.md --- .../New-SPOContainerType.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md index 1a89024ef..54be835ed 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md @@ -66,12 +66,11 @@ In Example 4, the cmdlet creates a standard container type, ContosoLegal that ha ### Example 5 - ```powershell New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId 2ce03211-353e-45d7-b487-8ac6981332cf -IsArchiveEnabled $true ``` -In Example 5, the cmdlet creates a standard container type, ContosoLegal that support archive and reactivate actions on its containers. +In Example 5, the cmdlet creates a standard container type, ContosoLegal that supports archive and reactivate actions on its containers. ## PARAMETERS @@ -115,8 +114,7 @@ Accept wildcard characters: False > Applicable: SharePoint Online -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. - +Use the `-IsArchiveEnabled` flag to enable archival and reactivation for 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 and unarchive API calls fail. After you update the flag, allow up to 24 hours for the change to take effect in the consuming tenant. ```yaml Type: System.Boolean From 1508c6ce6f16191e62e655514da140f1189b4710 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 16:11:06 +0530 Subject: [PATCH 5/6] Learn Editor: Update New-SPOContainerType.md --- .../New-SPOContainerType.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md index 54be835ed..7f99dcf7b 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md @@ -114,7 +114,7 @@ Accept wildcard characters: False > Applicable: SharePoint Online -Use the `-IsArchiveEnabled` flag to enable archival and reactivation for 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 and unarchive API calls fail. After you update the flag, allow up to 24 hours for the change to take effect in the consuming tenant. +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. ```yaml Type: System.Boolean From eb8ad5f3ade645c1de9ba4654e84c9484e0adaa8 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Mon, 17 Nov 2025 23:56:42 +0530 Subject: [PATCH 6/6] Learn Editor: Update New-SPOContainerType.md --- .../New-SPOContainerType.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md index 7f99dcf7b..0514f1e78 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/New-SPOContainerType.md @@ -114,7 +114,7 @@ Accept wildcard characters: False > Applicable: SharePoint Online -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. +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. ```yaml Type: System.Boolean