Um in Sharepoint Online den Download für sensible Daten zu verhindern, wird
Sharepoint Online Premium benötigt. „Advanced Management“.
In der Powershell würde es so aussehen:
#Microsoft SharePoint Premium – SharePoint Advanced Management notwendig siehe SPO-AdminCenter
#erweiterte Verwaltung
#Aktivierung für Sitecollection
Set-SPOSite -Identity <SiteURL> -BlockDownloadPolicy $true
#für OneDrive
#https://Firma-my.sharepoint.com/personal/username
#Auschlüsse
-ExcludeBlockDownloadPolicySiteOwners $true
-ExcludedBlockDownloadGroupIds <Gruppen ID>
#Mit einer Vertrauensrichtlinie verbinden
Set-Label -Identity 'Internal' -AdvancedSettings @{BlockDownloadPolicy="true" | “false” }
Set-Label -Identity 'Internal' -AdvancedSettings @{ExcludedBlockDownloadGroupIds="<Liste der M365-Gruppen>"}