In a SharePoint Online site how to delete the Site Members Group that was created by default while creating the site?

frob 4,261 Reputation points
2021-08-10T19:52:51.337+00:00

Hi there

In a SharePoint Online site how to delete the Site Members Group that was created by default while creating the site?

In the Site Permissions > when I select that group > The Remove User Permissions button is disabled. (As per the screenshot below).

Thank you.

122019-image.png

Microsoft 365 and Office | SharePoint | For business | Windows
0 comments No comments
{count} votes

Accepted answer
  1. Emily Du-MSFT 51,841 Reputation points Microsoft External Staff
    2021-08-11T07:03:30.317+00:00

    @frob

    You could run below PowerShell as administrator to delete Members group.

    $AdminCenterURL = "https://tenant-admin.sharepoint.com/"  
    $SiteURL = "site collection URL"  
      
    Connect-SPOService -url $AdminCenterURL -Credential (Get-Credential)  
       
    Remove-SPOSiteGroup -Site "site collection URL" -Identity "group name"  
    

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.