Skip to content

Commit 6360a09

Browse files
authored
Update Get-SPOApplication.md
1 parent 15490a5 commit 6360a09

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

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

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,25 @@ Returns a list of SharePoint Embedded applications in the specified tenant.
2121
### ParamSet1
2222

2323
```powershell
24-
Get-SPOApplication []
24+
Get-SPOApplication [<CommonParameters>]
2525
```
2626
### ParamSet2
2727

2828
```powershell
29-
Get-SPOApplication [[-OwningApplicationId] <OwningApplicationid>] [<CommonParameters>]
29+
Get-SPOApplication [[-OwningApplicationId] <Guid>] [<CommonParameters>]
3030
```
3131

3232
### ParamSet3
3333

3434
```powershell
35-
Get-SPOApplication [[-OwningApplicationId] <OwningApplicationid>] [[-ApplicationId] <ApplicationId>]
35+
Get-SPOApplication [[-OwningApplicationId] <Guid>] [[-ApplicationId] <Guid>][<CommonParameters>]
3636
```
3737

3838
## DESCRIPTION
3939

40-
This cmdlet retrieves and returns SharePoint Embedded applications of all publishers registered in a tenant or a particular application when paired with the `OwningApplicationId` parameter. Along with the application name, the cmdlet also provides information regarding
41-
1) **Applications** that lists all the guest application IDs with permissions to the owning application.
42-
2) **SharingCapability** settings and the “OverrideTenantSharingCapability” status.
43-
3) **CopilotEmbeddedChatHosts** that lists the host URLs driving the Copilot embedded chat capability on the SharePoint Embedded application.
40+
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.
41+
42+
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 responsible for driving the Copilot embedded chat functionality in the SharePoint Embedded application.
4443

4544
You must be a SharePoint Embedded Administrator to run the cmdlet.
4645

@@ -61,11 +60,7 @@ Example 1 returns all SharePoint Embedded applications registered in the specifi
6160
Get-SPOApplication -OwningApplicationId <OwningApplicationId>
6261
```
6362

64-
Example 2 provides details about the application corresponding to the "Owning Application Id" in the specified tenant. It also returns configuration details of the application such as:
65-
1) **Applications** that lists all the guest application IDs with permissions to the owning application.
66-
2) **SharingCapability** settings and the “OverrideTenantSharingCapability” status.
67-
3) **CopilotEmbeddedChatHosts** that lists the host URLs driving the Copilot embedded chat capability on the SharePoint Embedded application.
68-
63+
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.
6964

7065
### Example 3
7166

0 commit comments

Comments
 (0)