exporting membership info

crib bar 841 Reputation points
2023-06-28T12:19:19.49+00:00

I have a few questions regarding SharePoint online site permissions:

  1. Is there anyway from with in the SharePoint online admin centre, to export the "membership" information/config out to a file, such as owners, members, site admins, site owners, site members, site visitors etc. This export could be for an individual site, or a master 'membership' report for ALL sites in a SharePoint online instance.
  2. Also by default, are the permissions set in the sites membership tab, inherited by the sites 'document library', or can permissions on the sites document library be totally different to permissions set in the sites membership tab within the SharePoint online admin centre?
  3. If someone has been assigned the SharePoint admin role, but does not have explicit access to a specific site, can they still accurately document the membership permissions for the site, or should they first grant themselves access to the site and THEN check the membership permissions?
Microsoft 365
Microsoft 365
Formerly Office 365, is a line of subscription services offered by Microsoft which adds to and includes the Microsoft Office product line.
5,505 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,069 questions
{count} votes

Accepted answer
  1. Emily Du-MSFT 48,926 Reputation points Microsoft Vendor
    2023-06-29T08:25:34.4233333+00:00

    1.You could run following PowerShell to get permissions reports for all site collections.

    Note: The account to be used in the PowerShell should be the administrator of all site collections.

    Function Get-PnPPermissions([Microsoft.SharePoint.Client.SecurableObject]$Object)
    {
        #Determine the type of the object
        Switch($Object.TypedObject.ToString())
        {
            "Microsoft.SharePoint.Client.Web"  { $ObjectType = "Site" ; $ObjectURL = $Object.URL; $ObjectTitle = $Object.Title }
            "Microsoft.SharePoint.Client.ListItem"
            {
                $ObjectType = "Folder"
                #Get the URL of the Folder
                $Folder = Get-PnPProperty -ClientObject $Object -Property Folder
                $ObjectTitle = $Object.Folder.Name
                $ObjectURL = $("{0}{1}" -f $Web.Url.Replace($Web.ServerRelativeUrl,''),$Object.Folder.ServerRelativeUrl)
            }
            Default
            {
                $ObjectType = $Object.BaseType #List, DocumentLibrary, etc
                $ObjectTitle = $Object.Title
                #Get the URL of the List or Library
                $RootFolder = Get-PnPProperty -ClientObject $Object -Property RootFolder    
                $ObjectURL = $("{0}{1}" -f $Web.Url.Replace($Web.ServerRelativeUrl,''), $RootFolder.ServerRelativeUrl)
            }
        }
        
        #Get permissions assigned to the object
        Get-PnPProperty -ClientObject $Object -Property HasUniqueRoleAssignments, RoleAssignments
      
        #Check if Object has unique permissions
        $HasUniquePermissions = $Object.HasUniqueRoleAssignments
          
        #Loop through each permission assigned and extract details
        $PermissionCollection = @()
        Foreach($RoleAssignment in $Object.RoleAssignments)
        {
            #Get the Permission Levels assigned and Member
            Get-PnPProperty -ClientObject $RoleAssignment -Property RoleDefinitionBindings, Member
      
            #Get the Principal Type: User, SP Group, AD Group
            $PermissionType = $RoleAssignment.Member.PrincipalType
         
            #Get the Permission Levels assigned
            $PermissionLevels = $RoleAssignment.RoleDefinitionBindings | Select -ExpandProperty Name
      
            #Remove Limited Access
            $PermissionLevels = ($PermissionLevels | Where { $_ -ne "Limited Access"}) -join "; "
      
            #Leave Principals with no Permissions assigned
            If($PermissionLevels.Length -eq 0) {Continue}
      
            #Check if the Principal is SharePoint group
            If($PermissionType -eq "SharePointGroup")
            {
                #Get Group Members
                $GroupMembers = Get-PnPGroupMember -Identity $RoleAssignment.Member.LoginName
                      
                #Leave Empty Groups
                If($GroupMembers.count -eq 0){Continue}
                $GroupUsers = ($GroupMembers | Select -ExpandProperty Title | Where { $_ -ne "System Account"}) -join "; "
                If($GroupUsers.Length -eq 0) {Continue}
     
                #Add the Data to Object
                $Permissions = New-Object PSObject
                $Permissions | Add-Member NoteProperty Object($ObjectType)
                $Permissions | Add-Member NoteProperty Title($ObjectTitle)
                $Permissions | Add-Member NoteProperty URL($ObjectURL)
                $Permissions | Add-Member NoteProperty HasUniquePermissions($HasUniquePermissions)
                $Permissions | Add-Member NoteProperty Users($GroupUsers)
                $Permissions | Add-Member NoteProperty Type($PermissionType)
                $Permissions | Add-Member NoteProperty Permissions($PermissionLevels)
                $Permissions | Add-Member NoteProperty GrantedThrough("SharePoint Group: $($RoleAssignment.Member.LoginName)")
                $PermissionCollection += $Permissions
            }
            Else #User
            {
                #Add the Data to Object
                $Permissions = New-Object PSObject
                $Permissions | Add-Member NoteProperty Object($ObjectType)
                $Permissions | Add-Member NoteProperty Title($ObjectTitle)
                $Permissions | Add-Member NoteProperty URL($ObjectURL)
                $Permissions | Add-Member NoteProperty HasUniquePermissions($HasUniquePermissions)
                $Permissions | Add-Member NoteProperty Users($RoleAssignment.Member.Title)
                $Permissions | Add-Member NoteProperty Type($PermissionType)
                $Permissions | Add-Member NoteProperty Permissions($PermissionLevels)
                $Permissions | Add-Member NoteProperty GrantedThrough("Direct Permissions")
                $PermissionCollection += $Permissions
            }
        }
        #Export Permissions to CSV File
        $PermissionCollection | Export-CSV $ReportFile -NoTypeInformation -Append
    }
        
    #Function to get sharepoint online site permissions report
    Function Generate-PnPSitePermissionRpt()
    {
    [cmdletbinding()]
     
        Param 
        (   
            [Parameter(Mandatory=$false)] [String] $SiteURL,
            [Parameter(Mandatory=$false)] [String] $ReportFile,        
            [Parameter(Mandatory=$false)] [switch] $Recursive,
            [Parameter(Mandatory=$false)] [switch] $ScanFolders,
            [Parameter(Mandatory=$false)] [switch] $IncludeInheritedPermissions
        ) 
        Try {
            #Connect to the Site
            Connect-PnPOnline -URL $SiteURL -Interactive
            #Get the Web
            $Web = Get-PnPWeb
      
            Write-host -f Yellow "Getting Site Collection Administrators..."
            #Get Site Collection Administrators
            $SiteAdmins = Get-PnPSiteCollectionAdmin
              
            $SiteCollectionAdmins = ($SiteAdmins | Select -ExpandProperty Title) -join "; "
            #Add the Data to Object
            $Permissions = New-Object PSObject
            $Permissions | Add-Member NoteProperty Object("Site Collection")
            $Permissions | Add-Member NoteProperty Title($Web.Title)
            $Permissions | Add-Member NoteProperty URL($Web.URL)
            $Permissions | Add-Member NoteProperty HasUniquePermissions("TRUE")
            $Permissions | Add-Member NoteProperty Users($SiteCollectionAdmins)
            $Permissions | Add-Member NoteProperty Type("Site Collection Administrators")
            $Permissions | Add-Member NoteProperty Permissions("Site Owner")
            $Permissions | Add-Member NoteProperty GrantedThrough("Direct Permissions")
                    
            #Export Permissions to CSV File
            $Permissions | Export-CSV $ReportFile -NoTypeInformation
        
            #Function to Get Permissions of Folders in a given List
            Function Get-PnPFolderPermission([Microsoft.SharePoint.Client.List]$List)
            {
                Write-host -f Yellow "`t `t Getting Permissions of Folders in the List:"$List.Title
                 
                #Get All Folders from List
                $ListItems = Get-PnPListItem -List $List -PageSize 2000
                $Folders = $ListItems | Where { ($_.FileSystemObjectType -eq "Folder") -and ($_.FieldValues.FileLeafRef -ne "Forms") -and (-Not($_.FieldValues.FileLeafRef.StartsWith("_")))}
     
                $ItemCounter = 0
                #Loop through each Folder
                ForEach($Folder in $Folders)
                {
                    #Get Objects with Unique Permissions or Inherited Permissions based on 'IncludeInheritedPermissions' switch
                    If($IncludeInheritedPermissions)
                    {
                        Get-PnPPermissions -Object $Folder
                    }
                    Else
                    {
                        #Check if Folder has unique permissions
                        $HasUniquePermissions = Get-PnPProperty -ClientObject $Folder -Property HasUniqueRoleAssignments
                        If($HasUniquePermissions -eq $True)
                        {
                            #Call the function to generate Permission report
                            Get-PnPPermissions -Object $Folder
                        }
                    }
                    $ItemCounter++
                    Write-Progress -PercentComplete ($ItemCounter / ($Folders.Count) * 100) -Activity "Getting Permissions of Folders in List '$($List.Title)'" -Status "Processing Folder '$($Folder.FieldValues.FileLeafRef)' at '$($Folder.FieldValues.FileRef)' ($ItemCounter of $($Folders.Count))" -Id 2 -ParentId 1
                }
            }
      
            #Function to Get Permissions of all lists from the given web
            Function Get-PnPListPermission([Microsoft.SharePoint.Client.Web]$Web)
            {
                #Get All Lists from the web
                $Lists = Get-PnPProperty -ClientObject $Web -Property Lists
        
                #Exclude system lists
                $ExcludedLists = @("Access Requests","App Packages","appdata","appfiles","Apps in Testing","Cache Profiles","Composed Looks","Content and Structure Reports","Content type publishing error log","Converted Forms",
                "Device Channels","Form Templates","fpdatasources","Get started with Apps for Office and SharePoint","List Template Gallery", "Long Running Operation Status","Maintenance Log Library", "Images", "site collection images"
                ,"Master Docs","Master Page Gallery","MicroFeed","NintexFormXml","Quick Deploy Items","Relationships List","Reusable Content","Reporting Metadata", "Reporting Templates", "Search Config List","Site Assets","Preservation Hold Library",
                "Site Pages", "Solution Gallery","Style Library","Suggested Content Browser Locations","Theme Gallery", "TaxonomyHiddenList","User Information List","Web Part Gallery","wfpub","wfsvc","Workflow History","Workflow Tasks", "Pages")
                  
                $Counter = 0
                #Get all lists from the web  
                ForEach($List in $Lists)
                {
                    #Exclude System Lists
                    If($List.Hidden -eq $False -and $ExcludedLists -notcontains $List.Title)
                    {
                        $Counter++
                        Write-Progress -PercentComplete ($Counter / ($Lists.Count) * 100) -Activity "Exporting Permissions from List '$($List.Title)' in $($Web.URL)" -Status "Processing Lists $Counter of $($Lists.Count)" -Id 1
      
                        #Get Item Level Permissions if 'ScanFolders' switch present
                        If($ScanFolders)
                        {
                            #Get Folder Permissions
                            Get-PnPFolderPermission -List $List
                        }
      
                        #Get Lists with Unique Permissions or Inherited Permissions based on 'IncludeInheritedPermissions' switch
                        If($IncludeInheritedPermissions)
                        {
                            Get-PnPPermissions -Object $List
                        }
                        Else
                        {
                            #Check if List has unique permissions
                            $HasUniquePermissions = Get-PnPProperty -ClientObject $List -Property HasUniqueRoleAssignments
                            If($HasUniquePermissions -eq $True)
                            {
                                #Call the function to check permissions
                                Get-PnPPermissions -Object $List
                            }
                        }
                    }
                }
            }
        
            #Function to Get Webs's Permissions from given URL
            Function Get-PnPWebPermission([Microsoft.SharePoint.Client.Web]$Web)
            {
                #Call the function to Get permissions of the web
                Write-host -f Yellow "Getting Permissions of the Web: $($Web.URL)..."
                Get-PnPPermissions -Object $Web
        
                #Get List Permissions
                Write-host -f Yellow "`t Getting Permissions of Lists and Libraries..."
                Get-PnPListPermission($Web)
      
                #Recursively get permissions from all sub-webs based on the "Recursive" Switch
                If($Recursive)
                {
                    #Get Subwebs of the Web
                    $Subwebs = Get-PnPProperty -ClientObject $Web -Property Webs
      
                    #Iterate through each subsite in the current web
                    Foreach ($Subweb in $web.Webs)
                    {
                        #Get Webs with Unique Permissions or Inherited Permissions based on 'IncludeInheritedPermissions' switch
                        If($IncludeInheritedPermissions)
                        {
                            Get-PnPWebPermission($Subweb)
                        }
                        Else
                        {
                            #Check if the Web has unique permissions
                            $HasUniquePermissions = Get-PnPProperty -ClientObject $SubWeb -Property HasUniqueRoleAssignments
        
                            #Get the Web's Permissions
                            If($HasUniquePermissions -eq $true)
                            {
                                #Call the function recursively                           
                                Get-PnPWebPermission($Subweb)
                            }
                        }
                    }
                }
            }
      
            #Call the function with RootWeb to get site collection permissions
            Get-PnPWebPermission $Web
        
            Write-host -f Green "`n*** Site Permission Report Generated Successfully!***"
         }
        Catch {
            write-host -f Red "Error Generating Site Permission Report!" $_.Exception.Message
       }
    }
    
    #Connect to Admin Center
    $TenantAdminURL = "https://tenant-admin.SharePoint.com"
    $Cred = Get-Credential
    Connect-PnPOnline -Url $TenantAdminURL -Credentials $Cred
       
    #Get All Site collections - Exclude: Seach Center, Redirect site, Mysite Host, App Catalog, Content Type Hub, eDiscovery and Bot Sites
    $SitesCollections = Get-PnPTenantSite | Where -Property Template -NotIn ("SRCHCEN#0","REDIRECTSITE#0", "SPSMSITEHOST#0", "APPCATALOG#0", "POINTPUBLISHINGHUB#0", "EDISC#0", "STS#-1")
       
    #Loop through each site collection
    ForEach($Site in $SitesCollections)
    {
        #Connect to site collection
        $SiteConn = Connect-PnPOnline -Url $Site.Url -Credentials $Cred
        Write-host "Generating Report for Site:"$Site.Url
     
        #Call the Function for site collection
        $ReportFile = "C:\Report\$($Site.URL.Replace('https://','').Replace('/','_')).CSV"
        Generate-PnPSitePermissionRpt -SiteURL $Site.URL -ReportFile $ReportFile -Recursive
    }
    

    2.You could set unique permission for the document libray. Go to Library settings -> Permissions for this document library -> Stop inheriting permissions -> Grant permissions or Remove user permissions.

    3.Even if the user has SharePoint admin role, he needs to be the administrator of all site collections to check site collection permissions reports.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.