Skip to content

Service Prioritization Name change from App prioritization #859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
May 13, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1e9b0f1
First add and remove of commands
killerewok2000 Apr 11, 2025
b20d113
added examples
killerewok2000 Apr 11, 2025
4f0c123
added notes back
killerewok2000 Apr 11, 2025
aa9c341
added parameters description to the following cmdlets:
killerewok2000 Apr 11, 2025
acbf084
addressed feedback
killerewok2000 Apr 11, 2025
e2c51d7
Merge branch 'MicrosoftDocs:main' into main
killerewok2000 Apr 20, 2025
9eb8d8c
fixing redirection
killerewok2000 Apr 20, 2025
2265992
fixing redirection
killerewok2000 Apr 20, 2025
d7542b4
fixing redirection
killerewok2000 Apr 20, 2025
1cb3dbf
tring to fix redirect
killerewok2000 Apr 20, 2025
81a5a43
revert change
killerewok2000 Apr 20, 2025
6452b14
restore deletted
killerewok2000 Apr 20, 2025
32effc2
trying redirect again
killerewok2000 Apr 21, 2025
fc68d8e
Merge branch 'MicrosoftDocs:main' into main
killerewok2000 Apr 25, 2025
da9cb10
Merge branch 'main' into main
aditisrivastava07 Apr 25, 2025
3741ca8
Merge branch 'main' into main
killerewok2000 May 5, 2025
3984d28
adding changes to json
killerewok2000 May 5, 2025
b69f9d8
fixing json file
killerewok2000 May 5, 2025
f7e5702
Merge branch 'main' into main
killerewok2000 May 8, 2025
e391417
try fix redirect
killerewok2000 May 8, 2025
26c52e3
fixing redirect
killerewok2000 May 8, 2025
79bf8f4
fixing redirection
killerewok2000 May 8, 2025
134168b
change
killerewok2000 May 9, 2025
2430953
trying to fix redirection
killerewok2000 May 9, 2025
4a4f666
redirection change
killerewok2000 May 9, 2025
bf8e559
fixu
killerewok2000 May 9, 2025
60678b1
fixing url
killerewok2000 May 9, 2025
a43d064
trying to fix redirection
killerewok2000 May 9, 2025
f51e568
trying to fix redirection
killerewok2000 May 9, 2025
07b9aca
still fixing redirection
killerewok2000 May 9, 2025
d66cecf
canceling the deletes
killerewok2000 May 9, 2025
4121a28
trying to revert it all
killerewok2000 May 9, 2025
843271e
adding a note
killerewok2000 May 9, 2025
37af70f
Merge branch 'main' into main
killerewok2000 May 13, 2025
848cde3
remove old cmdlets, add redirects to new versions
dstrome May 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
---
external help file: sharepointonline.xml
Module Name: Microsoft.Online.SharePoint.PowerShell
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/Add-SPOServicePrioritizationAppRegistration
applicable: SharePoint Online
title: Add-SPOServicePrioritizationAppRegistration
schema: 2.0.0
author: killerewok2000
ms.author: Sibourda
ms.reviewer:
---

# Add-SPOServicePrioritizationAppRegistration

## SYNOPSIS
Adds a new app registration for service prioritization in SharePoint Online.
> [!NOTE]
> This functionality is rolling out and might not be fully enabled in your environment yet.

## SYNTAX

```
Add-SPOServicePrioritizationAppRegistration -AppId <Guid> -PolicyId <Guid> -QuotaMultiplier <Int32>
[<CommonParameters>]
```

## DESCRIPTION
The `Add-SPOServicePrioritizationAppRegistration` 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.

## EXAMPLES

### Example 1
```powershell
PS C:\> Add-SPOServicePrioritizationAppRegistration -AppId "12345678-1234-1234-1234-1234567890ab" -PolicyId "87654321-4321-4321-4321-0987654321ba" -QuotaMultiplier 2
```
This example adds a new app registration with the specified AppId and PolicyId, and sets the quota multiplier to 2.

## PARAMETERS

### -AppId
Specifies the unique identifier (GUID) of the app registration to be added.

```yaml
Type: Guid
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -PolicyId
Specifies the unique identifier (GUID) of the policy to associate with the app registration.

```yaml
Type: Guid
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -QuotaMultiplier
This parameter specifies the quota multiplier limit for the scaling feature. Value must be between 2 and 10.

```yaml
Type: Int32
Parameter Sets: (All)
Aliases:

Required: True
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](http://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)

[Get-SPOServicePrioritizationAppRegistrations](./Get-SPOServicePrioritizationAppRegistrations.md)

[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md)

[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md)

[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md)

[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -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/Get-SPOServicePrioritizationAppRegistrations
applicable: SharePoint Online
title: Get-SPOServicePrioritizationAppRegistrations
schema: 2.0.0
author: killerewok2000
ms.author: Sibourda
ms.reviewer:
---

# Get-SPOServicePrioritizationAppRegistrations

## SYNOPSIS
Retrieves the list of app registrations configured for service prioritization in SharePoint Online.
> [!NOTE]
> This functionality is rolling out and might not be fully enabled in your environment yet.

## SYNTAX

```
Get-SPOServicePrioritizationAppRegistrations [<CommonParameters>]
```

## DESCRIPTION
The `Get-SPOServicePrioritizationAppRegistrations` cmdlet retrieves all app registrations that have been configured for service prioritization in SharePoint Online. This cmdlet is useful for administrators who need to review or audit the current app registrations and their associated policies.

## EXAMPLES

### Example 1
```powershell
PS C:\> Get-SPOServicePrioritizationAppRegistrations
```
This example retrieves all app registrations configured for service prioritization in SharePoint Online.

## PARAMETERS

### -AppId
Specifies the unique identifier (GUID) of the app registration to retrieve.

### 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](http://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)

[Add-SPOServicePrioritizationAppRegistration](./Add-SPOServicePrioritizationAppRegistration.md)


[Remove-SPOServicePrioritizationAppRegistration](./Remove-SPOServicePrioritizationAppRegistration.md)

[New-SPOServicePrioritizationBillingPolicy](./New-SPOServicePrioritizationBillingPolicy.md)

[Get-SPOServicePrioritizationBillingPolicies](./Get-SPOServicePrioritizationBillingPolicies.md)

[Set-SPOServicePrioritizationAppRegistration](./Set-SPOServicePrioritizationAppRegistration.md)
Loading