Will event receiver trigger on a SharePoint 2013 on premise site if site collection has been set to read only

sharepoint.stackexchange https://sharepoint.stackexchange.com/questions/255506

문제

I have one SP site where there is an event receiver that gets executed and keeps track of all the information about the documents which are getting downloaded.

Business plans to make this site read only soon, so I am worried if users download the documents post read only, then will the event receiver trigger and try to push the details of the downloaded documents in SP List?

도움이 되었습니까?

해결책

It depends how way you want to set read-only mode. You can set with PowerShell Set-SPSite -Identity "<SiteCollection>" -LockState "<State>" or you can set Permissions on this Site, so you will set for every users Read Only Permissions.

If you set Read-Only Permissions for all, administrator will always have Full Control permisisons and the Event Reciever runs under Admin, so it should work correctly.

If you set LockState, there could be problem because neither Administrator could not do any changes on this Site.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top