Create/Rename SharePoint group using PowerShell and Browser
Check out Best Alternative to InfoPath -> Try Now
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 2016 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
- Get all SharePoint groups using JavaScript Object Model (jsom)
- Add and remove a user from SharePoint group using JavaScript
- Add users to SharePoint group programmatically
- Check if user belongs to SharePoint group using CSOM
- Get all users from SharePoint group programmatically using csom
- Check if a user belongs to a SharePoint group using JavaScript
- Add Bulk Users to SharePoint Group from Excel using Rest API
- SharePoint Rest API: Remove User by login name or User ID from SharePoint Group
- SharePoint Rest API: Create or Update SharePoint Groups Details
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.

SharePoint Online FREE Training
JOIN a FREE SharePoint Video Course (3 Part Video Series)

