From edd321b65294f4024a463c453ea05cea4ccdb06d Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:30:45 +0530 Subject: [PATCH 01/38] 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 fb3141e9027a23145cf6a3f02a242a4f38b3cff2 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:46:59 +0530 Subject: [PATCH 02/38] Learn Editor: Update Set-SPOContainerTypeConfiguration.md --- .../Set-SPOContainerTypeConfiguration.md | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md index 6344015f5..7513985f7 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md @@ -24,7 +24,7 @@ Set-SPOContainerTypeConfiguration -ContainerTypeId [-DiscoverabilityDisab [-WhoCanShareAuthenticatedGuestAllowList ] [-OverrideTenantWhoCanShareAnonymousAllowList ] [-OverrideTenantWhoCanShareAuthenticatedGuestAllowList ] [-CopilotEmbeddedChatHosts ] - [-AnonymousLinkExpirationInDays ] [-WhatIf] [-Confirm] [] + [-AnonymousLinkExpirationInDays ] [-IsArchiveEnabled ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -82,6 +82,15 @@ Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb ``` This example sets the host URLs for the container type with Id 4f0af585-8dcc-0000-223d-661eb2c604e4. +### Example 7 + + +```powershell +Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4 -IsArchiveEnabled $true +``` + +Example 7 enables support for archive and reactivate actions on all the containers of ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4. + ## PARAMETERS ### -AnonymousLinkExpirationInDays @@ -169,6 +178,25 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False + +``` + + +### -IsArchiveEnabled + +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 ``` ### -OverrideTenantWhoCanShareAnonymousAllowList From 544e945599995e211a27f00c9ea4978352a6b225 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:50:39 +0530 Subject: [PATCH 03/38] 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 8d7f70c3d771997a9f174ad2dda328e77e9fc591 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:53:33 +0530 Subject: [PATCH 04/38] Learn Editor: Update Set-SPOContainerTypeConfiguration.md From c372ff33ee7dcf742021d42e953f17a5f915aa72 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 00:55:10 +0530 Subject: [PATCH 05/38] Learn Editor: Update New-SPOContainerType.md From 1fe9d5912abc7f67d1551e1031b8822c636252e5 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 15:54:44 -0600 Subject: [PATCH 06/38] Create Set-SPORestrictedSiteCreationForApps.md --- .../Set-SPORestrictedSiteCreationForApps.md | 218 ++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md new file mode 100644 index 000000000..05f3f1c7e --- /dev/null +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -0,0 +1,218 @@ +--- +external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/microsoft.online.sharepoint.powershell/set-sporestrictedsitecreationforapps +applicable: SharePoint Online +title: Set-SPORestrictedSiteCreationForApps +schema: 2.0.0 +author: vgaddam-pm +ms.author: vgaddam +ms.reviewer: jmcdowe +--- + +# Set-SPORestrictedSiteCreation + +## SYNOPSIS + +Sets or updates one or more app configurations for restricting site creation. + +## SYNTAX + +``` +Set-SPORestrictedSiteCreationForApps [-Enabled ] [-Mode ] + [-SiteType ] [-RestrictedSiteCreationApps ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION + +This cmdlet sets or updates the configuration or setting for the Restricted Site Creation For Apps feature. + +> [!Important] +> You must use version 16.0.25513.12000 (published December 2025) or later of the [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) for these commands to function properly. Earlier versions do not have the current list of site types and will not operate correctly. + +## EXAMPLES + +### Example 1 + +```powershell +Set-SPORestrictedSiteCreationForApps –Enabled:$true +``` + +Example 1 enables the restricted site creation for apps feature for the tenant. + +### Example 2 + +```powershell +Set-SPORestrictedSiteCreationForApps –Mode Allow +``` + +Example 2 sets restricted site creation for apps to allow mode. In this mode, an app is only able to create a site if that app is in the list specified for a matching site type. + +### Example 3 + +```powershell +Set-SPORestrictedSiteCreationForApps –SiteType "All" -RestrictedSiteCreationApps "281e395b-7316-4cb2-b5bb-8881426ee411" +``` + +Example 3 updates the policy for the `All` site type to apply to the app with the app ID 281e395b-7316-4cb2-b5bb-8881426ee411. This app is now either allowed or denied (depending on the current mode) from creating all OneDrive and SharePoint sites. + +### Example 4 + +```powershell +Set-SPORestrictedSiteCreationForApps –SiteType "Team" -RestrictedSiteCreationApps "78159241-04a9-41d2-8dd4-ac568e9766a3,1f95829b-e1c8-4406-b2be-508c36f4bca5" +``` + +Example 4 updates the policy for the `Team` site type to apply to the two apps specified. Both apps now either allowed or denied from creating Team sites, depending on the current mode. + +### Example 5 + +```powershell +Set-SPORestrictedSiteCreationForApps –SiteType "OneDrive" -RestrictedSiteCreationApps "" +``` + +Example 5 clears the policy for the `OneDrive` site type so that it no longer applies to any apps. + +## PARAMETERS + +### -Enabled + +> Applicable: SharePoint Online + +PARAMVALUE: true | false +Enables or disables Restricted Site Creation For Apps feature in tenant. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Mode + +> Applicable: SharePoint Online + +Specifies whether policies allow or deny apps from creating sites. +PARAMVALUE: Deny | Allow +- Deny – an app will be blocked from creating a site if any policy applies to them. +- Allow – an app will only be allowed to create a site if a policy applies to them. + +> [!NOTE] +> The restricted site creation mode is shared across all site type policies. It is not possible to use deny mode for one site type and allow mode for a different site type. When the mode is changed, all polices are cleared. + +```yaml +Type: Microsoft.SharePoint.Administration.SPOnlineProvisioning.RestrictedSiteCreationMode +Parameter Sets: (All) +Aliases: +Accepted values: Deny, Allow + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RestrictedSiteCreationApps + +> Applicable: SharePoint Online + +A comma-separated list of up to 100 app IDs. When paired with the `–SiteType` parameter, defines a new policy which applies to the specified apps. +Set to the empty string ("") to clear the policy for a site type. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SiteType + +> Applicable: SharePoint Online + +When paired with the `–RestrictedSiteCreationApps` parameter, creates a new policy which applies to the specified types of sites. + +PARAMVALUE: All | SharePoint | OneDrive | Team | Communication +- All - OneDrive and all SharePoint sites +- SharePoint - All SharePoint sites (but not OneDrive) +- OneDrive - Only OneDrive +- Team - Only SharePoint team sites (group-connected and classic) +- Communication - Only SharePoint communication sites + +```yaml +Type: Microsoft.SharePoint.Administration.SPOnlineProvisioning.RestrictedSiteCreationSiteType +Parameter Sets: (All) +Aliases: +Accepted values: All, SharePoint, OneDrive, Team, Communication + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell). + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) From f92280a0907018305df921cc264f82ecab1bf260 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:34:02 -0600 Subject: [PATCH 07/38] Create Get-SPORestrictedSiteCreationForApps --- .../Get-SPORestrictedSiteCreationForApps | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps new file mode 100644 index 000000000..591211853 --- /dev/null +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps @@ -0,0 +1,94 @@ +--- +external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/microsoft.online.sharepoint.powershell/get-sporestrictedsitecreationforapps +applicable: SharePoint Online +title: Get-SPORestrictedSiteCreationForApps +schema: 2.0.0 +author: vgaddam-pm +ms.author: vgaddam +ms.reviewer: +--- + +# Get-SPORestrictedSiteCreation + +## SYNOPSIS + +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. + +## SYNTAX + +``` +Get-SPORestrictedSiteCreationForApps [-SiteType ] [] +``` + +## DESCRIPTION + +This cmdlet obtains the current configuration information for the restricted site creation for apps feature, including whether it is enabled, the current mode, and the current policies. + +> [!Important] +>You must use version 16.0.25513.12000 (published December 2025) or later of the [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) for these commands to function properly. Earlier versions do not have the current list of site types and will not operate correctly. + +## EXAMPLES + +### Example 1 + +```powershell +Get-SPORestrictedSiteCreationForApps +``` + +Example 1 returns all configuration information for the restricted site creation for apps feature. This includes whether the feature is enabled, the current mode (deny or allow), and the app IDs configured for each site type. + +### Example 2 + +```powershell +Get-SPORestrictedSiteCreation –SiteType Communication +``` + +Example 2 returns a comma-separated list of the app IDs for the `Communication` site type. Depending on whether restricted site creation is in allow or deny mode, these apps are either allowed or denied from creating SharePoint communication sites. + +## PARAMETERS + +### -SiteType + +> Applicable: SharePoint Online +When provided, only return the Microsoft Entra security groups configured for the specified site type. + +PARAMVALUE: All | SharePoint | OneDrive | Team | Communication +- All - OneDrive and all SharePoint sites +- SharePoint - All SharePoint sites (but not OneDrive) +- OneDrive - Only OneDrive +- Team - Only SharePoint team sites (group-connected and classic) +- Communication - Only SharePoint communication sites + +```yaml +Type: Microsoft.SharePoint.Administration.SPOnlineProvisioning.RestrictedSiteCreationSiteType +Parameter Sets: (All) +Aliases: +Accepted values: All, SharePoint, OneDrive, Team, Communication + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell). From 1569bae2a734e8feda50a13fb8e3e9fc63d22c08 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:36:41 -0600 Subject: [PATCH 08/38] Update Microsoft.Online.SharePoint.PowerShell.md Adding Get and Set RestrictedSiteCreation for Apps --- .../Microsoft.Online.SharePoint.PowerShell.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 85890993c..25fe264c3 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -1,4 +1,4 @@ ---- +Frestrie--- Module Name: Microsoft.Online.SharePoint.PowerShell Module Guid: adedde5f-e77b-4682-ab3d-a4cb4ff79b83 title: Microsoft.Online.SharePoint.PowerShell Module @@ -279,6 +279,9 @@ This cmdlet enables the administrator to check status of all active and availabl ### [Get-SPORestrictedSiteCreation](Get-SPORestrictedSiteCreation.md) This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. +### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. + ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -726,6 +729,9 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req ### [Set-SPORestrictedSiteCreation](Set-SPORestrictedSiteCreation.md) Sets or updates one or more group configurations for restricting site creation. +### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) +Sets or updates one or more group configurations for restricting site creation for apps. + ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From 8d573532daed1a97f169aafbe6e940c8d108aee9 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:37:49 -0600 Subject: [PATCH 09/38] Update Microsoft.Online.SharePoint.PowerShell.md Added notes about preview for get and set cmdlets for RestrictedSiteCreationForApps --- .../Microsoft.Online.SharePoint.PowerShell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 25fe264c3..f40475a1a 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -280,7 +280,7 @@ This cmdlet enables the administrator to check status of all active and availabl This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. ### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) -This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. Note: This feature is currently in preview and may not be available in your tenant. ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -730,7 +730,7 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req Sets or updates one or more group configurations for restricting site creation. ### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) -Sets or updates one or more group configurations for restricting site creation for apps. +Sets or updates one or more group configurations for restricting site creation for apps. Note: This feature is currently in preview and may not be available in your tenant. ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From 0cd915c31ec6c10823ea49b512904e3011d05ef4 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:03:25 -0600 Subject: [PATCH 10/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index f40475a1a..342ae4460 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -1,4 +1,4 @@ -Frestrie--- +FrestrictedsiteFrestrie--- Module Name: Microsoft.Online.SharePoint.PowerShell Module Guid: adedde5f-e77b-4682-ab3d-a4cb4ff79b83 title: Microsoft.Online.SharePoint.PowerShell Module @@ -279,9 +279,6 @@ This cmdlet enables the administrator to check status of all active and availabl ### [Get-SPORestrictedSiteCreation](Get-SPORestrictedSiteCreation.md) This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. -### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) -This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. Note: This feature is currently in preview and may not be available in your tenant. - ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -729,9 +726,6 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req ### [Set-SPORestrictedSiteCreation](Set-SPORestrictedSiteCreation.md) Sets or updates one or more group configurations for restricting site creation. -### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) -Sets or updates one or more group configurations for restricting site creation for apps. Note: This feature is currently in preview and may not be available in your tenant. - ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From 004509a304d25abb79cedd14aafbff981a3dce03 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:03:54 -0600 Subject: [PATCH 11/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 342ae4460..85890993c 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -1,4 +1,4 @@ -FrestrictedsiteFrestrie--- +--- Module Name: Microsoft.Online.SharePoint.PowerShell Module Guid: adedde5f-e77b-4682-ab3d-a4cb4ff79b83 title: Microsoft.Online.SharePoint.PowerShell Module From c1cab2ffdaf23da6ff3415c3a3f302cd42655a88 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:06:30 -0600 Subject: [PATCH 12/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 85890993c..87a78332d 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -279,6 +279,9 @@ This cmdlet enables the administrator to check status of all active and availabl ### [Get-SPORestrictedSiteCreation](Get-SPORestrictedSiteCreation.md) This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. +### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature for apps. Note: This feature is currently in preview and may not be available in your tenant. + ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -726,6 +729,9 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req ### [Set-SPORestrictedSiteCreation](Set-SPORestrictedSiteCreation.md) Sets or updates one or more group configurations for restricting site creation. +### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) +Sets or updates one or more group configurations for restricting site creation for apps. Note: This feature is currently in preview and may not be available in your tenant. + ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From 8dc9815dbceb7c0dcf31451d352138c409bd6266 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:08:37 -0600 Subject: [PATCH 13/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 87a78332d..85890993c 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -279,9 +279,6 @@ This cmdlet enables the administrator to check status of all active and availabl ### [Get-SPORestrictedSiteCreation](Get-SPORestrictedSiteCreation.md) This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. -### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) -This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature for apps. Note: This feature is currently in preview and may not be available in your tenant. - ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -729,9 +726,6 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req ### [Set-SPORestrictedSiteCreation](Set-SPORestrictedSiteCreation.md) Sets or updates one or more group configurations for restricting site creation. -### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) -Sets or updates one or more group configurations for restricting site creation for apps. Note: This feature is currently in preview and may not be available in your tenant. - ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From d5fb83b40b2debc3989000db4be6532987c69e9b Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:14:06 -0600 Subject: [PATCH 14/38] Update Set-SPORestrictedSiteCreationForApps.md --- .../Set-SPORestrictedSiteCreationForApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md index 05f3f1c7e..db857dc81 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -10,7 +10,7 @@ ms.author: vgaddam ms.reviewer: jmcdowe --- -# Set-SPORestrictedSiteCreation +# Set-SPORestrictedSiteCreationForApps ## SYNOPSIS From b034fadaab491315c75a1da0366a3173a48cd82e Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:18:07 -0600 Subject: [PATCH 15/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 85890993c..0670c779b 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -279,6 +279,9 @@ This cmdlet enables the administrator to check status of all active and availabl ### [Get-SPORestrictedSiteCreation](Get-SPORestrictedSiteCreation.md) This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. +### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. Note: This feature is currently in preview and may not be available in your tenant. + ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -726,6 +729,9 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req ### [Set-SPORestrictedSiteCreation](Set-SPORestrictedSiteCreation.md) Sets or updates one or more group configurations for restricting site creation. +### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) +Sets or updates one or more group configurations for restricting site creation for apps. Note: This feature is currently in preview and may not be available in your tenant. + ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From a4a1363e4cf12261ad7294bc00b0db4e6612bffa Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:20:46 -0600 Subject: [PATCH 16/38] Update and rename Get-SPORestrictedSiteCreationForApps to Get-SPORestrictedSiteCreationForApps.md --- ...eCreationForApps => Get-SPORestrictedSiteCreationForApps.md} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/{Get-SPORestrictedSiteCreationForApps => Get-SPORestrictedSiteCreationForApps.md} (98%) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md similarity index 98% rename from sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps rename to sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md index 591211853..5f6b2fb77 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md @@ -10,7 +10,7 @@ ms.author: vgaddam ms.reviewer: --- -# Get-SPORestrictedSiteCreation +# Get-SPORestrictedSiteCreationForApps ## SYNOPSIS From 3fb1485fba23138399131519c2f8165d5cadf26c Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 11:26:37 +0530 Subject: [PATCH 17/38] 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 7a145b2f3d78d05ab22e71049faf4b9201b50439 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 11:32:01 +0530 Subject: [PATCH 18/38] Learn Editor: Update Set-SPOContainerTypeConfiguration.md --- .../Set-SPOContainerTypeConfiguration.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md index 7513985f7..3fab71d66 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md @@ -84,7 +84,6 @@ This example sets the host URLs for the container type with Id 4f0af585-8dcc-000 ### Example 7 - ```powershell Set-SPOContainerTypeConfiguration -ContainerTypeId 4f0af585-8dcc-0000-223d-661eb2c604e4 -IsArchiveEnabled $true ``` @@ -178,14 +177,11 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False - ``` - ### -IsArchiveEnabled -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 37922485d129ac0ebdb56d0516c7bf4c3f420a47 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 16:09:55 +0530 Subject: [PATCH 19/38] Learn Editor: Update Set-SPOContainerTypeConfiguration.md --- .../Set-SPOContainerTypeConfiguration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md index 3fab71d66..f56fb8fce 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md @@ -181,7 +181,7 @@ Accept wildcard characters: False ### -IsArchiveEnabled -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 1508c6ce6f16191e62e655514da140f1189b4710 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Fri, 14 Nov 2025 16:11:06 +0530 Subject: [PATCH 20/38] 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 3c458caac0306baa504da89d2291f923a6590117 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 16:41:42 -0600 Subject: [PATCH 21/38] Update sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md Co-authored-by: Sam M. Kabue --- .../Get-SPORestrictedSiteCreationForApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md index 5f6b2fb77..efbcb485e 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md @@ -14,7 +14,7 @@ ms.reviewer: ## SYNOPSIS -This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. +Administrators ## SYNTAX From 58282589a60b42110b864198d9fd2bb69012cf97 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 16:44:40 -0600 Subject: [PATCH 22/38] Update Get-SPORestrictedSiteCreationForApps.md --- .../Get-SPORestrictedSiteCreationForApps.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md index efbcb485e..81e87f4d4 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md @@ -14,7 +14,7 @@ ms.reviewer: ## SYNOPSIS -Administrators +This cmdlet allows SharePoint Administrators to check the current configuration of the restricted site creation for apps feature. ## SYNTAX @@ -26,8 +26,8 @@ Get-SPORestrictedSiteCreationForApps [-SiteType This cmdlet obtains the current configuration information for the restricted site creation for apps feature, including whether it is enabled, the current mode, and the current policies. -> [!Important] ->You must use version 16.0.25513.12000 (published December 2025) or later of the [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) for these commands to function properly. Earlier versions do not have the current list of site types and will not operate correctly. +> [!Note] +> This feature is currently in preview and may not be available in your tenant. ## EXAMPLES From 7a4bcd2e4d72f7a8ad2f1196c9938f7d998ff43c Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 16:46:12 -0600 Subject: [PATCH 23/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 0670c779b..173cac719 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -280,7 +280,7 @@ This cmdlet enables the administrator to check status of all active and availabl This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. ### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) -This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. Note: This feature is currently in preview and may not be available in your tenant. +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. > [!NOTE] > This feature is currently in preview and may not be available in your tenant. ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -730,7 +730,7 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req Sets or updates one or more group configurations for restricting site creation. ### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) -Sets or updates one or more group configurations for restricting site creation for apps. Note: This feature is currently in preview and may not be available in your tenant. +Sets or updates one or more group configurations for restricting site creation for apps. > [!NOTE] > This feature is currently in preview and may not be available in your tenant. ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From 2bd5ca6963c526be1d8c7a0588f5a6c24e86746e Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 16:48:34 -0600 Subject: [PATCH 24/38] Update Set-SPORestrictedSiteCreationForApps.md --- .../Set-SPORestrictedSiteCreationForApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md index db857dc81..21c665ce5 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -124,7 +124,7 @@ Accept wildcard characters: False > Applicable: SharePoint Online A comma-separated list of up to 100 app IDs. When paired with the `–SiteType` parameter, defines a new policy which applies to the specified apps. -Set to the empty string ("") to clear the policy for a site type. +Set to the empty string `""` to clear the policy for a site type. ```yaml Type: System.String From 9001f56cf97d77ddd61036dad29302040d4453c4 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 16:49:18 -0600 Subject: [PATCH 25/38] Update Set-SPORestrictedSiteCreationForApps.md --- .../Set-SPORestrictedSiteCreationForApps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md index 21c665ce5..6389ee072 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -28,8 +28,8 @@ Set-SPORestrictedSiteCreationForApps [-Enabled ] [-Mode [!Important] -> You must use version 16.0.25513.12000 (published December 2025) or later of the [SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) for these commands to function properly. Earlier versions do not have the current list of site types and will not operate correctly. +> [!Note] +> This feature is currently in preview and may not be available in your tenant. ## EXAMPLES From 28455a861d42ac831215851f0333ad0f966ff4b7 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 16:57:29 -0600 Subject: [PATCH 26/38] Update Get-SPORestrictedSiteCreationForApps.md --- .../Get-SPORestrictedSiteCreationForApps.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md index 81e87f4d4..2cbf5150a 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md @@ -55,11 +55,11 @@ Example 2 returns a comma-separated list of the app IDs for the `Communication` When provided, only return the Microsoft Entra security groups configured for the specified site type. PARAMVALUE: All | SharePoint | OneDrive | Team | Communication -- All - OneDrive and all SharePoint sites -- SharePoint - All SharePoint sites (but not OneDrive) -- OneDrive - Only OneDrive -- Team - Only SharePoint team sites (group-connected and classic) -- Communication - Only SharePoint communication sites +- All - OneDrive and all SharePoint sites +- SharePoint - All SharePoint sites (but not OneDrive) +- OneDrive - Only OneDrive +- Team - Only SharePoint team sites (group-connected and classic) +- Communication - Only SharePoint communication sites ```yaml Type: Microsoft.SharePoint.Administration.SPOnlineProvisioning.RestrictedSiteCreationSiteType From 82b3b61f39361f16e1baac2cd1d39865f1d8e621 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 22:42:07 -0600 Subject: [PATCH 27/38] Update Microsoft.Online.SharePoint.PowerShell.md --- .../Microsoft.Online.SharePoint.PowerShell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md index 173cac719..50fe76c51 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Microsoft.Online.SharePoint.PowerShell.md @@ -280,7 +280,7 @@ This cmdlet enables the administrator to check status of all active and availabl This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation feature. ### [Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) -This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. > [!NOTE] > This feature is currently in preview and may not be available in your tenant. +This cmdlet allows SharePoint administrators to check the current configuration of the restricted site creation for apps feature. > [!NOTE] > This feature is currently in preview and may not be available in your tenant. ### [Get-SPOServicePrioritizationAppRegistrations](Get-SPOServicePrioritizationAppRegistrations.md) Retrieves the list of app registrations configured for service prioritization in SharePoint Online. @@ -730,7 +730,7 @@ Marks a site as one of multiple possible tenant's organizational news sites. Req Sets or updates one or more group configurations for restricting site creation. ### [Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) -Sets or updates one or more group configurations for restricting site creation for apps. > [!NOTE] > This feature is currently in preview and may not be available in your tenant. +Sets or updates one or more group configurations for restricting site creation for apps. > [!NOTE] > This feature is currently in preview and may not be available in your tenant. ### [Set-SPOServicePrioritizationAppRegistration](Set-SPOServicePrioritizationAppRegistration.md) Updates an existing app registration for service prioritization in SharePoint Online. From b714e02b2ac49298956afe927f776b434a4cb50e Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 22:44:50 -0600 Subject: [PATCH 28/38] Update Get-SPORestrictedSiteCreationForApps.md From 06888c06cb1df75020a2c20827ffd5d8a3965c09 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 22:45:57 -0600 Subject: [PATCH 29/38] Update Get-SPORestrictedSiteCreationForApps.md From 7c406277beed771ab15645ed62604068eaf9bab3 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Sun, 16 Nov 2025 22:46:19 -0600 Subject: [PATCH 30/38] Update Set-SPORestrictedSiteCreationForApps.md --- .../Set-SPORestrictedSiteCreationForApps.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md index 6389ee072..77bcbd604 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -214,5 +214,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell). [Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) - -[Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) From ade1ece54e5c83eb2ae5e5378430c7938bb64560 Mon Sep 17 00:00:00 2001 From: HectorRMota Date: Mon, 17 Nov 2025 09:45:19 -0800 Subject: [PATCH 31/38] Update Set-SPOTenant to add FileLevelArchive parameters. Added AllowFileArchive and AllowFileArchiveOnNewSitesByDefault to Set-SPOTenant. --- .../Set-SPOTenant.md | 61 +++++++++++++++++-- 1 file changed, 56 insertions(+), 5 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md index 466eac85e..145576ca2 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md @@ -139,7 +139,8 @@ Set-SPOTenant [-MinCompatibilityLevel ] [-MaxCompatibilityLevel ] [-OpticalCharacterRecognitionSelectedSitesListOperation ] [-DefaultContentCenterSite ] [-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled ] [-EnforceRequestDigest ] - [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] [] + [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] + [-AllowFileArchive ] [-AllowFileArchiveByDefault ] [] ``` ### ParameterSetContentTypeSyncSiteTemplatesList @@ -264,7 +265,8 @@ Set-SPOTenant [-MinCompatibilityLevel ] [-MaxCompatibilityLevel ] [-OpticalCharacterRecognitionSelectedSitesListOperation ] [-DefaultContentCenterSite ] [-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled ] [-EnforceRequestDigest ] - [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] [] + [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] + [-AllowFileArchive ] [-AllowFileArchiveByDefault ] [] ``` ### ParamSetMultipleSites @@ -390,7 +392,8 @@ Set-SPOTenant [-MinCompatibilityLevel ] [-MaxCompatibilityLevel ] [-OpticalCharacterRecognitionSelectedSitesListOperation ] [-DefaultContentCenterSite ] [-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled ] [-EnforceRequestDigest ] - [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] [] + [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] + [-AllowFileArchive ] [-AllowFileArchiveByDefault ] [] ``` ### InformationBarrier @@ -514,7 +517,8 @@ Set-SPOTenant [-MinCompatibilityLevel ] [-MaxCompatibilityLevel ] [-OpticalCharacterRecognitionSelectedSitesListOperation ] [-DefaultContentCenterSite ] [-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled ] [-EnforceRequestDigest ] - [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] [] + [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] + [-AllowFileArchive ] [-AllowFileArchiveByDefault ] [] ``` ### ParameterSetNameRestrictExternalSharing @@ -639,7 +643,8 @@ Set-SPOTenant [-MinCompatibilityLevel ] [-MaxCompatibilityLevel ] [-DefaultContentCenterSite ] [-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled ] [-EnforceRequestDigest ] [-RestrictResourceAccountAccess ] [-RestrictExternalSharingForAgents ] - -RestrictExternalSharing [-AddAppIdToList] [-RemoveAppIdFromList] [] + -RestrictExternalSharing [-AddAppIdToList] [-RemoveAppIdFromList] + [-AllowFileArchive ] [-AllowFileArchiveByDefault ] [] ``` ## DESCRIPTION @@ -1129,6 +1134,52 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AllowFileArchive + +> Applicable: SharePoint Online + +Controls whether file-level archiving is allowed at the tenant level. This setting can be overridden for specific sites by the site-level flag of the same name and has no effect unless M365 Archive is enabled for your organization. + +The valid values are: + +- True (default) - Allows users to manually archive files on sites where file-level archiving is also enabled. Manual archiving is limited to internal users with write access to the file. +- False - Blocks manual archiving for all files, regardless of the site-level setting. Admin-defined policies can still archive files automatically. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowFileArchiveOnNewSitesByDefault + +> Applicable: SharePoint Online + +Specifies the default value of the AllowFileArchive property for newly created SharePoint sites. This determines whether new sites allow file-level archiving by default. M365 Archive and the tenant-level AllowFileArchive setting must both be enabled for manual archiving to work when this property is set to True. + +The valid values are: + +- True (default) - Sets AllowFileArchive to True for all newly provisioned sites. M365 Archive and the tenant-level AllowFileArchive setting must both be enabled for manual archiving to work on future provisioned sites. +- False - Sets AllowFileArchive to False for all newly provisioned sites. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AllowGuestUserShareToUsersNotInSiteCollection > Applicable: SharePoint Online From a25ae98a3560499f89c99c78066c0bcf7bce04c0 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:55:41 -0600 Subject: [PATCH 32/38] Update Get-SPORestrictedSiteCreationForApps.md --- .../Get-SPORestrictedSiteCreationForApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md index 2cbf5150a..b28ef3688 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md @@ -91,4 +91,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) -For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell). +[Set-SPORestrictedSitesForApps](Set-SPORestrictedSitesForApps.md) From 14d006330a330b781ec6122d3ef8fe55cb2ee476 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:58:09 -0600 Subject: [PATCH 33/38] Update Set-SPORestrictedSiteCreationForApps.md --- .../Set-SPORestrictedSiteCreationForApps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md index 77bcbd604..0968abaa0 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -211,6 +211,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell). - [Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Get-SPORestrictedSiteCreationForApps](Get-SPORestrictedSiteCreationForApps.md) From 968bf992f9dab9a237625fb00419957dbed689b9 Mon Sep 17 00:00:00 2001 From: Vaibhav Gaddam <188270566+vgaddam-pm@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:58:41 -0600 Subject: [PATCH 34/38] Update Get-SPORestrictedSiteCreationForApps.md --- .../Get-SPORestrictedSiteCreationForApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md index b28ef3688..312198c32 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPORestrictedSiteCreationForApps.md @@ -91,4 +91,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) -[Set-SPORestrictedSitesForApps](Set-SPORestrictedSitesForApps.md) +[Set-SPORestrictedSiteCreationForApps](Set-SPORestrictedSiteCreationForApps.md) From 5344aee133ef35817d57b3b35ed0a225742cacbc Mon Sep 17 00:00:00 2001 From: HectorRMota Date: Mon, 17 Nov 2025 10:17:51 -0800 Subject: [PATCH 35/38] Update documentation for AllowFileArchive settings Expand M365 Archive to Microsoft 365 Archive and added backticks to parameter reference in text --- .../Set-SPOTenant.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md index 145576ca2..219b5a1c3 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOTenant.md @@ -1138,7 +1138,7 @@ Accept wildcard characters: False > Applicable: SharePoint Online -Controls whether file-level archiving is allowed at the tenant level. This setting can be overridden for specific sites by the site-level flag of the same name and has no effect unless M365 Archive is enabled for your organization. +Controls whether file-level archiving is allowed at the tenant level. This setting can be overridden for specific sites by the site-level flag of the same name and has no effect unless Microsoft 365 Archive is enabled for your organization. The valid values are: @@ -1161,12 +1161,12 @@ Accept wildcard characters: False > Applicable: SharePoint Online -Specifies the default value of the AllowFileArchive property for newly created SharePoint sites. This determines whether new sites allow file-level archiving by default. M365 Archive and the tenant-level AllowFileArchive setting must both be enabled for manual archiving to work when this property is set to True. +Specifies the default value of the `AllowFileArchive` property for newly created SharePoint sites. This determines whether new sites allow file-level archiving by default. Microsoft 365 Archive and the tenant-level `AllowFileArchive` setting must both be enabled for manual archiving to work when this property is set to True. The valid values are: -- True (default) - Sets AllowFileArchive to True for all newly provisioned sites. M365 Archive and the tenant-level AllowFileArchive setting must both be enabled for manual archiving to work on future provisioned sites. -- False - Sets AllowFileArchive to False for all newly provisioned sites. +- True (default) - Sets `AllowFileArchive` to True for all newly provisioned sites. Microsoft 365 Archive and the tenant-level `AllowFileArchive` setting must both be enabled for manual archiving to work on future provisioned sites. +- False - Sets `AllowFileArchive` to False for all newly provisioned sites. ```yaml Type: Boolean From 8f1919ab9b4a98ce39a7f67628271bb35d83bdab Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Mon, 17 Nov 2025 23:52:22 +0530 Subject: [PATCH 36/38] Learn Editor: Update Set-SPOContainerTypeConfiguration.md --- .../Set-SPOContainerTypeConfiguration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md index f56fb8fce..ae882a962 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPOContainerTypeConfiguration.md @@ -181,7 +181,7 @@ Accept wildcard characters: False ### -IsArchiveEnabled -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 From eb8ad5f3ade645c1de9ba4654e84c9484e0adaa8 Mon Sep 17 00:00:00 2001 From: Ishwari Tambakhe Date: Mon, 17 Nov 2025 23:56:42 +0530 Subject: [PATCH 37/38] 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 From caa80ab5ff4fe01997cc3e965e05bcbd1a604e9d Mon Sep 17 00:00:00 2001 From: Ruchika Mittal Date: Tue, 18 Nov 2025 01:21:53 +0530 Subject: [PATCH 38/38] typo fix --- .../Set-SPORestrictedSiteCreationForApps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md index 0968abaa0..04c29a2ed 100644 --- a/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md +++ b/sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Set-SPORestrictedSiteCreationForApps.md @@ -104,7 +104,7 @@ PARAMVALUE: Deny | Allow - Allow – an app will only be allowed to create a site if a policy applies to them. > [!NOTE] -> The restricted site creation mode is shared across all site type policies. It is not possible to use deny mode for one site type and allow mode for a different site type. When the mode is changed, all polices are cleared. +> The restricted site creation mode is shared across all site type policies. It is not possible to use deny mode for one site type and allow mode for a different site type. When the mode is changed, all policies are cleared. ```yaml Type: Microsoft.SharePoint.Administration.SPOnlineProvisioning.RestrictedSiteCreationMode