Forum Discussion
Chris_Clark1968
Oct 14, 2022Brass Contributor
Can a list of all SharePoint Online site owners be collated
Hi, Is it possible to obtain a list of all the owners for all the sites within our SharePoint Online application?? We need to contact them to look at the sites to confirm they have set the perm...
Joao Livio
Oct 14, 2022Iron Contributor
Well, you can use PowerShell by installing the SharePoint Online Management Shell
https://learn.microsoft.com/en-us/powershell/sharepoint/sharepoint-online/connect-sharepoint-online
foreach($site in $sites)
#Code abbreviation
$siteAdmins = Get-SPOUser -Site $siteURL -Limit All | select LoginName,IsSiteAdmin | ? { $_.ISSiteAdmin }
#Code abbreviation
foreach($siteAdmin in $siteAdmins)
#Code abbreviation
Write-Host $siteAdmin.LoginName