Set-SPWorkflowConfig
設定指定的 Web 應用程式工作流程設定。
Syntax
Set-SPWorkflowConfig
[-SiteCollection] <SPSitePipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
[-DeclarativeWorkflowsEnabled <Boolean>]
[-EmailNoPermissionParticipantsEnabled <Boolean>]
[-SendDocumentToExternalParticipants <Boolean>]
[-SingleWorkflowEpisodeTimeout <Int32>]
[<CommonParameters>]
Set-SPWorkflowConfig
[-WebApplication] <SPWebApplicationPipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
[-DeclarativeWorkflowsEnabled <Boolean>]
[-EmailNoPermissionParticipantsEnabled <Boolean>]
[-SendDocumentToExternalParticipants <Boolean>]
[-SingleWorkflowEpisodeTimeout <Int32>]
[<CommonParameters>]
Description
此 Cmdlet 包含一個以上的參數集。 您可能只會使用到一個參數集中的參數,而且您無法合併不同參數集中的參數。 如需如何使用參數集的詳細資訊,請參閱 Cmdlet 參數集。
使用 Cmdlet Set-SPWorkflowConfig
來設定指定 Web 應用程式的工作流程設定。
如需適用於 SharePoint 產品的 Windows PowerShell 權限及最新資訊,請參閱線上文件 SharePoint Server Cmdlet。
範例
------------------範例-----------------------
Set-SPWorkflowConfig -webapplication https://sitename DeclarativeWorkflowsEnabled $true -EmailNoPermissionParticipantsEnabled $true -SendDocumentToExternalParticipants $false
本範例會設定指定 Web 應用程式的工作流程設定,以開啟宣告式工作流程、開啟沒有網站許可權之參與者的電子郵件,以及關閉將電子郵件訊息當做附件傳送給外部參與者的功能。
沒有傳回值。
使用 Cmdlet Get-SPWorkflowConfig
來查看值。
若要設定事件傳遞逾時的伺服陣列層級工作流程設定,並延後臨界值和批次大小,請使用 Set-SPFarmConfig
。
參數
-AssignmentCollection
管理物件以適當處置它們。 使用 SPWeb 或 SPSite 等物件可能會耗用大量的記憶體,因此在 Windows PowerShell 指令碼中使用這些物件時,必須適當地管理記憶體。 您可以使用 SPAssignment 物件將物件指派給變數,並在不需要時處置這些物件,以釋放記憶體。 使用 SPWeb、SPSite 或 SPSiteAdministration 物件時,若未使用指派集合或 Global 參數,將會自動處置這些物件。
使用 Global 參數時,所有物件會包含在全域儲存區內。
如果不立即使用物件,或使用 Stop-SPAssignment
命令加以捨棄,則可能會有記憶體不足的狀況發生。
Type: | SPAssignmentCollection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-DeclarativeWorkflowsEnabled
設定是否允許在 Web 應用程式中執行宣告式工作流程。
此類型必須是 1 ( True ) 或 0 ( False )。
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-EmailNoPermissionParticipantsEnabled
設定工作流程是否傳送工作電子郵件訊息,給沒有工作流程執行所在之網站權限的使用者。
此類型必須是 1 ( True ) 或 0 ( False )。
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-SendDocumentToExternalParticipants
設定工作流程是否將文件複本當成電子郵件附件傳送,給沒有網站存取權或只屬於 Active Directory 網域服務 (AD DS) 連結目錄的參與者。
此類型必須是 1 ( True ) 或 0 ( False )。
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-SingleWorkflowEpisodeTimeout
指定給工作流程執行的時間秒數。
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-SiteCollection
指定網站集合的名稱或 URL。
唯一與 SiteCollection 參數搭配使用的參數是 DeclarativeWorkflowsEnabled 參數。 不使用其他參數。
Type: | SPSitePipeBind |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-WebApplication
指定 Web 應用程式的 URL 名稱。
此類型必須是格式為 WebApplication-1212 的有效名稱或 GUID,或是表單中的 URL https://server_name/WebApplication-1212.
Type: | SPWebApplicationPipeBind |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |