Domanda

I updated the "Default Link Type" to "Direct"(Specific People) both at Tenant level and site level.

At Tenant level, I updated using the URL: https://Tenant-admin.sharepoint.com/_layouts/15/online/ExternalSharing.aspx

At site level, I updated using the PS Script : Set-SPOsite -Identity SiteURL -DefaultSharingLinkType Direct

But still when I go to a document library in that site --> select any document --> clicked on "copy Link" ,it shows "People with existing access" as the default value instead of "Specific People"

How to fix this?

enter image description here

È stato utile?

Soluzione

If DefaultLinkToExistingAccess is set to TRUE, the DefaultSharingLinkType will be overriden and the default sharing link will be a People with Existing Access.

Execute the following:

Set-sposite -Identity SiteURL -DefaultLinkToExistingAccess $false
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top