Find document libraries/document for which “Copy Link” is set to “People in Tenant with Link”

sharepoint.stackexchange https://sharepoint.stackexchange.com/questions/277154

سؤال

In SP Online, how to find all the document libraries/documents in the tenant for which "Copy Link" is set to "People in Tenant with Link"?

لا يوجد حل صحيح

نصائح أخرى

You could try below PowerShell script:

$tenant=get-spotenant
If($tenant.DefaultSharingLinkType -eq "Internal"){Get-SPOsite | where {$_.DefaultSharingLinkType -eq "None" -Or $_.DefaultSharingLinkType -eq "Internal"}}else {Get-SPOsite | where {$_.DefaultSharingLinkType -eq "Internal"}}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى sharepoint.stackexchange
scroll top