How to add all users across the company to a communications SharePoint site to a members group as member as it seems our permissions have been changed its not allowing users to access the SharePoint site?

Mytoast Admin 290 Reputation points
2024-10-03T15:24:13.4266667+00:00

How to add all users across the company to a communications SharePoint site to a members group as member as it seems our permissions have been changed its not allowing users to access the SharePoint site?

See below where I wanted to add users across the company which is SharePoint Group which does not show in groups section and also I don't see any option to add people to it.

User's image

Microsoft 365
Microsoft 365
Formerly Office 365, is a line of subscription services offered by Microsoft which adds to and includes the Microsoft Office product line.
5,087 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,804 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Emily Du-MSFT 47,296 Reputation points Microsoft Vendor
    2024-10-04T05:01:41.5533333+00:00

    Based on your post, I understand that you want to add all users of a tenant into a SharePoint group. Is it right?

    Here are steps:

    1.Enable "Everyone" group by using PowerShell.

    #SharePoint Online Admin Center URL
    $AdminURL = "https://tenant-admin.sharepoint.com/"
    #Connect to SharePoint Online
    Connect-SPOService -url $AdminURL
    #Disable Everyone group
    Set-SPOTenant -ShowEveryoneClaim $True
    

    2.Go to the site collection -> Site permissions -> Advanced permissions settings -> Click the sote members group -> New -> Add Users -> Enter Everyone group.

    1

    2

    enter image description here


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    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.


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.