0

我有一个租户范围的 SPFx 解决方案,它适用于 SharePoint Online 中的所有网站。

它部署了一个 megamenu 和一些品牌。

我想禁用/卸载一些站点的解决方案,但由于解决方案是租户范围的,我不能简单地在这些站点上卸载。

请问你能帮忙吗?谢谢。

4

1 回答 1

0

您可以使用 powershell 命令Get-PnpCustomAction -Scope All检查解决方案。

然后使用命令Remove-PnPCustomAction -Identity <ID of the solution> -Scope web从当前 web 中删除自定义操作。

参考:

https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/get-pnpcustomaction?view=sharepoint-ps

https://docs.microsoft.com/en-us/powershell/module/sharepoint-pnp/remove-pnpcustomaction?view=sharepoint-ps

于 2020-02-04T08:55:13.727 回答