Skip to content

Commit 0b47294

Browse files
Merge branch 'main' into patch-2
2 parents 989b2af + d8ec55b commit 0b47294

File tree

9 files changed

+275
-45
lines changed

9 files changed

+275
-45
lines changed

sharepoint/sharepoint-ps/sharepoint-online/Get-SPOApplication.md

Lines changed: 39 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ online version: https://learn.microsoft.com/powershell/module/sharepoint-online/
55
applicable: SharePoint
66
title: Get-SPOApplication
77
schema: 2.0.0
8-
author: cindylay
9-
ms.author: cindylay
8+
author: ShreyasSar26
9+
ms.author: shsaravanan
1010
ms.reviewer:
1111
---
1212

@@ -18,21 +18,35 @@ Returns a list of SharePoint Embedded applications in the specified tenant.
1818

1919
## SYNTAX
2020

21+
```
22+
Get-SPOApplication [[-OwningApplicationId] <Guid>] [[-ApplicationId] <Guid>] [<CommonParameters>]
23+
```
24+
2125
### ParamSet1
2226

2327
```powershell
24-
Get-SPOApplication [[-OwningApplicationId] <OwningApplicationid>] [<CommonParameters>]
28+
Get-SPOApplication [<CommonParameters>]
2529
```
26-
2730
### ParamSet2
2831

2932
```powershell
30-
Get-SPOApplication [[-OwningApplicationId] <OwningApplicationid>] [[-ApplicationId] <ApplicationId>]
33+
Get-SPOApplication [[-OwningApplicationId] <Guid>] [<CommonParameters>]
34+
```
35+
36+
### ParamSet3
37+
38+
```powershell
39+
Get-SPOApplication [[-OwningApplicationId] <Guid>] [[-ApplicationId] <Guid>][<CommonParameters>]
3140
```
3241

3342
## DESCRIPTION
3443

35-
The `Get-SPOApplication` cmdlet retrieves and returns SharePoint Embedded applications of all publishers registered in a tenant that match the given criteria. You must be a SharePoint Administrator to run the cmdlet. For permissions and the most current information about Windows PowerShell, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).
44+
This cmdlet is used to retrieve and return SharePoint Embedded applications from all publishers registered within a tenant. This cmdlet can be further customized by pairing it with the `OwningApplicationId` parameter to target a specific application.
45+
46+
In addition to providing details about the application name, this cmdlet also returns essential information about guest applications and their associated permissions on the owning application. The cmdlet displays data related to the sharing capabilities, including the `OverrideTenantSharingCapability` status. Furthermore, the cmdlet lists all host URLs allowed to use the SharePoint Embedded application's declarative agent experience.
47+
48+
You must be a SharePoint Embedded Administrator to run the cmdlet.
49+
3650

3751
## EXAMPLES
3852

@@ -50,7 +64,7 @@ Example 1 returns all SharePoint Embedded applications registered in the specifi
5064
Get-SPOApplication -OwningApplicationId <OwningApplicationId>
5165
```
5266

53-
Example 2 provides details about the owning application in the specified tenant. It returns Applications, which includes the list of guest application IDs with permissions to the owning application, as well as the SharingCapability settings and the OverrideTenantSharingCapability status
67+
Example 2 provides details about the application corresponding to the owning application Id in the specified tenant. It returns applications, which includes the list of guest application IDs with permissions to the owning application, as well as the SharingCapability settings, the `OverrideTenantSharingCapability` status and the list of all Copilot embedded chat host URLs.
5468

5569
### Example 3
5670

@@ -59,6 +73,15 @@ Get-SPOApplication -OwningApplicationId <OwningApplicationId> -ApplicationId <Ap
5973
```
6074

6175
Example 3 enumerates app-only permissions of the guest application specified in `ApplicationId`.
76+
77+
### Example 4
78+
79+
```powershell
80+
Get-SPOApplication -OwningApplicationId <OwningApplicationId> | Select-Object CopilotEmbeddedChatHosts
81+
```
82+
83+
Example 4 enumerates the entire list of the host URLs driving the Copilot embedded chat capability on the SharePoint Embedded application.
84+
6285
## PARAMETERS
6386

6487
### -OwningApplicationId
@@ -76,15 +99,16 @@ The following details are returned:
7699
- SharingCapability
77100

78101
- OverrideTenantSharingCapability
102+
103+
- CopilotEmbeddedChatHosts
79104

80105
```yaml
81-
Type: String
106+
Type: Guid
82107
Parameter Sets: (All)
83108
Aliases:
84-
Applicable: SharePoint
85109

86110
Required: False
87-
Position: Named
111+
Position: 0
88112
Default value: None
89113
Accept pipeline input: False
90114
Accept wildcard characters: False
@@ -95,18 +119,17 @@ Accept wildcard characters: False
95119
Use this parameter to enumerate app-only permissions of the guest application id with access to the specified owning application.
96120
97121
```yaml
98-
Type: String
99-
Parameter Sets: ParamSet2
122+
Type: Guid
123+
Parameter Sets: (All)
100124
Aliases:
101-
Applicable: SharePoint
102125

103126
Required: False
104-
Position: Named
127+
Position: 1
105128
Default value: None
106129
Accept pipeline input: False
107130
Accept wildcard characters: False
108131
```
109-
132+
110133
### CommonParameters
111134
112135
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).
@@ -115,4 +138,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
115138
## RELATED LINKS
116139
117140
[Get-SPOContainer](./Get-SPOContainer.md)
141+
118142
[Set-SPOApplication](./Set-SPOApplication.md)
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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/get-spobuiltinfontpackagesettings
5+
applicable: SharePoint Online
6+
title: Get-SPOBuiltInFontPackageSettings
7+
schema: 2.0.0
8+
author: Yixian15
9+
ms.author: yixianpu
10+
ms.reviewer:
11+
---
12+
13+
# Get-SPOBuiltInFontPackageSettings
14+
15+
## SYNOPSIS
16+
17+
Use this cmdlet to get settings of [built-in font packages](/sharepoint/brand-center-font-packages).
18+
19+
## SYNTAX
20+
21+
```powershell
22+
Get-SPOBuiltInFontPackageSettings
23+
```
24+
25+
## DESCRIPTION
26+
27+
Use this cmdlet to get settings of [built-in font packages](/sharepoint/brand-center-font-packages).
28+
29+
## EXAMPLES
30+
31+
### Example 1
32+
33+
```powershell
34+
Get-SPOBuiltInFontPackageSettings
35+
```
36+
37+
This example retrieves the current settings of built-in font packages.
38+
39+
## RELATED LINKS
40+
41+
- [Set-SPOBuiltInFontPackageSettings](./Set-SPOBuiltInFontPackageSettings.md)

sharepoint/sharepoint-ps/sharepoint-online/Get-SPODataAccessGovernanceInsight.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Specifies the entity that could cause oversharing and hence tracked by these rep
5353
Type: ReportEntityEnum
5454
Parameter Sets: GetAllReportsParameterSet
5555
Aliases:
56-
Accepted values: SharingLinks_Anyone, SharingLinks_PeopleInYourOrg, SharingLinks_Guests, SensitivityLabelForFiles, EveryoneExceptExternalUsersAtSite, EveryoneExceptExternalUsersForItems, PermissionedUsers
56+
Accepted values: SharingLinks_Anyone, SharingLinks_PeopleInYourOrg, SharingLinks_Guests, SensitivityLabelForFiles, EveryoneExceptExternalUsersAtSite, EveryoneExceptExternalUsersForItems, PermissionedUsers, PermissionsReport
5757

5858
Required: True
5959
Position: Named

sharepoint/sharepoint-ps/sharepoint-online/New-SPOContainerType.md

Lines changed: 33 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,19 @@ This cmdlet creates a new container type of standard or trial status. The standa
2121
### ParamSet1
2222

2323
```powershell
24-
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [<CommonParameters>]
24+
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
2525
```
2626

2727
### ParamSet2
2828

2929
```powershell
30-
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-IsPassThroughBilling] [<CommonParameters>]
30+
New-SPOContainerType [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-IsPassThroughBilling] [-GovernableByAdmin] <Boolean> [<CommonParameters>]
3131
```
3232

3333
### ParamSet3
34+
3435
```powershell
35-
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [<CommonParameters>]
36+
New-SPOContainerType [–TrialContainerType] [-ContainerTypeName] <String> [-OwningApplicationId] <String> [-ApplicationRedirectUrl] <String> [-GovernableByAdmin] <Boolean> [<CommonParameters>]
3637
```
3738

3839
## DESCRIPTION
@@ -49,9 +50,11 @@ You must be a SharePoint Embedded Administrator to run this cmdlet.
4950
```powershell
5051
New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId a735e4af
5152
```
53+
5254
In Example 1, the cmdlet creates a new regular billed container type ContosoLegal.
5355

5456
### Example 2
57+
5558
```powershell
5659
New-SPOContainerType –IsPassThroughBilling –ContainerTypeName ContosoLegal -OwningApplicationId a735e4af
5760
```
@@ -61,13 +64,20 @@ In Example 2, the cmdlet creates a direct to customer billed container type Cont
6164
### Example 3
6265

6366
```powershell
64-
6567
New-SPOContainerType –TrialContainerType -ContainerTypeName ContosoLegal -OwningApplicationId a735e4af
66-
6768
```
6869

6970
In Example 3, the cmdlet creates a trial container type, ContosoLegal, valid for 30 days.
7071

72+
### Example 4
73+
74+
```powershell
75+
New-SPOContainerType -ContainerTypeName ContosoLegal -OwningApplicationId a735e4af -GovernableByAdmin $false
76+
```
77+
78+
In Example 4, the cmdlet creates a standard container type, ContosoLegal that has opted out of management through Microsoft-enabled administrator platforms.
79+
80+
7181
## PARAMETERS
7282

7383
### -ContainerTypeName
@@ -106,6 +116,7 @@ Accept wildcard characters: False
106116
107117
108118
### –TrialContainerType
119+
109120
This parameter is used to specify that the cmdlet is used to create a trial container type and thereby the billing profile need not be provided.
110121
111122
```yaml
@@ -122,6 +133,7 @@ Accept wildcard characters: False
122133
```
123134
124135
### –IsPassThroughBilling
136+
125137
This parameter is used to create a direct to customer billed container type.
126138
127139
```yaml
@@ -137,6 +149,22 @@ Accept pipeline input: False
137149
Accept wildcard characters: False
138150
```
139151
152+
### –GovernableByAdmin
153+
154+
Using `-GovernableByAdmin`, you can decide whether consuming tenant administrators of the application should be provided management capabilities on Microsoft-enabled administrator support, through SharePoint admin center and PowerShell. By default, the value is set to True. When set to False, the consuming tenant administrator can perform only read-only actions on containers of the container type, in both SharePoint admin center and PowerShell.
155+
156+
```yaml
157+
Type: Boolean
158+
Parameter Sets:
159+
Aliases:
160+
Applicable: SharePoint Online
161+
162+
Required: False
163+
Position: Named
164+
Default value: True
165+
Accept pipeline input: False
166+
Accept wildcard characters: False
167+
```
140168

141169
## RELATED LINKS
142170

0 commit comments

Comments
 (0)