In this SharePoint tutorial, we will discuss how to create a SharePoint permission group in SharePoint 2010 and how to rename a SharePoint 2013 group name using the browser and SharePoint PowerShell. This works for SharePoint 2010/2013 and SharePoint 2016.
SharePoint Tutorial Contents
On a site, a site owner wants to rename the “Approver” group name to “HR Approver” as it makes more sense to him.
To rename a SharePoint 2013/2010 user group follow below step:
- Click on Site Settings gear >> Site permissions >> double click Approvers group.
- Click on “Group Settings” from Settings Menu.
- Replace Approvers with the HR Approvers name for your SharePoint permission group.
- Click on OK to save your changes.
Pretty straightforward, isn’t it?
Renaming SharePoint groups can be achieved using PowerShell too. Here is my PowerShell script to rename a group in SharePoint 2013.
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
#Variables
$SiteURL = "Site url"
$GroupName = "Approvers "
$GroupNewName ="HR Approvers"
#Get site and Group objects
$Site = Get-SPSite $SiteURL
$Group = $Site.RootWeb.SiteGroups[$GroupName]
if($Group -ne $null)
{
#sharepoint rename permission group
$Group.name = $GroupNewName
#Update the group
$Group.Update()
Write-host "Group Name has been updated!"
}
#dispose site object
$site.Dispose()
Note:
The target audience cannot resolve the SharePoint group name when renamed.
For example,
There seems to be an issue whenever you try to set certain audiences for Navigation Links (/_layouts/areanavigationsettings.aspx) – The selected SharePoint Groups are automatically removed from audiences when renamed.
Now, let us see how to Create SharePoint permission group in SharePoint 2010.
SharePoint 2010 provides different permission groups by default like Members, Owners, Visitors, Viewers, etc. But all SharePoint Administrators can be able to add new SharePoint security groups to SharePoint 2010 site collection.
To create a new group. go to Site Actions -> Site Permissions as shown in the figure below.
In this page you can be able to see all the default groups also. And from the ribbon click on Create Group as shown in the figure below to create a group.
This will open the Create New SharePoint Group page. And in this page, Give a name for the group, Description for the group and also the Group owner and the membership of the group like who can view and edit the group as shown in the figure below.
And also in the Membership request section, you can do the settings and Give permission to the site is an important section since we are giving permission to the site. You can choose from the list of permissions like Full Control, Design, Contribute, Read, View only, etc. as shown in the figure below, then click on create and our new group will create.
You may like following SharePoint group tutorials:
- Get all users and groups in SharePoint 2013/2016 using PowerShell
- Create SharePoint site programmatically
- SharePoint content database tutorial
- SharePoint user custom actions
- Add user to SharePoint group programmatically
- SharePoint Online jsom examples
- How to delete a SharePoint site using PowerShell
This SharePoint tutorial, we learned how to create a SharePoint permission group using the browser and how to rename SharePoint group details using PowerShell and browser.
I am Developer working on Microsoft Technologies for the past 6+years. I am very much passionate about programming and my core skills are SharePoint, ASP.NET & C#,Jquery,Javascript,REST. I am running this blog to share my experience & learning with the community I am an MCP, MCTS .NET & Sharepoint 2010, MCPD Sharepoint 2010, and MCSD HTML 5,Sharepoint 2013 Core
Solutions. I am currently working on Sharepoint 2010, MOSS 2007, Sharepoint 2013,Sharepoint 2013 App Dev, C#, ASP.NET, and SQL Server 2008.