78,298 total views, 7 views today
Edit user Permissions greyed out SharePoint Online – sometimes, we may notice that edit user permission is greyed out in the SharePoint Online document library, list, or site permission page – even though you are in the “Site Owners” group. This behavior is noticed both in SharePoint online and on-premise.

How to fix the edit user permissions greyed out the issue in SharePoint online (user permissions)?
To fix the edit user permission greyed out the issue in SharePoint online, we need to follow a couple of troubleshooting techniques step by step.
To troubleshoot this make sure – that particular user has at least READ access to the Master Page Gallery library – you will find this from the site settings page -> Web Designer Galleries section (to get this option listed, you need to activate the SharePoint Server Publishing Infrusture feature).
Then if you still see the greyed out, as an alternative to a quick fix, directly you can access the edit user permission page by the below URL:
https://globalsharepoint2020.sharepoint.com/sites/CustomSearchRND/_layouts/15/editprms.aspx?obj=%7B3C4F1C6E%2D07FA%2D4AE3%2DA028%2D3803C03F0945%7D%2CLIST&sel=5
If we access the above page directly we will get into the below edit permission page in SharePoint Online:

Notes:
- In the above URL, replace the example demo URL with your site URL.
- Or you can navigate to your other document library edit user permission page where you are facing this greyed-out issue, then you can refer to that page URL.
The above behavior could be different when you are on Office 365 SharePoint online site, even though all permissions are correct right from the master page to the site and list/library.
In SharePoint Online, if the site is connected to an Office 365 group, we cannot change the permission through the UI interface, even though you are a site owner. You could change the permission level of groups by the below PowerShell script:
$siteURL="https://globalsharepoint2020.sharepoint.com/sites/CustomSearchRND" $adminUrl = "https://globalsharepoint2020-admin.sharepoint.com/" $userName = "YourSPOUserName" $password = "YourSPOPassWord" $securePassword= $password | ConvertTo-SecureString -AsPlainText -Force $SecurePassword = $Password | ConvertTo-SecureString -AsPlainText -Force $Credentials = New-Object -TypeName System.Management.Automation.PSCredential -argumentlist $userName, $SecurePassword #Import-Module Microsoft.Online.SharePoint.PowerShell -DisableNameChecking #Retrieve all site collection infos Connect-SPOService -Url $adminUrl -Credential $Credentials #$sites = Get-SPOSite Set-SPOSiteGroup -Site $siteURL -Identity "your group name for which you want to edit the permission" -PermissionLevelsToRemove "Edit" -PermissionLevelsToAdd "Contribute"
Note:
The above example changes the “members” group’s permission from EDIT to Contribute.
Summary: Edit user Permissions greyed Out SharePoint Online (user permissions)
In this troubleshooting technique, we have learned about how to fix the edit user permission greyed out the issue for a SharePoint site owner or administrator.
See Also: SharePoint Online tutorial
You may also like the below SharePoint Online tutorials:
- How to auto populate field in InfoPath based on another field
- Add more than 5 conditions in InfoPath form’s rule
- How to validate the date column in Infopath form
- How to a copy list item to another list using SharePoint designer workflow
- Can not upload SharePoint App to SharePoint App Catalog
- Column header formatting in SharePoint list Quick Edit or Datasheet View
- Enable and configure information rights management (IRM) in SharePoint Online
- 25 quick checklists for SharePoint migration
- Create app catalog site in SharePoint online step by step
- Manage recycle bin in SharePoint Online – Office 365
- User permissions and permission levels in SharePoint Server

2 comments on “Instantly Solved: Edit user Permissions greyed out SharePoint Online – Microsoft 365”