Tag: AD Groups
-
+
+
+
+
+
+
Need to deliver or better understand the AD groups associated with your SharePoint site collection? Try this: [sourcecode] $SPWebApp = Get-SPWebApplication http://sitecollectionURLhere/ foreach ($SPSite in $SPWebApp.Sites) { write-host -foregroundcolor green "Working on Site Collection: " + $SPsite.RootWeb.Title $SiteURL = $SPsite.RootWeb.URL $ADgroup=Get-SPUser -Web $SiteURL -Limit ALL | Where { $_.IsDomainGroup }…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+