From 4d926d10405a07521c929010ce181a2e99aa71ae Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Wed, 19 Mar 2025 21:07:15 +0000 Subject: [PATCH 01/13] Added commands for SPO app priortiziation policies --- .../Add-SPOAppPrioritizationPolicy.md | 137 ++++++++++++++++++ .../Get-SPOAppPrioritizationPolicies.md | 55 +++++++ .../Remove-SPOAppPrioritizationPolicy.md | 67 +++++++++ .../Set-SPOAppPrioritizationPolicy.md | 111 ++++++++++++++ .../sharepoint-online/sharepoint-online.md | 16 ++ 5 files changed, 386 insertions(+) create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md create mode 100644 sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md new file mode 100644 index 000000000..daf72deda --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -0,0 +1,137 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Add-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: Sibourda +ms.author: Sibourda +ms.reviewer: +--- + +# Add-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Adds a new SPO App Prioritization Policy to your tenancy. + +## SYNTAX + +```powershell +Add-SPOAppPrioritizationPolicies -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier +``` + +## DESCRIPTION + +This cmdlet adds a new SPO App Prioritization Billing policies to your tenancy. You must be a SharePoint you must be a SharePoint Tenant Admin to run the commandlet. You need to make sure you’re not adding a new billing policy for an app that already has a billing policy to it. + +## EXAMPLES + +### Example 1 + +```powershell +Add-SPOAppPrioritizationPolicies -AppId 48ab2ba9-5713-47d6-88a1-f6e3a0730833 -AzureSubscriptionId 48ab1ba4-9813-47d6-88a1-f6e3a0730822 -ResourceGroup newResourceGroup -Account newAccountName -QuotaMultiplier 5 +``` + +Example 1 adds the billing policy to your tenancy. It will not add the policy on invalid inputs or for apps that already have an associated policy. + + +## PARAMETERS + +### -AppId + +This parameter specifies the app ID of the application to onboard. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AzureSubscriptionId + +This parameter describes the Azure subscription ID to which the container type needs to be associated. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -ResourceGroup + +This parameter describes the resource group to be used for the associated container type. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Account + +This parameter describes the account to which the billing profile of the container type is associated with. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` +### -QuotaMultiplier + +This parameter specifies the multiplier for the scaling feature. + +```yaml +Type: int +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md new file mode 100644 index 000000000..d2fdd5998 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -0,0 +1,55 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Get-SPOAppPrioritizationPolicies +applicable: SharePoint Online +title: Get-SPOAppPrioritizationPolicies +schema: 2.0.0 +author: Sibourda +ms.author: Sibourda +ms.reviewer: +--- + +# Get-SPOAppPrioritizationPolicies + +## SYNOPSIS + +Gets all existing SPO App Prioritization Policies of your tenancy + +## SYNTAX + +```powershell +Get-SPOAppPrioritizationPolicies +``` + + +## DESCRIPTION + +This cmdlet adds a new SPO App Prioritization Billing policies to your tenancy. You must be a SharePoint you must be a SharePoint Tenant Admin to run the commandlet. You need to make sure you’re not adding a new billing policy for an app that already has a billing policy to it. + +## EXAMPLES + +### Example 1 + +```powershell +Get- SPOAppPrioritizationPolicies +``` + +Example 1 returns a collection of all existing SPO App Prioritization Policies. Each Policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier + + +## PARAMETERS + + + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md new file mode 100644 index 000000000..bc80efffb --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -0,0 +1,67 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Remove-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Remove-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: Sibourda +ms.author: Sibourda +ms.reviewer: +--- + +# Remove-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Deletes an existing SPO App Prioritization Policy in your tenancy. + +## SYNTAX + +```powershell +Remove-SPOAppPrioritizationPolicy -PolicyId +``` + +## DESCRIPTION + +This cmdlet lets you delete an existing policy. + +## EXAMPLES + +### Example 1 + +```powershell +Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 +``` + +Example 1 deletes the policy bearing the policyId 48abxxa9. Running the Get command will no longer show the policy in the result. + +## PARAMETERS + +### -PolicyId + +This parameter specifies the ID of policy. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md new file mode 100644 index 000000000..06d235b71 --- /dev/null +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -0,0 +1,111 @@ +--- +external help file: sharepointonline.xml +Module Name: Microsoft.Online.SharePoint.PowerShell +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Set-SPOAppPrioritizationPolicy +applicable: SharePoint Online +title: Set-SPOAppPrioritizationPolicy +schema: 2.0.0 +author: Sibourda +ms.author: Sibourda +ms.reviewer: +--- + +# Set-SPOAppPrioritizationPolicy + +## SYNOPSIS + +Edits an existing SPO App Prioritization Policy in your tenancy. + +## SYNTAX + +```powershell +Set-SPOAppPrioritizationPolicy -PolicyId -Enabled -QuotaMultiplier +``` + +## DESCRIPTION + +This cmdlet lets you enable or disable an existing policy and/or change the quotaMultiplier associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the Get commandlet. Both the parameters are mandatory. + +## EXAMPLES + +### Example 1 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false -QuotaMultiplier 4 +``` + +Example 1 disables the policy bearing the policyId 48abxxa9 + +### Example 2 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 +``` + +Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the QuotaMultiplier to 7. + + +## PARAMETERS + +### -PolicyId + +This parameter specifies the ID of policy. +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enabled + +This parameter described the state wanted of the policy. + +```yaml +Type: Bool +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -QuotaMultiplier + +This parameter specifies the multiplier for the scaling feature. + +```yaml +Type: int +Parameter Sets: (All) +Aliases: +Applicable: SharePoint Online + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) + +[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) + +[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) + +[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) + +[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md index c765581b7..5efefc8b8 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md @@ -15,6 +15,10 @@ The following cmdlet references are for SharePoint Online. ## sharepoint-online Cmdlets +### [Add-SPOAppPrioritizationPolicy](Add-SPOAppPrioritizationPolicy.md) + +{{Adds a new SPO App Prioritization Policy to your tenancy.}} + ### [Add-SPOContainerTypeBilling](Add-SPOContainerTypeBilling.md) {{Adds a Azure billing subscription to a new standard billed container type.}} @@ -107,6 +111,10 @@ The following cmdlet references are for SharePoint Online. {{Manually Enter Get-SPOAppInfo Description Here}} +### [Get-SPOAppPrioritizationPolicies](Get-SPOAppPrioritizationPolicies.md) + +{{Gets all existing SPO App Prioritization Policies of your tenancy}} + ### [Get-SPOBuiltInFontPackageSettings](Get-SPOBuiltInFontPackageSettings.md) {{Gets settings of built-in font packages.}} @@ -420,6 +428,10 @@ This cmdlet is not currently active in production and may be removed in the futu {{Manually Enter Register-SPOHubSite Description Here}} +### [Remove-SPOAppPrioritizationPolicy](Remove-SPOAppPrioritizationPolicy.md) + +{{Deletes an existing SPO App Prioritization Policy in your tenancy.}} + ### [Remove-SPODataConnectionSetting](Remove-SPODataConnectionSetting.md) {{Manually Enter Remove-SPODataConnectionSetting Description Here}} @@ -544,6 +556,10 @@ This cmdlet is not currently active in production and may be removed in the futu {{Manually Enter Revoke-SPOUserSession Description Here}} +### [Set-SPOAppPrioritizationPolicy](Set-SPOAppPrioritizationPolicy.md) + +{{Edits an existing SPO App Prioritization Policy in your tenancy. }} + ### [Set-SPOBuiltInFontPackageSettings](Set-SPOBuiltInFontPackageSettings.md) {{Sets settings of built-in font packages.}} From 37666e859ab89fcbea52e51121eeadcbef68d68c Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Thu, 20 Mar 2025 17:07:47 +0000 Subject: [PATCH 02/13] fixed github author --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Get-SPOAppPrioritizationPolicies.md | 2 +- .../sharepoint-online/Remove-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index daf72deda..c4c76667f 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -5,7 +5,7 @@ online version: https://learn.microsoft.com/powershell/module/sharepoint-online/ applicable: SharePoint Online title: Add-SPOAppPrioritizationPolicy schema: 2.0.0 -author: Sibourda +author: killerewok2000 ms.author: Sibourda ms.reviewer: --- diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index d2fdd5998..32684c49a 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -5,7 +5,7 @@ online version: https://learn.microsoft.com/powershell/module/sharepoint-online/ applicable: SharePoint Online title: Get-SPOAppPrioritizationPolicies schema: 2.0.0 -author: Sibourda +author: killerewok2000 ms.author: Sibourda ms.reviewer: --- diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index bc80efffb..c7f0ad461 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -5,7 +5,7 @@ online version: https://learn.microsoft.com/powershell/module/sharepoint-online/ applicable: SharePoint Online title: Remove-SPOAppPrioritizationPolicy schema: 2.0.0 -author: Sibourda +author: killerewok2000 ms.author: Sibourda ms.reviewer: --- diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 06d235b71..95b95aaa6 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -5,7 +5,7 @@ online version: https://learn.microsoft.com/powershell/module/sharepoint-online/ applicable: SharePoint Online title: Set-SPOAppPrioritizationPolicy schema: 2.0.0 -author: Sibourda +author: killerewok2000 ms.author: Sibourda ms.reviewer: --- From a5befb85ee6f9301ac5af2865b5dab0150798476 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Thu, 20 Mar 2025 20:59:10 +0000 Subject: [PATCH 03/13] Fixed the word app priotization --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 4 ++-- .../sharepoint-online/Get-SPOAppPrioritizationPolicies.md | 6 +++--- .../Remove-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-ps/sharepoint-online/sharepoint-online.md | 8 ++++---- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index c4c76667f..fe1d1872d 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -14,7 +14,7 @@ ms.reviewer: ## SYNOPSIS -Adds a new SPO App Prioritization Policy to your tenancy. +Adds a new SPO app prioritization Policy to your tenancy. ## SYNTAX @@ -24,7 +24,7 @@ Add-SPOAppPrioritizationPolicies -AppId Date: Fri, 21 Mar 2025 16:21:03 +0000 Subject: [PATCH 04/13] fixed feedback --- .../Add-SPOAppPrioritizationPolicy.md | 11 ++++++----- .../Get-SPOAppPrioritizationPolicies.md | 14 +++++++------- .../Remove-SPOAppPrioritizationPolicy.md | 15 ++++++++------- .../Set-SPOAppPrioritizationPolicy.md | 13 +++++++------ .../sharepoint-online/sharepoint-online.md | 6 +++--- 5 files changed, 31 insertions(+), 28 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index fe1d1872d..7eeb7bc30 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -18,13 +18,13 @@ Adds a new SPO app prioritization Policy to your tenancy. ## SYNTAX -```powershell -Add-SPOAppPrioritizationPolicies -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier +``` +Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] ``` ## DESCRIPTION -This cmdlet adds a new SPO app prioritization Billing policies to your tenancy. You must be a SharePoint you must be a SharePoint Tenant Admin to run the commandlet. You need to make sure you’re not adding a new billing policy for an app that already has a billing policy to it. +This cmdlet adds a new SPO app prioritization billing policies to your tenancy. Ensure that you do not add a new billing policy to an app that already has one. ## EXAMPLES @@ -122,14 +122,15 @@ 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`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## RELATED LINKS [Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) -[Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) - [Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) [Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 8ec60b46b..2072819c1 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -14,18 +14,18 @@ ms.reviewer: ## SYNOPSIS -Gets all existing SPO app prioritization Policies of your tenancy +Gets all existing SPO app prioritization policies of your tenancy. ## SYNTAX -```powershell -Get-SPOAppPrioritizationPolicies +``` +Get-SPOAppPrioritizationPolicies [] ``` ## DESCRIPTION -This cmdlet adds a new SPO app prioritization Billing policies to your tenancy. You must be a SharePoint you must be a SharePoint Tenant Admin to run the commandlet. You need to make sure you’re not adding a new billing policy for an app that already has a billing policy to it. +This cmdlet gets all existing SPO App Prioritization billing policies for your tenancy. ## EXAMPLES @@ -35,12 +35,14 @@ This cmdlet adds a new SPO app prioritization Billing policies to your tenancy Get- SPOAppPrioritizationPolicies ``` -Example 1 returns a collection of all existing SPO app prioritization Policies. Each Policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier +Example 1 returns a collection of all existing SPO app prioritization policies. Each policy will contain PolicyId, AppId, AzureSubscription, ResourceGroup, Account, Enabled (status of this policy i.e true or false) and QuotaMultiplier ## PARAMETERS +### CommonParameters +This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVariable`, `-InformationAction`, `-InformationVariable`, `-OutVariable`, `-OutBuffer`, `-PipelineVariable`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## RELATED LINKS @@ -48,8 +50,6 @@ Example 1 returns a collection of all existing SPO app prioritization Policies. [Add-SPOAppPrioritizationPolicy](./Add-SPOAppPrioritizationPolicy.md) -[Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) - [Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) [Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index 5df40e1c6..34284f185 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -14,17 +14,17 @@ ms.reviewer: ## SYNOPSIS -Deletes an existing SPO app prioritization Policy in your tenancy. +Deletes an existing SPO app prioritization policy in your tenancy. ## SYNTAX -```powershell -Remove-SPOAppPrioritizationPolicy -PolicyId +``` +Remove-SPOAppPrioritizationPolicy -PolicyId [] ``` ## DESCRIPTION -This cmdlet lets you delete an existing policy. +This cmdlet lets you delete an existing SPO app prioritization policy. ## EXAMPLES @@ -34,7 +34,7 @@ This cmdlet lets you delete an existing policy. Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 ``` -Example 1 deletes the policy bearing the policyId 48abxxa9. Running the Get command will no longer show the policy in the result. +Example 1 deletes the policy bearing the policyId 48abxxa9. Running the Get-SPOAppPrioritizationPolicies command will no longer show the policy in the result. ## PARAMETERS @@ -53,6 +53,9 @@ 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`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## RELATED LINKS @@ -63,5 +66,3 @@ Accept wildcard characters: False [Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) [Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - -[Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index df313a9c5..a0c1c5360 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -14,17 +14,17 @@ ms.reviewer: ## SYNOPSIS -Edits an existing SPO app prioritization Policy in your tenancy. +Edits an existing SPO app prioritization policy in your tenancy. ## SYNTAX -```powershell -Set-SPOAppPrioritizationPolicy -PolicyId -Enabled -QuotaMultiplier +``` +Set-SPOAppPrioritizationPolicy -PolicyId -Enabled -QuotaMultiplier [] ``` ## DESCRIPTION -This cmdlet lets you enable or disable an existing policy and/or change the quotaMultiplier associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the Get commandlet. Both the parameters are mandatory. +This cmdlet lets you enable or disable an existing policy and/or change the QuotaMultiplier associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the Get-SPOAppPrioritizationPolicies commandlet. ## EXAMPLES @@ -97,6 +97,9 @@ 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`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). ## RELATED LINKS @@ -106,6 +109,4 @@ Accept wildcard characters: False [Get-SPOAppPrioritizationPolicies](./Get-SPOAppPrioritizationPolicies.md) -[Set-SPOAppPrioritizationPolicy](./Set-SPOAppPrioritizationPolicy.md) - [Remove-SPOAppPrioritizationPolicy](./Remove-SPOAppPrioritizationPolicy.md) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md index 535afaad7..befc14c32 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md @@ -17,7 +17,7 @@ The following cmdlet references are for SharePoint Online. ### [Add-SPOAppPrioritizationPolicy](Add-SPOAppPrioritizationPolicy.md) -{{Adds a new SPO app prioritization Policy to your tenancy.}} +{{Adds a new SPO app prioritization policy to your tenancy.}} ### [Add-SPOContainerTypeBilling](Add-SPOContainerTypeBilling.md) @@ -430,7 +430,7 @@ This cmdlet is not currently active in production and may be removed in the futu ### [Remove-SPOAppPrioritizationPolicy](Remove-SPOAppPrioritizationPolicy.md) -{{Deletes an existing SPO app prioritization Policy in your tenancy.}} +{{Deletes an existing SPO app prioritization policy in your tenancy.}} ### [Remove-SPODataConnectionSetting](Remove-SPODataConnectionSetting.md) @@ -558,7 +558,7 @@ This cmdlet is not currently active in production and may be removed in the futu ### [Set-SPOAppPrioritizationPolicy](Set-SPOAppPrioritizationPolicy.md) -{{Edits an existing SPO app prioritization Policy in your tenancy. }} +{{Edits an existing SPO app prioritization policy in your tenancy. }} ### [Set-SPOBuiltInFontPackageSettings](Set-SPOBuiltInFontPackageSettings.md) From d50dc45196af593be757da5169fe7eec38ada172 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 16:21:48 +0000 Subject: [PATCH 05/13] had missed a P->p --- sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md index befc14c32..30ee801e0 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/sharepoint-online.md @@ -113,7 +113,7 @@ The following cmdlet references are for SharePoint Online. ### [Get-SPOAppPrioritizationPolicies](Get-SPOAppPrioritizationPolicies.md) -{{Gets all existing SPO app prioritization Policies of your tenancy}} +{{Gets all existing SPO app prioritization policies of your tenancy}} ### [Get-SPOBuiltInFontPackageSettings](Get-SPOBuiltInFontPackageSettings.md) From 5b2b66f4eac20e43334c953213294b443660bd90 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 16:26:09 +0000 Subject: [PATCH 06/13] attemp to address feedback about mandatory param for set spoappprioritizationpolicy --- .../Set-SPOAppPrioritizationPolicy.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index a0c1c5360..ae7497674 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -31,7 +31,7 @@ This cmdlet lets you enable or disable an existing policy and/or change the Qu ### Example 1 ```powershell -Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false -QuotaMultiplier 4 +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false ``` Example 1 disables the policy bearing the policyId 48abxxa9 @@ -44,6 +44,13 @@ Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultipl Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the QuotaMultiplier to 7. +### Example 3 + +```powershell +Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 +``` + +Example 3 set the QuotaMultiplier to 7 of the policy bearing the policyId 48abxxa9. ## PARAMETERS @@ -97,6 +104,7 @@ 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`, `-ProgressAction`, `-Verbose`, `-WarningAction`, and `-WarningVariable`. For more information, see [about_CommonParameters](/powershell/module/microsoft.powershell.core/about/about_commonparameters). From cc55578dcc24cecf97ff2a09fc87171fc592c460 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 17:11:10 +0000 Subject: [PATCH 07/13] fixed app priortization casing --- .../sharepoint-online/Get-SPOAppPrioritizationPolicies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md index 2072819c1..1673f04cf 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Get-SPOAppPrioritizationPolicies.md @@ -25,7 +25,7 @@ Get-SPOAppPrioritizationPolicies [] ## DESCRIPTION -This cmdlet gets all existing SPO App Prioritization billing policies for your tenancy. +This cmdlet gets all existing SPO App prioritization billing policies for your tenancy. ## EXAMPLES From 638b800777db6e211b2614b9d942105161d9b022 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 17:17:07 +0000 Subject: [PATCH 08/13] changed param to guid for add --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index 7eeb7bc30..c3c5213c0 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -19,7 +19,7 @@ Adds a new SPO app prioritization Policy to your tenancy. ## SYNTAX ``` -Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] +Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] ``` ## DESCRIPTION @@ -43,7 +43,7 @@ Example 1 adds the billing policy to your tenancy. It will not add the policy on This parameter specifies the app ID of the application to onboard. ```yaml -Type: String +Type: guid Parameter Sets: (All) Aliases: Applicable: SharePoint Online @@ -60,7 +60,7 @@ Accept wildcard characters: False This parameter describes the Azure subscription ID to which the container type needs to be associated. ```yaml -Type: String +Type: guid Parameter Sets: (All) Aliases: Applicable: SharePoint Online From f4376b4966d43c719237872977a87123bccd5d4b Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 18:37:41 +0000 Subject: [PATCH 09/13] fixed guid casing --- .../sharepoint-online/Add-SPOAppPrioritizationPolicy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md index c3c5213c0..d99791678 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Add-SPOAppPrioritizationPolicy.md @@ -19,7 +19,7 @@ Adds a new SPO app prioritization Policy to your tenancy. ## SYNTAX ``` -Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] +Add-SPOAppPrioritizationPolicy -AppId -AzureSubscriptionId -ResourceGroup -Account -QuotaMultiplier [] ``` ## DESCRIPTION @@ -43,7 +43,7 @@ Example 1 adds the billing policy to your tenancy. It will not add the policy on This parameter specifies the app ID of the application to onboard. ```yaml -Type: guid +Type: Guid Parameter Sets: (All) Aliases: Applicable: SharePoint Online @@ -60,7 +60,7 @@ Accept wildcard characters: False This parameter describes the Azure subscription ID to which the container type needs to be associated. ```yaml -Type: guid +Type: Guid Parameter Sets: (All) Aliases: Applicable: SharePoint Online From 371146a511316b50ae13e7a251626b72916fa5bf Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 18:43:49 +0000 Subject: [PATCH 10/13] fixed back ticks --- .../Remove-SPOAppPrioritizationPolicy.md | 2 +- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md index 34284f185..57cd71cd3 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Remove-SPOAppPrioritizationPolicy.md @@ -34,7 +34,7 @@ This cmdlet lets you delete an existing SPO app prioritization policy. Remove-SPOAppPrioritizationPolicy -PolicyId 48abxxa9 ``` -Example 1 deletes the policy bearing the policyId 48abxxa9. Running the Get-SPOAppPrioritizationPolicies command will no longer show the policy in the result. +Example 1 deletes the policy bearing the policyId 48abxxa9. Running the `Get-SPOAppPrioritizationPolicies` command will no longer show the policy in the result. ## PARAMETERS diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index ae7497674..0f0e66694 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -24,7 +24,7 @@ Set-SPOAppPrioritizationPolicy -PolicyId -Enabled -QuotaMulti ## DESCRIPTION -This cmdlet lets you enable or disable an existing policy and/or change the QuotaMultiplier associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the Get-SPOAppPrioritizationPolicies commandlet. +This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. ## EXAMPLES @@ -42,7 +42,7 @@ Example 1 disables the policy bearing the policyId 48abxxa9 Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $true -QuotaMultiplier 7 ``` -Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the QuotaMultiplier to 7. +Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the quota multiplier limit to 7. ### Example 3 @@ -50,7 +50,7 @@ Example 2 enables the policy bearing the policyId 48abxxa9 and also sets the Quo Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -QuotaMultiplier 8 ``` -Example 3 set the QuotaMultiplier to 7 of the policy bearing the policyId 48abxxa9. +Example 3 set the quota multiplier limit to 7 of the policy bearing the policyId 48abxxa9. ## PARAMETERS @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -QuotaMultiplier -This parameter specifies the multiplier for the scaling feature. +This parameter specifies the quota multiplier limit for the scaling feature. ```yaml Type: int From 543cc8e0904d1e2c34088d246c43e6bfd6523712 Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Fri, 21 Mar 2025 18:46:35 +0000 Subject: [PATCH 11/13] fixed parameters to optionnal --- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 0f0e66694..129a5b8ac 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -24,7 +24,7 @@ Set-SPOAppPrioritizationPolicy -PolicyId -Enabled -QuotaMulti ## DESCRIPTION -This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. +This cmdlet lets you enable or disable an existing policy and/or change the quota multiplier limit associated with the policy. Note that disabling the policy does not delete the policy. If you need to change only one of the two parameters, retain the value of the non-changing parameter from the `Get-SPOAppPrioritizationPolicies` commandlet. ## EXAMPLES @@ -80,7 +80,7 @@ Parameter Sets: (All) Aliases: Applicable: SharePoint Online -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -QuotaMultiplier -This parameter specifies the quota multiplier limit for the scaling feature. +This parameter specifies the quota multiplier limit for the scaling feature. Value has to be a range of [1,10] ```yaml Type: int @@ -98,7 +98,7 @@ Parameter Sets: (All) Aliases: Applicable: SharePoint Online -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False From 2a1f0b65d2d686c471024e4f7c6e16ae6f58557b Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Mon, 24 Mar 2025 15:39:39 +0000 Subject: [PATCH 12/13] fixed string for params --- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 129a5b8ac..95dbc57a0 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -19,7 +19,7 @@ Edits an existing SPO app prioritization policy in your tenancy. ## SYNTAX ``` -Set-SPOAppPrioritizationPolicy -PolicyId -Enabled -QuotaMultiplier [] +Set-SPOAppPrioritizationPolicy -PolicyId [-Enabled ] [-QuotaMultiplier ] [] ``` ## DESCRIPTION From 89e1a54bd8b351d225c45951a34f95549f49139f Mon Sep 17 00:00:00 2001 From: Simon Bourdages Date: Mon, 24 Mar 2025 18:18:03 +0000 Subject: [PATCH 13/13] fixed value range --- .../sharepoint-online/Set-SPOAppPrioritizationPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md index 95dbc57a0..941bd8ecd 100644 --- a/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md +++ b/sharepoint/sharepoint-ps/sharepoint-online/Set-SPOAppPrioritizationPolicy.md @@ -90,7 +90,7 @@ Accept wildcard characters: False ### -QuotaMultiplier -This parameter specifies the quota multiplier limit for the scaling feature. Value has to be a range of [1,10] +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 1 and 10. ```yaml Type: int