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 01/25] 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 02/25] 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 03/25] 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 04/25] 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 05/25] 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 06/25] 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 07/25] 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 08/25] 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 09/25] 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 10/25] 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 11/25] 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 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 12/25] 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 13/25] 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 14/25] 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 15/25] 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 16/25] 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 17/25] 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 18/25] 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 19/25] 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 20/25] 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 21/25] 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 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 22/25] 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 23/25] 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 24/25] 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 caa80ab5ff4fe01997cc3e965e05bcbd1a604e9d Mon Sep 17 00:00:00 2001 From: Ruchika Mittal Date: Tue, 18 Nov 2025 01:21:53 +0530 Subject: [PATCH 25/25] 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