Forum Discussion
Bilal Fazli
Oct 03, 2018Copper Contributor
Disable "Allow Editing" option in sharing for users with read-only access in document library
Hi Community, We have faced an issue where users with View Only permissions can share documents with Edit rights other users. We have blocked the "Can Edit" options for read only users from the f...
Tosin Fadahunsi
Nov 02, 2018Copper Contributor
hey Bilal, Try this out.. It worked for me..
#Connect to sharepoint
connect-sposervice -url https://domain-admin.sharepoint.com
#Check if allowediting option is set to false
get-sposite -identity https://domain.sharepoint.com/<path> | fl
#set it to $true
Set-sposite -identity https://domain.sharepoint.com/<path> -allowediting $true
works for OneDrive as well