Groups DropDown in Grant Permissions Not Showing All Groups
Solution:
$web = Get-SPWeb "http://SP2010:8080/sites/TestSite/"
$web.Groups | %{ $web.AssociatedGroups.Add($_) }
$web.update()
$web.dispose()
$web = Get-SPWeb "http://SP2010:8080/sites/TestSite/"
$web.Groups | %{ $web.AssociatedGroups.Add($_) }
$web.update()
$web.dispose()
Comments
Post a Comment