| 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 | killerewok2000 |
| ms.author | Sibourda |
| ms.reviewer |
Edits an existing SPO app prioritization Policy in your tenancy.
Set-SPOAppPrioritizationPolicy -PolicyId <string> -Enabled <boolean> -QuotaMultiplier <int> 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.
Set-SPOAppPrioritizationPolicies -PolicyId 48abxxa9 -Enabled $false -QuotaMultiplier 4 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.
This parameter specifies the ID of policy.
Type: String
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis parameter described the state wanted of the policy.
Type: Bool
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis parameter specifies the multiplier for the scaling feature.
Type: int
Parameter Sets: (All)
Aliases:
Applicable: SharePoint Online
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseGetting started with SharePoint Online Management Shell
Add-SPOAppPrioritizationPolicy
Get-SPOAppPrioritizationPolicies