
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.