How to change the default sharing settings of a SharePoint site?
+
The default sharing setting based on site types may not suit your organizationâs purpose. Some confidential sites may require more restricted access, while common sites may require more permissive access.
Follow the steps below to change the sharing settings for individual sites in SharePoint Online.
- Login to the SharePoint Online admin center.
- Navigate to Sites»Active Sites. Select the desired SharePoint site and hit on the Settings tab.
- Click on the "More sharing settings" link. You can choose an external sharing level, change the default sharing link type, and the default sharing link permission.
- Once done, click on Save.
Note: Here, you may notice that some of the sharing settings are greyed out. This is because you might have restricted those settings in your organization-wide sharing settings.
You can also use Microsoft 365 sensitivity labels to control the default sharing link settings for sites and documents. The more restrictive setting between these two will be the default sharing link for the documents.
Run the below PowerShell cmdlet to configure the default sharing link type of sensitivity labels.
Connect-IPPSSession -UserPrincipalName <UPN>
Set-Label -Identity "<LabelName>"-AdvancedSettings @{DefaultShareLinkPermission = "View" DefaultSharingScope = "SpecificPeople"}
Note: Make sure to replace <UPN> and <LabelName> with the appropriate values before executing the cmdlets.
Now, the documents or sites with this label will have the default sharing link as "People you choose" and sharing permission as "View". If required, you can also customize the DefaultShareLinkPermission and DefaultSharingScope parameters with other values as mentioned below.
- DefaultShareLinkPermission -Edit
- DefaultSharingScope -Organization, Anyone