We have SharePoint Server 2010.
I go to Site Actions > Ste Permissions
> Grant Permission.
In the dropdown to "add users to a sharepont group"
all of the groups in that site are not showing in the dropdown.
For example,
we have 16 groups and only 4 show in the dropdown.
This is not consistent
either. I can go to another site in another Site Collection that has the same
number of groups and 8 out of the 16 will show in the dropdown.
I can't find
and pattern to the number or types of groups that are displayed in the
dropdown.
Solution:
$web = Get-SPWeb "http://SP2010:8080/sites/TestSite/"
$web.Groups | %{ $web.AssociatedGroups.Add($_) }
$web.update()
$web.dispose()
Comments
Post a Comment