Skip to content

Commit dd346a3

Browse files
author
juanoriana
committed
fix: md doc header attribution
1 parent 8cdc0e6 commit dd346a3

3 files changed

Lines changed: 26 additions & 38 deletions

File tree

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOServicePrioritizationAppRegistrations.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
---
22
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
33
Module Name: Microsoft.Online.SharePoint.PowerShell
4-
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/get-sposerviceprioritizationappregistrations
4+
online version: https://learn.microsoft.com/powershell/module/microsoft.online.sharepoint.powershell/Get-SPOServicePrioritizationAppRegistrations
5+
applicable: SharePoint Online
6+
title: Get-SPOServicePrioritizationAppRegistrations
57
schema: 2.0.0
8+
author: samkabue
9+
ms.author: speedta
10+
ms.reviewer: speedta
611
---
712

813
# Get-SPOServicePrioritizationAppRegistrations
@@ -27,11 +32,9 @@ Get-SPOServicePrioritizationAppRegistrations -PolicyId <Guid> [<CommonParameters
2732

2833
## DESCRIPTION
2934

30-
The `Get-SPOServicePrioritizationAppRegistrations` cmdlet retrieves all app registrations enrolled in SharePoint Online Service Prioritization for the tenant.
35+
This cmdlet retrieves all app registrations enrolled in SharePoint Online Service Prioritization for the tenant.
3136

32-
When `-PolicyId` is specified, only registrations linked to that billing policy are returned. The filtering is performed server-side, so only matching records are transferred.
33-
34-
You must be a SharePoint Online administrator to run this cmdlet.
37+
When `-PolicyId` is specified, only registrations linked to that billing policy are returned.
3538

3639
## EXAMPLES
3740

@@ -46,7 +49,7 @@ Returns all app registrations enrolled in SharePoint Online Service Prioritizati
4649
### Example 2: Get app registrations for a specific billing policy
4750

4851
```powershell
49-
Get-SPOServicePrioritizationAppRegistrations -PolicyId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
52+
Get-SPOServicePrioritizationAppRegistrations -PolicyId 11111111-1111-1111-1111-111111111111
5053
```
5154

5255
Returns only app registrations linked to the specified billing policy.
@@ -81,16 +84,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
8184
8285
## OUTPUTS
8386
84-
### Microsoft.Online.SharePoint.PowerShell.SPOServicePrioritizationAppRegistrationCmdLetObj
85-
86-
Each output object has the following properties:
87-
88-
| Property | Type | Description |
89-
|---|---|---|
90-
| AppId | String | The application (client) ID of the registered app. |
91-
| PolicyId | String | The billing policy ID the app is linked to. |
92-
| Enabled | String | Whether the registration is currently active. |
93-
| QuotaMultiplier | Int32 | The throttling quota multiplier applied to this app (2–10). |
87+
### System.Object
9488
9589
## NOTES
9690

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Remove-SPOServicePrioritizationAppRegistrationsByPolicy.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
33
Module Name: Microsoft.Online.SharePoint.PowerShell
44
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/remove-sposerviceprioritizationappregistrationsbypolicy
5+
title: Remove-SPOServicePrioritizationAppRegistrationsByPolicy
56
schema: 2.0.0
7+
author: juanoriana
8+
ms.author:
9+
ms.reviewer:
610
---
711

812
# Remove-SPOServicePrioritizationAppRegistrationsByPolicy
@@ -19,28 +23,26 @@ Remove-SPOServicePrioritizationAppRegistrationsByPolicy -PolicyId <Guid> [-Force
1923

2024
## DESCRIPTION
2125

22-
The `Remove-SPOServicePrioritizationAppRegistrationsByPolicy` cmdlet removes all app registrations associated with the specified billing policy in a single server-side operation.
26+
This cmdlet removes all app registrations associated with the specified billing policy.
2327

2428
Before deletion, the cmdlet verifies that the billing policy exists and that at least one app registration is linked to it. If neither condition is met, the cmdlet exits silently.
2529

2630
By default, the cmdlet prompts for confirmation before deleting. Use `-Force` to suppress the confirmation prompt.
2731

28-
You must be a SharePoint Online administrator to run this cmdlet.
29-
3032
## EXAMPLES
3133

3234
### Example 1: Remove all app registrations for a billing policy
3335

3436
```powershell
35-
Remove-SPOServicePrioritizationAppRegistrationsByPolicy -PolicyId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
37+
Remove-SPOServicePrioritizationAppRegistrationsByPolicy -PolicyId 11111111-1111-1111-1111-111111111111
3638
```
3739

3840
Prompts for confirmation, then removes all app registrations linked to the specified billing policy.
3941

4042
### Example 2: Remove without confirmation prompt
4143

4244
```powershell
43-
Remove-SPOServicePrioritizationAppRegistrationsByPolicy -PolicyId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -Force
45+
Remove-SPOServicePrioritizationAppRegistrationsByPolicy -PolicyId 11111111-1111-1111-1111-111111111111 -Force
4446
```
4547

4648
Removes all app registrations linked to the specified billing policy without prompting for confirmation.
@@ -121,13 +123,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
121123
122124
## OUTPUTS
123125
124-
### Microsoft.Online.SharePoint.PowerShell.SPOServicePrioritizationBulkDeleteResult
125-
126-
| Property | Type | Description |
127-
|---|---|---|
128-
| SuccessCount | Int32 | The number of app registrations successfully removed. |
129-
| FailedAppIds | List\<String\> | App IDs that could not be confirmed as deleted, populated only when the server reports fewer deletions than expected. `null` when all registrations were deleted successfully. |
130-
| BillingPolicyDeleted | Boolean | Always `false` for this cmdlet. Use `Remove-SPOServicePrioritizationBillingPolicy` to delete the billing policy. |
126+
### System.Object
131127
132128
## NOTES
133129

sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Remove-SPOServicePrioritizationBillingPolicy.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
external help file: Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
33
Module Name: Microsoft.Online.SharePoint.PowerShell
44
online version: https://learn.microsoft.com/powershell/module/sharepoint-online/remove-sposerviceprioritizationbillingpolicy
5+
title: Remove-SPOServicePrioritizationBillingPolicy
56
schema: 2.0.0
7+
author: juanoriana
8+
ms.author:
9+
ms.reviewer:
610
---
711

812
# Remove-SPOServicePrioritizationBillingPolicy
@@ -19,7 +23,7 @@ Remove-SPOServicePrioritizationBillingPolicy -PolicyId <Guid> [-Force] [-WhatIf]
1923

2024
## DESCRIPTION
2125

22-
The `Remove-SPOServicePrioritizationBillingPolicy` cmdlet removes all app registrations associated with the specified billing policy in a single server-side operation, and then deletes the billing policy from Azure Resource Manager.
26+
This cmdlet removes all app registrations associated with the specified billing policy in a single server-side operation, and then deletes the billing policy from Azure Resource Manager.
2327

2428
The billing policy is only deleted if all linked app registrations were successfully removed. If any registrations could not be confirmed as deleted, the billing policy is left intact and the unconfirmed app IDs are reported in `FailedAppIds`.
2529

@@ -32,15 +36,15 @@ You must be a SharePoint Online administrator to run this cmdlet.
3236
### Example 1: Remove a billing policy and all its app registrations
3337

3438
```powershell
35-
Remove-SPOServicePrioritizationBillingPolicy -PolicyId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
39+
Remove-SPOServicePrioritizationBillingPolicy -PolicyId 11111111-1111-1111-1111-111111111111
3640
```
3741

3842
Prompts for confirmation, then removes all app registrations linked to the specified billing policy and deletes the billing policy.
3943

4044
### Example 2: Remove without confirmation prompt
4145

4246
```powershell
43-
Remove-SPOServicePrioritizationBillingPolicy -PolicyId "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -Force
47+
Remove-SPOServicePrioritizationBillingPolicy -PolicyId 11111111-1111-1111-1111-111111111111 -Force
4448
```
4549

4650
Removes all app registrations linked to the specified billing policy and deletes the billing policy without prompting for confirmation.
@@ -121,13 +125,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
121125
122126
## OUTPUTS
123127
124-
### Microsoft.Online.SharePoint.PowerShell.SPOServicePrioritizationBulkDeleteResult
125-
126-
| Property | Type | Description |
127-
|---|---|---|
128-
| SuccessCount | Int32 | The number of app registrations successfully removed. |
129-
| FailedAppIds | List\<String\> | App IDs that could not be confirmed as deleted, populated only when the server reports fewer deletions than expected. `null` when all registrations were deleted successfully. |
130-
| BillingPolicyDeleted | Boolean | `true` if the billing policy was successfully deleted from Azure Resource Manager; `false` if the policy could not be deleted (e.g., transient error or insufficient permissions) or if there were failed app registration deletions. |
128+
### System.Object
131129
132130
## NOTES
133131

0 commit comments

Comments
 (0)