This post will explain how to set default sharing of all SharePoint sites in the tenant to “Poeple with Existing Access”.

Introduction

From a security standpoint, it is important to protect access to information to ensure that only the right people in an organization has access to it.

Users can share files and folders in Microsoft SharePoint by sending a link. They should select a link type based on the people to whom they want to give permission. The following link types are available:

  • Anyone with the link (previously called “anonymous access” or “shareable”)
  • People in your organization with the link
  • People with existing access
  • Specific people

By default, default sharing is configured to “People in [Organization”], meaning that when sharing or making use of the “Copy link” option to share a document with someone, the link you provide may be accessed by the whole organization. To prevent this, we can change the default sharing to “Poeple with Existing Access”, meaning that when sharing or making use of the “Copy link” option to share a document with someone, the link you provide may be accessed by people that already have access to the document, making it a more secure way to share a document with someone.

The Code

The PowerShell script below allows you to change the default sharing to “People with Existing Access” for all sites in your tenant.

NOTE: For now,

Import-Module Microsoft.Online.SharePoint.PowerShell -DisableNameChecking
 
$AdminSiteUrl = "https://dev-admin.sharepoint.com"
 
#Connect to SharePoint Online
Connect-SPOService -Url $AdminSiteUrl
 
#Get All SharePoint Sites
$Sites = Get-SPOSite -Limit All

#Iterate each site and change the default sharing
ForEach ($Site in $Sites)
{
    $SiteUrl = $Site.URL
    Write-Host "Setting Sharing to DefaultLinkToExistingAccessin $SiteUrl" -ForegroundColor "Green"
    Set-SPOSite -identity $SiteUrl -DefaultLinkToExistingAccess 1
}

Sharing experience before running the script:

Sharing experience after running the script:

Related Articles

To learn why your business should migrate to SharePoint Online and Office 365, click here and here.

If you want to learn how to develop SPFx solutions, click here.

If you want to learn how you can rename a modern SharePoint site, click here.

If you want to learn how to save time time scheduling your meetings, click here.

If you want to learn how to enable Microsoft Teams Attendance List Download, click here.

If you want to learn how to create a dynamic org-wide team in Microsoft Teams with all active employees, click here.

If you want to modernize your SharePoint classic root site to a modern SharePoint site, click here.

If you are a SharePoint administrator or a SharePoint developer who wants to learn more about how to install a SharePoint 2019 farm in an automated way using PowerShell, I invite you to click here and here.

If you learn how to greatly speed up your SharePoint farm update process to ensure your SharePoint farm keeps updated and you stay one step closer to start your move to the cloud, click here.

If you prefer to use the traditional method to update your farm and want to learn all the steps and precautions necessary to successfully keep your SharePoint farm updated, click here.

If you want to learn how to upgrade a SharePoint 2013 farm to SharePoint 2019, click here and here.

If SharePoint 2019 is still not an option, you can learn more about how to install a SharePoint 2016 farm in an automated way using PowerShell, click here and here.

If you want to learn how to upgrade a SharePoint 2010 farm to SharePoint 2016, click here and here.

If you are new to SharePoint and Office 365 and want to learn all about it, take a look at these learning resources.

If you are work in a large organization who is using Office 365 or thinking to move to Office 365 and is considering between a single or multiple Office 365 tenants, I invite you to read this article.

If you want to know all about the latest SharePoint and Office 365 announcements from Ignite and some more recent announcements, including Microsoft Search, What’s New to Build a Modern Intranet with SharePoint in Office 365, Deeper Integration between Microsoft Teams and SharePoint and the latest news on SharePoint development, click here.

If your organization is still not ready to go all in to SharePoint Online and Office 365, a hybrid scenario may be the best choice. SharePoint 2019 RTM was recently announced and if you to learn all about SharePoint 2019 and all its features, click here.

Happy SharePointing!

LEAVE A REPLY

Please enter your comment!
Please enter your name here