Skip to content

Commit 94b8996

Browse files
authored
Update Get-SPOApplication.md
1 parent e68a6a2 commit 94b8996

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ Get-SPOApplication [[-OwningApplicationId] <OwningApplicationid>] [[-Application
3737

3838
## DESCRIPTION
3939

40-
The `Get-SPOApplication` cmdlet retrieves and returns SharePoint Embedded applications of all publishers registered in a tenant or a particular application when paired with the `OwningApplicationId` parameter.
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.
4144

4245
You must be a SharePoint Embedded Administrator to run the cmdlet.
4346

@@ -58,7 +61,7 @@ Example 1 returns all SharePoint Embedded applications registered in the specifi
5861
Get-SPOApplication -OwningApplicationId <OwningApplicationId>
5962
```
6063

61-
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:
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:
6265
1) **Applications** that lists all the guest application IDs with permissions to the owning application.
6366
2) **SharingCapability** settings and the “OverrideTenantSharingCapability” status.
6467
3) **CopilotEmbeddedChatHosts** that lists the host URLs driving the Copilot embedded chat capability on the SharePoint Embedded application.
@@ -75,8 +78,7 @@ Example 3 enumerates app-only permissions of the guest application specified in
7578
### Example 4
7679

7780
```powershell
78-
$r = Get-SPOApplication -OwningApplicationId <OwningApplicationId>
79-
$r.CopilotEmbeddedChatHosts
81+
Get-SPOApplication -OwningApplicationId <OwningApplicationId> | Select-Object CopilotEmbeddedChatHosts
8082
```
8183

8284
Example 4 enumerates the entire list of the host URLs driving the Copilot embedded chat capability on the SharePoint Embedded application.

0 commit comments

Comments
 (0)