You can use the following PowerShell script to add a remote event receiver in SharePoint 2013/2016: Add-Type -Path "C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions15ISAPIMicrosoft.SharePoint.Client.dll" Add-Type -Path "C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions15ISAPIMicrosoft.SharePoint.Client.Runtime.dll" #Site & context $siteUrl = "https://siteurl/" $listTitle = "listTitle" $clientContext = New-Object Microsoft.SharePoint.Client.ClientContext($siteUrl) $clientContext.Credentials = New-Object System.Net.NetworkCredential("domainuser", "pass") function addListItemRemoteEventReceiver([Microsoft.SharePoint.Client.ClientContext]$context,...