Powershell through all your sites

Posted by emmettlynch on November 3, 2011

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)
$spWebApp = $rootSite.WebApplication
foreach($site in $spWebApp.Sites)
{
foreach($siteAdmin in
... [read more]

Rating

not rated

Reviews

There are currently no comments or reviews.

Submit a review:

Login required.