SharePoint Online: Get All Users in Site Collection using PowerShell
Requirement: SharePoint Online PowerShell to Get All Users in Site Collection.
SharePoint Online: PowerShell Get All Users from a Site Collection
As an admin of your SharePoint Online site, you may be required to get a list of all users who have access to the site. In this blog post, we will take a look at how to get all users in a SharePoint Online site collection using PowerShell. This can be handy if you need to get a list of all users for automation purposes. Suppose you need to generate a report to audit user permissions or get an overview of who is currently using the site collection. Let’s get started!
How to Get All Users from a SharePoint Online site?
The easiest way to get a list of all the users in a SharePoint Online site collection is through the Site Settings with this trick:
- Navigate to the top-level SharePoint site collection. (E.g., https://YourDomain.SharePoint.com/sites/Retail)
- Append “/_layouts/15/people.aspx?MembershipGroupId=0” to the URL to get the “All People” page. E.g., https://crescent.sharepoint.com/sites/Retail/_layouts/15/people.aspx?MembershipGroupId=0.
SharePoint will return all users who have been explicitly provided access to the site and any users who have inherited access from a group.
While my other post addresses How to Get All Users and Groups in SharePoint Online?, this post aims to get all users of the SharePoint site collection. Here is the SharePoint Online CSOM to get all users:
#Load SharePoint CSOM Assemblies
Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"
Add-Type -Path "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"
#Site collection URL
$SiteURL="https://crescent.sharepoint.com"
#Setup Credentials to connect
$Cred = Get-Credential
$Cred = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Cred.UserName,$Cred.Password)
#Initialize the context
$Ctx = New-Object Microsoft.SharePoint.Client.ClientContext($SiteURL)
$Ctx.Credentials = $Credentials
#Get all users of the site collection
$Users = $ctx.Web.SiteUsers
$ctx.Load($Users)
$ctx.ExecuteQuery()
#Get User name and Email
$Users | ForEach-Object { Write-Host "$($_.Title) - $($_.Email)"}
PowerShell to Get All Users from All Site Collections in SharePoint Online
To get all users from the site collection using PowerShell, you will need to connect to your SharePoint Online site from PowerShell first. Once you are connected, you can run the Get-SPOUser cmdlet to return all users who have access to the site. Here is the SharePoint Online Management Shell way to get all users from all site collections in the tenant using the Get-SPOUser cmdlet:
Import-Module Microsoft.Online.Sharepoint.PowerShell -DisableNameChecking
$AdminSiteURL="https://crescent-admin.sharepoint.com"
#Connect to SharePoint Online Admin
Write-host "Connecting to Admin Center..." -f Yellow
Connect-SPOService -url $AdminSiteURL -Credential (Get-Credential)
Write-host "Getting All Site collections..." -f Yellow
#Get each site collection and users
$Sites = Get-SPOSite -Limit ALL
Foreach($Site in $Sites)
{
Write-host "Getting Users from Site collection:"$Site.Url -f Yellow
Get-SPOUser -Limit ALL -Site $Site.Url | Select DisplayName, LoginName
}
This PowerShell script gets all users in SharePoint Online.
PnP PowerShell to Get All Users in SharePoint Online Site Collection
This script will gather all the users on the specified site and return them in an easy-to-read format.
#Config Variables
$SiteURL = "https://crescent.sharepoint.com/sites/marketing"
#Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Interactive
#Get All users of the site collection
Get-PnPUser
This script gets you all users from the current site collection, regardless of whether they have access rights to the current site. You can add -WithRightsAssigned switch to get all users who have access to the site.
#Set Variables
$SiteURL = "https://crescent.sharepoint.com/sites/marketing/2017"
#Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Interactive
$Web = Get-PnPWeb
#Get All users who have permission to the subsite
Get-PnPUser -WithRightsAssigned -Web $Web
$Users = Get-PnPUser | Where { $_.IsHiddenInUI -eq $false -and $_.PrincipalType -eq “User” -and (-not[string]::IsNullOrEmpty($_.Email))}
SharePoint Online: Export All Users in a Site Collection to CSV using PnP PowerShell
Let’s use the Get-PnPUser cmdlet to compile all users in the site collection and then export it to CSV for further analysis.
#Config Variables
$SiteURL = "https://crescent.sharepoint.com/"
$CSVFile = "C:\Temp\UserData.csv"
#Connect to PnP Online
Connect-PnPOnline -Url $SiteURL -Credentials (Get-credential) #-Interactive
#Get All users of the site collection
$Users = Get-PnPUser
[email protected]()
#Loop through Users and get properties
ForEach ($User in $Users)
{
$UserData += New-Object PSObject -Property @{
"User Name" = $User.Title
"Login ID" = $User.LoginName
"E-mail" = $User.Email
"User Type" = $User.PrincipalType
}
}
$UserData
#Export Users data to CSV file
$UserData | Export-Csv -NoTypeInformation $CSVFile
This script connects to your SharePoint Online site collection with PowerShell, gets the user list from the site collection, and then exports the user list as CSV! And the script output: