question

KonstantinosMarantos-7733 avatar image
0 Votes"
KonstantinosMarantos-7733 asked KonstantinosMarantos-7733 published

Access Management on sharepoint Online

Hi all,
I have a problem with a SharePoint site. The site is created as teams site and i chose the project management template. The rights that the owners have are correct. All the other users should be members that can only edit-create things in document library and in SharePoint list. The members they should not be able to edit the entire page (i found the solution by giving to members read rights on the home.aspx). The members should also not be able to edit the navigation bar on the left side of the pare. I want the edit button on the left navigation bat not be accessible or visible to the members. Could anyone be willing to help me?

Thank you in advance.

office-sharepoint-onlineoffice-sharepoint-server-customization
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

EchoDu-MSFT avatar image
0 Votes"
EchoDu-MSFT answered KonstantinosMarantos-7733 published

Hello @KonstantinosMarantos-7733 ,

Welcome to Q&A Forum!

Please following steps:

1.Navigation to Site Permissions page (user.aspx) as an admin

2.On the Site Permissions page (user.aspx), click on Permission Levels

132809-b1.png

3.On the Permiision Levels page, click on Edit

132810-b2.png

4.On the Edit Permission Level page, scroll to the bottom of the page and click on "Copy Permission Level" button

132933-b3.png

5.On the Copy Permission Level page, create new Permission Level. Please uncheck "Manage Lists", "Manage Personal Views", "Add/Remove Personal Web Parts" and "Update Personal Web Parts" options.

132848-b4.png

5.Go back to Site Permissions page (user.aspx), select "Site Members" group and click on "Edit User Permissions"

132877-b5.png

6.Grant the "Site Members" group EditTest permission and uncheck Edit permission

132879-b6.png

132951-b7.png

132880-b8.png

Thanks,
Echo Du

===================== Updated Answer ====================

Please run the below PnP Powershell code as an admin to change group permission

 #Variables for Admin Center & Site Collection URL
 $AdminCenterURL = "https://crescenttech-admin.sharepoint.com/"
 $SiteURL = "https://crescenttech.sharepoint.com/sites/marketing"
     
 #Connect to SharePoint Online
 #User Account is Global administrator and SharePoint Site administrator
 Connect-SPOService -url $AdminCenterURL -Credential (Get-Credential)
     
 #sharepoint online change group permissions
 #"EditTest" is my custom permission level
 Set-SPOSiteGroup -Site $SiteURL -Identity "SiteName Members" -PermissionLevelsToRemove "Edit" -PermissionLevelsToAdd "EditTest"

133080-j1.png

133064-j2.png

132977-j3.png

Thanks,
Echo Du
======================
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



b1.png (50.8 KiB)
b2.png (23.5 KiB)
b3.png (129.8 KiB)
b4.png (129.6 KiB)
b5.png (83.3 KiB)
b6.png (35.4 KiB)
b7.png (106.1 KiB)
b8.png (90.2 KiB)
j1.png (53.8 KiB)
j2.png (120.9 KiB)
j3.png (79.3 KiB)
· 2
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

The edit permission on site contents is not accessible (i am global and sharepoint admin). I created the new edit access but i cant give it to the group.

0 Votes 0 ·

Hi @KonstantinosMarantos-7733 ,

You mean you have created a custom permission level, but you cannot grant that permission to the Members group, right?

Thanks,
Echo Du

0 Votes 0 ·
KonstantinosMarantos-7733 avatar image
0 Votes"
KonstantinosMarantos-7733 answered EchoDu-MSFT commented

yeah exactly

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi @KonstantinosMarantos-7733 ,

Thanks for your reply.

I have updated answer under initial My Answer. Hope this can help you to solve issue.

Have a nice day!

Thanks,
Echo Du
============================
You can directly click “Comment” option under “My Answered” to put forward your opinions and thoughts about solution that I propose.

0 Votes 0 ·