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
The `Get-SPOApplication` cmdlet retrieves and returns all third-party SharePoint Embedded applications registered in a tenant that match the given criteria. You must be a SharePoint Online Administrator or Global Administrator to run the cmdlet. For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).
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 Online Administrator or Global Administrator to run the cmdlet. For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).
36
36
37
37
## EXAMPLES
38
38
@@ -50,19 +50,16 @@ Example 1 returns all SharePoint Embedded applications registered in the specifi
Example 2 lists the details of the owning application corresponding to the `OwningApplicationId` registered in the specified tenant.
53
+
Example 2 lists the details of the owning application corresponding to the `OwningApplicationId` registered in the specified tenant. This returns `Applications` which specifies the list of guest applications IDs with current access permissions to the owning application, `SharingCapability` settings, and `OverrideTenantSharingCapability` status.
54
54
55
-
TODO: add portion about viewing active 1P app Ids in this cmdlet
Example 3 enumerates permissions of the owning applications registered in the specified tenant.
64
-
65
-
TODO: Add portion about viewing guest app permissions in this cmdlet (1P guest app perms)
62
+
Example 3 list details of the guest application specified in `ApplicationId`. This inclues the list of guest application access permissions. Note that only app-only permissions are supported.
66
63
67
64
## PARAMETERS
68
65
@@ -76,9 +73,11 @@ The following details are returned:
Copy file name to clipboardExpand all lines: sharepoint/sharepoint-ps/sharepoint-online/Set-SPOApplicationPermission.md
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ ms.reviewer:
14
14
15
15
## SYNOPSIS
16
16
17
-
Adds permissions for a guest application to access a SharePoint Embedded application.
17
+
Manages permissions for a guest application to access a SharePoint Embedded application.
18
18
19
19
## SYNTAX
20
20
@@ -31,37 +31,36 @@ Set-SPOApplicationPermission
31
31
32
32
## DESCRIPTION
33
33
34
-
The `Set-SPOApplicationPermission` cmdlet adds a guest app permission to a SharePoint Embedded application. Currently only app-only permissions are supported at this time. Delegated permissions are not support for guest applications. A guest application is defined as any application within the enterprise applications of the owning tenant.
34
+
The `Set-SPOApplicationPermission` cmdlet manages permissions for a guest app's access to a SharePoint Embedded application. This includes adding, updating, and deleting guest app permissions. Currently only app-only permissions are supported at this time. Delegated permissions are not supported for guest applications. A guest application is defined as any application within the enterprise applications of the owning tenant.
35
35
36
-
You must be a SharePoint Online Administrator or Global Administrator to run this cmdlet. For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).
36
+
You must be a SharePoint Online Administrator to run this cmdlet. For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at [Intro to SharePoint Online Management Shell](/powershell/sharepoint/sharepoint-online/introduction-sharepoint-online-management-shell?view=sharepoint-ps).
Example 1 gives the Guest App with ID `12345678-1234-1234-abcd-abcdefghijkl` app-only Read, Write, and Delete permissions to access the Owning Application Microsoft Loop of ID `a187e399-0c36-4b98-8f04-1edc167a0996`.
47
+
Example 1 gives the guest app with ID `12345678-1234-1234-abcd-abcdefghijkl` app-only Readpermissions to access the owning application Microsoft Loop of ID `a187e399-0c36-4b98-8f04-1edc167a0996`.
Example 2 gives the Guest App with ID `12345678-1234-1234-abcd-abcdefghijkl` app-only Read, Write, and Delete permissions to access the Owning Application Microsoft Designer of ID `a187e399-0c36-4b98-8f04-1edc167a0996`. Notice that delegated permissions are not supported at this time and are default set to `None`.
55
+
Example 2 gives the guest app with ID `12345678-1234-1234-abcd-abcdefghijkl` app-only ReadContent permissions to access the owning application Microsoft Designer of ID `a187e399-0c36-4b98-8f04-1edc167a0996`. Notice that delegated permissions are not supported at this time and are default set to `None`.
Example 3 sets guest application permissions to None for the guest app with ID `12345678-1234-1234-abcd-abcdefghijkl`. This has deleted previous permissions for that guest app to access owning application of `a187e399-0c36-4b98-8f04-1edc167a0996`. Notice that delegated permissions are not supported at this time and are default set to `None`.
0 commit comments