You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieves all app installations that are configured to use a custom CDN for the specified site collection. The output includes the product ID, title, app installation ID, site ID, and site URL of each app installation.
This example returns a list of all app installations that use a custom CDN for the specified site collection.
37
+
38
+
## PARAMETERS
39
+
40
+
### -SiteUrl
41
+
42
+
> Applicable: SharePoint Online
43
+
44
+
Specifies the URL of the site collection for which to retrieve custom CDN app installations.
45
+
46
+
```yaml
47
+
Type: System.String
48
+
Parameter Sets: (All)
49
+
Aliases:
50
+
51
+
Required: True
52
+
Position: Named
53
+
Default value: None
54
+
Accept pipeline input: False
55
+
Accept wildcard characters: False
56
+
```
57
+
58
+
### CommonParameters
59
+
60
+
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).
Retrieves all apps that use a custom content delivery network (CDN) from the Tenant App Catalog.
17
+
18
+
## SYNTAX
19
+
20
+
```
21
+
Get-SPOCustomCdnTenantApps [<CommonParameters>]
22
+
```
23
+
24
+
## DESCRIPTION
25
+
26
+
Retrieves all apps from the Tenant App Catalog that are configured to use a custom CDN. The output includes the product ID and title of each app.
27
+
28
+
## EXAMPLES
29
+
30
+
### EXAMPLE 1
31
+
32
+
```powershell
33
+
Get-SPOCustomCdnTenantApps
34
+
```
35
+
36
+
This example returns a list of all apps in the Tenant App Catalog that use a custom CDN.
37
+
38
+
## PARAMETERS
39
+
40
+
### CommonParameters
41
+
42
+
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).
Copy file name to clipboardExpand all lines: sharepoint/sharepoint-ps/Microsoft.Online.SharePoint.PowerShell/Get-SPOServicePrioritizationAppRegistrations.md
+40-12Lines changed: 40 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,29 +13,61 @@ ms.reviewer: speedta
13
13
# Get-SPOServicePrioritizationAppRegistrations
14
14
15
15
## SYNOPSIS
16
-
Retrieves the list of app registrations configured for service prioritization in SharePoint Online.
17
16
17
+
Returns app registrations enrolled in SharePoint Online Service Prioritization.
This 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.
26
+
27
+
This cmdlet retrieves all app registrations enrolled in SharePoint Online Service Prioritization for the tenant.
28
+
29
+
When `-PolicyId` is specified, only registrations linked to that billing policy are returned.
27
30
28
31
## EXAMPLES
29
32
30
33
### Example 1
34
+
31
35
```powershell
32
36
Get-SPOServicePrioritizationAppRegistrations
33
37
```
34
-
This example retrieves all app registrations configured for service prioritization in SharePoint Online.
38
+
39
+
Example 1 returns all app registrations enrolled in SharePoint Online Service Prioritization for the tenant.
Example 2 returns only app registrations linked to the specified billing policy.
35
48
36
49
## PARAMETERS
37
50
51
+
### -PolicyId
52
+
53
+
The unique identifier of the SPO Service Prioritization billing policy to filter by.
54
+
When specified, only app registrations linked to this policy are returned.
55
+
When omitted, all app registrations for the tenant are returned.
56
+
57
+
```yaml
58
+
Type: Guid
59
+
Parameter Sets: (All)
60
+
Aliases:
61
+
62
+
Required: False
63
+
Position: Named
64
+
Default value: None
65
+
Accept pipeline input: False
66
+
Accept wildcard characters: False
67
+
```
68
+
38
69
### CommonParameters
70
+
39
71
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
40
72
41
73
## INPUTS
@@ -50,14 +82,10 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
50
82
51
83
## RELATED LINKS
52
84
53
-
[Getting started with SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/connect-sharepoint-online)
0 commit comments