Powershell through all your sites
This script specifically gets site collection admins, but it can be modified to get other data you might be interested in…
$rootSite = New-Object Microsoft.SharePoint.SPSite($siteUrl)... [read more]
$spWebApp = $rootSite.WebApplication
foreach($site in $spWebApp.Sites)
{
foreach($siteAdmin in
Submit a review:
Login required.