Pergunta

We have a security policy that says we must change the default permission levels when creating a new site. Full control for the Owners group is changed to a custom permission level while the Members group changes from 'Edit' to 'Contribute'. When you create a Team site with an O365 Group, the 'Edit User Permissions' button is disabled

enter image description here

How do we change the permission level of a Team site with a Group?

Foi útil?

Solução

We cannot change this through UI interface. However, we can use powrshell to change group permission level. Below is my demo:

connect-sposervice https://tenant-admin.sharepoint.com
Set-SPOSiteGroup -Site https://tenant.sharepoint.com/sites/michael -identity "MichaelGroup Members" -PermissionLevelsToRemove "Edit" -PermissionLevelsToAdd "Contribute"

Please refer to this about Set-SPOSiteGroup cmdlet: https://docs.microsoft.com/en-us/powershell/module/sharepoint-online/set-spositegroup?view=sharepoint-ps

Outras dicas

This is how Group connected sites function, I would recommend creating your sites as non group connected so you can customize the permission in the manner that you need to. You can still use O365 groups for permissions without the site being group connected.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top