Domanda

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"?

Nessuna soluzione corretta

Altri suggerimenti

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"}}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top