事件接收者sharepoint online

时间:2015-05-18 11:10:05

标签: events sharepoint sharepoint-online eventreceiver

我有一个关于SharePoint Online的基本问题。

过去列出了一个清单。在此列表中附加了自定义事件接收器。

我需要从列表中分离事件接收器,但我不知道在哪里可以找到附加到SharePoint中对象的所有事件接收器的概述。

这似乎是非常基本的,但我搜索了网页,我只能找到如何创建和附加,而不是如何分离和概述。

谢谢!

2 个答案:

答案 0 :(得分:0)

我自己从未这样做,但我相信您需要安装SharePoint在线工具。

然后,您需要执行一些powershell命令然后删除。

 # Paths to SDK. Please verify location on your computer. 
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll"  
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"  

# Insert the credentials and the name of the admin site 
$Username="admin@tenant.onmicrosoft.com" 
$AdminPassword=Read-Host -Prompt "Password" -AsSecureString 
$Url="https://tenant.sharepoint.com/sites/teamsitewithlibraries" 
$ListTitle="kriiv" 
$EventReceiverGUID="154d2ca2-8335-464c-9059-214cdcc1c2c1" 

Get-SPOListEventreceivers -Username $Username -AdminPassword $AdminPassword -Url $Url -ListTitle $ListTitle -EventReceiverGUID $EventreceiverGUID

我已从this

获取上述代码

希望这有帮助

Truez

答案 1 :(得分:0)