Monday 20 September 2021

Get the List of Event Receivers for a Custom List in SharePoint 2016 and SharePoint 2013

 To check the list of Event Receivers attached to a custom List in SharePoint 2016 and 2013

 

Power Shell command to get the list of Event Receivers are as follows:


$spWeb = Get-SPWeb Identity http://mySite

$spList = $spWeb.Lists["Custom List Name"]

$spList.EventReceivers | Select Name, Assembly, Type


No comments:

Post a Comment