0

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

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

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

这似乎很基础,但是我在网上搜索过,我只能找到如何创建和附加,而不是如何分离和概述。

谢谢!

4

2 回答 2

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

我从这里获取了上面的代码

希望这可以帮助

特鲁兹

于 2015-05-18T12:46:54.867 回答
0

试试pnp powershell,很方便。 https://github.com/OfficeDev/PnP-PowerShell/blob/master/Documentation/RemoveSPOEventReceiver.md

于 2016-01-21T05:50:46.333 回答