Default new SharePoint online permissions / change default Sharepoint online for new sites

Nerdioman 0 Reputation points
2025-08-07T17:05:29.63+00:00

Hi

Guidance is needed regarding configuring and clarifying permission architecture in SharePoint Online when establishing new SharePoint sites.

I found out that we have around approximately 50 recently created SharePoint sites, each with the "UsersAndGroups(SharePoint)" SharePoint Group set to "Everyone except external users." Following this observation, research was initiated into how to adjust the default permissions for new SharePoint sites created via Teams or SharePoint Online.

The main question is: Where can the default setting of "Everyone except external users" be changed to prevent its automatic assignment? It appears that breaking inheritance may be necessary in sharepoint online.

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

2 answers

Sort by: Most helpful
  1. Killian-N 1,365 Reputation points Microsoft External Staff Moderator
    2025-08-07T17:56:02.73+00:00

    Hi @Nerdioman,Thank you for posting your question on Microsoft Q&A Community.

    Regarding to your question, by default, new SharePoint Online sites (especially those created via Microsoft Teams or as Communication sites) often include the “Everyone except external users” group in the Members group. This grants edit permissions to all internal users in the tenant, which may not be desirable for all scenarios.

    You can disable the default inclusion of the “Everyone except external users” group across your tenant using PowerShell:

    Connect-SPOService -Url https://<YourTenant>-admin.sharepoint.com

    Set-SPOTenant -ShowEveryoneExceptExternalUsersClaim $False

    This command hides the group from SharePoint Online interfaces and prevents it from being automatically added to new sites. It does not remove the group from existing sites or affect current permissions already granted.

    Hope my information helps.

    If any part of the information I’ve provided doesn’t align with your expectations or doesn’t fully address your needs, please don’t hesitate to reach out again. I’ll be happy to assist further.

    Looking forward to hearing from you.


    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.


  2. Killian-N 1,365 Reputation points Microsoft External Staff Moderator
    2025-08-11T16:59:07.7033333+00:00

    Hi @Nerdioman,

    Thank you for your response.

    Regarding to your extra questions:

    Question 1: Drawbacks of disabling “Everyone except external users”

    Disabling the default inclusion of the “Everyone except external users” group using either Set-SPOTenant or Set-PnPTenant is generally safe and aligns with tighter permission governance. However, here are a few considerations:

    • Existing Sites Unaffected: This change only applies to newly created sites. Existing sites will retain the group unless manually removed.
    • User Expectations: Some users may expect broad access by default. Removing this group could lead to access issues if not communicated properly.
    • Automation Impact: If you have scripts or provisioning processes that rely on this group being present, they may need to be updated.

    Question 2: Hiding the group in the People Picker

    Using:

    Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false

    will hide the group from the People Picker, which can help prevent accidental assignment of broad permissions. This is a good practice if your organization prefers explicit access control and wants to avoid unintended exposure.

    That said, if your team occasionally uses this group for broad internal collaboration, hiding it might reduce convenience. It’s a balance between security and usability.

    Let me know if you need any further concern. I'm happy to help.


    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.

    0 comments No comments

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.