문제

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