共用方式為


Set-SPContentDeploymentJob

 

適用版本: SharePoint Server 2010

上次修改主題的時間: 2015-03-09

這會設定內容部署工作的屬性。

Syntax

Set-SPContentDeploymentJob [-Identity] <SPContentDeploymentJobPipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-Description <String>] [-EmailAddresses <String[]>] [-EmailNotifications <None | SendEmailOnFailure | SendEmailOnSuccess | SendEmailOnAlways>] [-HostingSupportEnabled <SwitchParameter>] [-IncrementalEnabled <SwitchParameter>] [-Name <String>] [-Schedule <String>] [-ScheduleEnabled <SwitchParameter>] [-Scope <SPWebPipeBind[]>] [-SqlSnapshotSetting <None | CreateNew>] [-WhatIf [<SwitchParameter>]]

詳細說明

Set-SPContentDeploymentJob Cmdlet 會設定內容部署工作的屬性。

如需權限以及有關 Windows PowerShell for SharePoint Server 2010 的最新資訊,請參閱 TechNet (https://go.microsoft.com/fwlink/?LinkId=163183)。

Parameters

參數 必要 類型 說明

Identity

必要

Microsoft.SharePoint.Publishing.Cmdlet.SPContentDeploymentJobPipeBind

這會指定要更新的內容部署工作。

其類型必須為有效的 GUID,且格式為 12345678-90ab-cdef-1234-567890bcdefgh;內容部署工作的有效名稱 (例如,DeployJob1);或是有效之 SPContentDeploymentJob 物件的執行個體。

AssignmentCollection

選用

Microsoft.SharePoint.PowerShell.SPAssignmentCollection

為能適當處置物件而管理物件。使用 SPWebSPSite 等物件可能會耗用大量的記憶體,因此在 Windows PowerShell 指令碼中使用這些物件時,必須適當地管理記憶體。您可以使用 SPAssignment 物件將物件指派給變數,並在不需要時處置這些物件,以釋放記憶體。使用 SPWebSPSiteSPSiteAdministration 物件時,若未使用指派集合或 Global 參數,將會自動處置這些物件。

注意

使用 Global 參數時,所有物件會包含在全域儲存區內。若未立即使用物件,或未使用 Stop-SPAssignment 命令處置物件,將會發生記憶體不足的狀況。

Confirm

選用

System.Management.Automation.SwitchParameter

執行命令之前,會先提示您進行確認。如需詳細資訊,請輸入下列命令:get-help about_commonparameters

Description

選用

System.String

這會指定內容部署工作的說明。名稱最多可包含 4096 個英數字元。

其類型必須為有效的字串。

EmailAddresses

選用

System.String[]

這會指定使用者的電子郵件地址,這些都是會收到有關此 ContentDeploymentJob 物件之電子郵件通知的使用者。

其類型必須為有效之電子郵件地址的清單。

EmailNotifications

選用

Microsoft.SharePoint.Publishing.Administration.ContentDeploymentNotificationSettings

這會指定如何傳送有關此 ContentDeploymentJob 物件的電子郵件通知。

其類型必須為下列其中之一:

- Never 會指定無論工作成功或失敗,都不傳送電子郵件通知。

- Success 會指定如果內容部署工作成功,就傳送電子郵件通知。

- Failure 會指定如果內容部署工作失敗,就傳送電子郵件通知。

- Always 會指定無論工作成功或失敗,都要傳送電子郵件通知。

HostingSupportEnabled

選用

System.Management.Automation.SwitchParameter

這會啟用特殊裝載行為。預設值為 False

一般而言,會使用 SharePoint 管理中心網站來啟用或停用內容部署工作。但是,在裝載的情況下,承租人管理員並沒有存取管理中心頁面的權限,而無法設定工作。因此,當 HostingSupportEnabled 參數設定為 True 時,主控者會建立工作,好讓承租人得以從承租人管理網站啟用或停用部署工作。

IncrementalEnabled

選用

System.Management.Automation.SwitchParameter

這會指定只將累加變更部署到目的地網站集合。

Name

選用

System.String

這會指定新內容部署工作的名稱。

其類型必須為內容部署工作的有效名稱;例如 DeployJob1。

Schedule

選用

System.String

這會設定部署工作的排程。

其類型必須為有效的 SPSchedule 物件。

ScheduleEnabled

選用

System.Management.Automation.SwitchParameter

這會啟用部署工作的排程。若未啟用排程,則只能手動執行工作。

Scope

選用

Microsoft.SharePoint.PowerShell.SPWebPipeBind[]

這會設定部署工作的範圍。傳入的 SPSite 物件必須存在於來源網站集合的目前路徑上。預設範圍是整個網站集合。有效值包括 SPWeb 物件或 SPWeb 物件陣列。

其類型必須為有效的 GUID,且格式為 12345678-90ab-cdef-1234-567890bcdefgh;Microsoft SharePoint Foundation 2010 網站 (例如,MySPSite1) 的有效名稱;或是有效之 SPWeb 物件的執行個體。

SqlSnapshotSetting

選用

Microsoft.SharePoint.Publishing.Administration.ContentDeploymentSqlSnapshotSetting

這會使用 SQL Server 來備份 SharePoint Foundation 2010 內容資料庫。

其類型必須為下列值之一:NoneCreateNew

WhatIf

選用

System.Management.Automation.SwitchParameter

顯示訊息描述命令效果,而非描述命令執行的效果。如需詳細資訊,請輸入下列命令:get-help about_commonparameters

輸入類型

傳回類型

Example

-----------------範例------------------

Get-SPContentDeploymentJob "Job 1" | Set-SPContentDeploymentJob -Schedule "hourly between 0 and 59" -ScheduleEnabled:$true

此範例會將名為 Job 1 的部署工作,設定為每小時執行一次。

See Also

Reference

Get-SPContentDeploymentPath
New-SPContentDeploymentJob
Remove-SPContentDeploymentJob
Start-SPContentDeploymentJob