在线事件接收器共享点
event receiver sharepoint online
我有一个关于 SharePoint Online 的基本问题。
过去制作了一个清单。在此列表中附加了自定义事件接收器。
我需要从列表中分离事件接收器,但我不知道在哪里可以找到附加到 SharePoint 中对象的所有事件接收器的概述。
这看起来很基础,但是我在网上搜索过,我只能找到如何创建和附加,但没有找到如何分离和概述。
谢谢!
我自己从未这样做过,但我相信您需要安装 SharePoint 在线工具。
然后您需要执行一些 powershell 命令然后删除。
# Paths to SDK. Please verify location on your computer.
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\ISAPI\Microsoft.SharePoint.Client.dll"
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\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
中获取了上面的代码
希望对您有所帮助
特鲁兹
试试 pnp powershell,非常好用。
https://github.com/OfficeDev/PnP-PowerShell/blob/master/Documentation/RemoveSPOEventReceiver.md
我有一个关于 SharePoint Online 的基本问题。
过去制作了一个清单。在此列表中附加了自定义事件接收器。
我需要从列表中分离事件接收器,但我不知道在哪里可以找到附加到 SharePoint 中对象的所有事件接收器的概述。
这看起来很基础,但是我在网上搜索过,我只能找到如何创建和附加,但没有找到如何分离和概述。
谢谢!
我自己从未这样做过,但我相信您需要安装 SharePoint 在线工具。
然后您需要执行一些 powershell 命令然后删除。
# Paths to SDK. Please verify location on your computer.
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\ISAPI\Microsoft.SharePoint.Client.dll"
Add-Type -Path "c:\Program Files\Common Files\microsoft shared\Web Server Extensions\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
中获取了上面的代码希望对您有所帮助
特鲁兹
试试 pnp powershell,非常好用。 https://github.com/OfficeDev/PnP-PowerShell/blob/master/Documentation/RemoveSPOEventReceiver.md