Remove Duplicate Registration of Event Receiver- Powershell
# List all the Events registered
$weburl = "http://SharepointWeb"
$spweb = Get-SPWeb $weburl
$spList = $spWeb.Lists["ListName"]
$spList.EventReceivers | Select Name, Assembly, Type
# Remove the Event Registration at index 0
$spList.EventReceivers[0].delete()
Comments
Post a Comment