Follow Us:
If you’ve been dabbling in SharePoint 2010's new hosting (multi-tenant) environment and been creating host-named site collections, you have may noticed that the default SharePoint security groups typically created by default are not there in the root web. These include:
<Site Name> Members
<Site Name> Owners
<Site Name> Visitors
These are created by the SharePoint API, and apparently isn’t called properly when host-named site collections are created through PowerShell in a multi-tenant environment. This ONLY happens in a multi-tenant environment. Even if you create the host-named site collections through PowerShell in a non-hosted environment, the first time you visit the site, you might be prompted to choose the site template and to create the default security groups.
So how do we get them back without creating them manually? Use this PowerShell script. I didn’t write it, but received it after working with Microsoft.
$url = "http://intranet.contoso.com" $web = Get-SPWeb -Identity $url $web.CreateDefaultAssociatedGroups("","","") $web.update() $web.dispose()
** Make sure to replace the listed URL within the quotes with the URL of the site you want.
If you’re not using PowerShell ISE, you should be!!
The complementary paper includes over 12 years of research, recent survey results, and CRM turnaround success stories.
Request Download
This 60-second assessment is designed to evaluate your organization's collaboration readiness.
Learn how you rank compared to organizations typically in years 1 to 5 of implementation - and which areas to focus on to improve.
This is a sandbox solution which can be activated per site collection to allow you to easily collect feedback from users into a custom Feedback list.
Whether you are upgrading to SharePoint Online, 2010, 2013 or the latest 2016, this checklist contains everything you need to know for a successful transition.