Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 831 Bytes

GetPnPGroupPermissions.md

File metadata and controls

24 lines (20 loc) · 831 Bytes

#Get-PnPGroupPermissions Returns the permissions for a specific SharePoint group ##Syntax

Get-PnPGroupPermissions [-Web <WebPipeBind>]
                        -Identity <GroupPipeBind>

##Returns

Microsoft.SharePoint.Client.RoleDefinitionBindingCollection

##Parameters

Parameter Type Required Description
Identity GroupPipeBind True Get the permissions of a specific group by name
Web WebPipeBind False The web to apply the command to. Omit this parameter to use the current web.
##Examples

###Example 1

PS:> Get-PnPGroupPermissions -Identity 'My Site Members'

Returns the permissions for the SharePoint group with the name 'My Site Members'