SharePoint/PnP/PowerShell:通过将其设置为已启用来更新工作流订阅为 false

SharePoint/PnP/PowerShell: Update the workflow subscription by setting it to enabled to false

我尝试使用 PnP PowerShell 更新 SharePoint 中工作流订阅的 "Enabled" 属性,但没有附加内容。 我的目标是以编程方式设置此操作,如在 UI 中那样,当您可以导航到删除工作流 (RemWrkfl.aspx) 页面结束时,然后选择 "No New Instances"。 这就是我所做的:

Import-Module SharePointPnPPowerShellOnline -DisableNameChecking
Connect-PnPOnline -Url "web_site_url"
$wfs = Get-PnPWorkflowSubscription -Name "WF_Name" -List "Lists/list_Name"
$wfs.Enable = $false

在最后一条命令之后,我不知道我需要做什么来激活这个新的 属性。 谁能帮帮我?

此处提供解决方案:SharePoint Online/PnP/PowerShell: Update the workflow subscription by setting it to enabled to false