|
| 1 | +--- |
| 2 | +external help file: sharepointonline.xml |
| 3 | +Module Name: Microsoft.Online.SharePoint.PowerShell |
| 4 | +online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration |
| 5 | +applicable: SharePoint Online |
| 6 | +title: Add-SPOServicePrioritizationAppRegistration |
| 7 | +schema: 2.0.0 |
| 8 | +author: killerewok2000 |
| 9 | +ms.author: Sibourda |
| 10 | +ms.reviewer: |
| 11 | +--- |
| 12 | + |
| 13 | +# Add-SPOServicePrioritizationAppRegistration |
| 14 | + |
| 15 | +## SYNOPSIS |
| 16 | +Adds a new app registration for service prioritization in SharePoint Online. |
| 17 | +> [!NOTE] |
| 18 | +> This functionality is rolling out and might not be fully enabled in your environment yet. |
| 19 | +
|
| 20 | +## SYNTAX |
| 21 | + |
| 22 | +``` |
| 23 | +Add-SPOServicePrioritizationAppRegistration -AppId <Guid> -PolicyId <Guid> -QuotaMultiplier <Int32> |
| 24 | + [<CommonParameters>] |
| 25 | +``` |
| 26 | + |
| 27 | +## DESCRIPTION |
| 28 | +This cmdlet allows administrators to register a new app for service prioritization in SharePoint Online. This cmdlet is useful for configuring specific apps to receive prioritized service handling based on defined policies. |
| 29 | + |
| 30 | +## EXAMPLES |
| 31 | + |
| 32 | +### Example 1 |
| 33 | +```powershell |
| 34 | +Add-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2 |
| 35 | +``` |
| 36 | +This example adds a new app registration with the specified AppId and PolicyId, and sets the quota multiplier to 2. |
| 37 | + |
| 38 | +## PARAMETERS |
| 39 | + |
| 40 | +### -AppId |
| 41 | +Specifies the unique identifier (GUID) of the app registration to be added. |
| 42 | + |
| 43 | +```yaml |
| 44 | +Type: Guid |
| 45 | +Parameter Sets: (All) |
| 46 | +Aliases: |
| 47 | + |
| 48 | +Required: True |
| 49 | +Position: Named |
| 50 | +Default value: None |
| 51 | +Accept pipeline input: False |
| 52 | +Accept wildcard characters: False |
| 53 | +``` |
| 54 | +
|
| 55 | +### -PolicyId |
| 56 | +Specifies the unique identifier (GUID) of the policy to associate with the app registration. |
| 57 | +
|
| 58 | +```yaml |
| 59 | +Type: Guid |
| 60 | +Parameter Sets: (All) |
| 61 | +Aliases: |
| 62 | + |
| 63 | +Required: True |
| 64 | +Position: Named |
| 65 | +Default value: None |
| 66 | +Accept pipeline input: False |
| 67 | +Accept wildcard characters: False |
| 68 | +``` |
| 69 | +
|
| 70 | +### -QuotaMultiplier |
| 71 | +This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10. |
| 72 | +
|
| 73 | +```yaml |
| 74 | +Type: Int32 |
| 75 | +Parameter Sets: (All) |
| 76 | +Aliases: |
| 77 | + |
| 78 | +Required: True |
| 79 | +Position: Named |
| 80 | +Default value: None |
| 81 | +Accept pipeline input: False |
| 82 | +Accept wildcard characters: False |
| 83 | +``` |
| 84 | +
|
| 85 | +### CommonParameters |
| 86 | +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). |
| 87 | + |
| 88 | +## INPUTS |
| 89 | + |
| 90 | +### None |
| 91 | + |
| 92 | +## OUTPUTS |
| 93 | + |
| 94 | +### System.Object |
| 95 | +## NOTES |
| 96 | + |
| 97 | +## RELATED LINKS |
| 98 | + |
| 99 | +[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online) |
| 100 | + |
| 101 | +[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md) |
| 102 | + |
| 103 | +[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md) |
| 104 | + |
| 105 | +[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md) |
| 106 | + |
| 107 | +[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md) |
| 108 | + |
| 109 | +[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md) |
0 commit comments