Skip to main content
1 vote

How to check user permissions to SharePoint folders (with inheritence indicator)?

you can use this script SharePointDiary.com which reports all unique permissions from Site to Item Level (you can adjust with commenting the line 151 Get-SPOListItemsPermission $List if you do not ...
Zdeněk Vinduška's user avatar
1 vote

Sharepoint: disable inheritance of metadata columns in folder structure

Library columns are not specific to a folder and are available at all folder levels of the library. You can however restrict the use of columns by using content types. Content types can represent all ...
Callum Crowley's user avatar
1 vote
Accepted

Admin/owner of site with Full Control of document library cannot break inheritance of subfolders within that library

I can reproduce your problem. The reason for this is because your page display ratio is small. Please increase the display ratio of the page.
EchoDu_MSFT's user avatar
  • 2,925
1 vote

What happen to items with unique permission, if we should to have their list inherit its permission from the site rather than having unique permission

When you assign unique permissions to the list, the items in the list will also automatically inherit the unique permissions of the list. If the list inherits the permissions from site collection and ...
EchoDu_MSFT's user avatar
  • 2,925
1 vote

Break inheritance SharePoint list item using JavaScript

Contribute does not allow to break role inheritance, they must have Edit at least. There is an out of the box approach that might be an alternative here (in addition to giving the users more ...
Rune Sperre's user avatar
  • 2,249
1 vote

SharePoint REST request for 'breakroleinheritance' with special character in folder name

Microsoft has made some changes to support some of the old special characters that used to be restricted. Supporting % and # in files and folders with the ResourcePath API So instead of using ...
Christoffer's user avatar
  • 9,896
1 vote

SharePoint 2010 List - permissions vary for users

SharePoint does not provide column level permissions. Here is what you can do: Create a Custom Permission Level in your site --> Name it Contribute Without Delete. Go to List Settings --> Permissions ...
Ganesh Sanap - MVP's user avatar
1 vote

SharePoint 2010 List - permissions vary for users

To allow "contribute - no delete", you just need to create a custom permission level, and assign that permission level to that user for the specific list (or at the site level). Unfortunately, ...
willman's user avatar
  • 3,724
1 vote

How to configure Rest API to be called with other user than the connected one

SharePoint Framework is a client side solution and it always runs in the context of the current user. So, there is no OOTB way to use elevated permissions with SPFx. However, you can try some ...
Ganesh Sanap - MVP's user avatar
1 vote

break folder inheritance REST

Try using your endpoint URL like given below: var endPointUrl = url + "/_api/web/GetFolderByServerRelativeUrl('Style%20Library')/ListItemAllFields/breakroleinheritance(copyRoleAssignments=true, ...
Ganesh Sanap - MVP's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible