Frage

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

Keine korrekte Lösung

Andere Tipps

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"}}
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top