博客链接:https://blog.51cto.com/u_13637423
SharePoint中的Rating功能允许用户对列表项进行评分并提供反馈,从而增强团队内部的协作和决策能力。虽然此功能在SharePoint Teams Site中默认可用,但在Communication Site中默认不启用,如下所示:
但如果您希望在Communication Site的列表中使用Rating功能,则可以使用PowerShell启用它。
本文,将为大家介绍如何使用PnP PowerShell在Communication Site中启用Rating功能。
1. 执行命令Install-Module -Name SharePointPnPPowerShellOnline -Force安装PnP Powershell,如下所示:
2. PnP连接SharePoint Online的Communication Site,命令为:Connect-PnPOnline -Url https://mvptrainingcn.sharepoint.com/,如下所示:
3. 执行命令:Enable-PnPFeature -Identity 915c240e-a6cc-49b8-8b2c-0bff8b553ed3 -Scope Site,启用Rating功能
说明:Rating功能的GUID为915c240e-a6cc-49b8-8b2c-0bff8b553ed3
4. 再次查看Communication Site的List Setting,Rating功能启用,如下所示:
具体配置参见:如何使用Microsoft List的评级功能促进用户的协作和决策
标签:Rating,功能,启用,Communication,Site,Sites,所示,Microsoft From: https://blog.51cto.com/u_13637423/6998476