共用方式為


New-SPContentDeploymentJob

 

適用版本: SharePoint Server 2010

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

這會建立內容部署工作。

Syntax

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

詳細描述

New-SPContentDeploymentJob Cmdlet 會將新的內容部署工作新增至伺服器陣列。

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

Parameters

參數 必要 類型 描述

Name

必要

System.String

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

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

SPContentDeploymentPath

必要

Microsoft.SharePoint.Publishing.Cmdlet.SPContentDeploymentPathPipeBind

這會指定要與新部署工作相關聯的部署路徑。

其類型必須是格式為 12345678-90ab-cdef-1234-567890bcdefgh 的有效 GUID、有效的內容部署工作名稱 (例如,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 會指定無論工作成功或失敗,都不傳送電子郵件通知。

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

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

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

HostingSupportEnabled

選用

System.Management.Automation.SwitchParameter

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

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

IncrementalEnabled

選用

System.Management.Automation.SwitchParameter

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

Schedule

選用

System.String

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

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

ScheduleEnabled

選用

System.Management.Automation.SwitchParameter

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

Scope

選用

Microsoft.SharePoint.PowerShell.SPWebPipeBind[]

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

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

SqlSnapshotSetting

選用

Microsoft.SharePoint.Publishing.Administration.ContentDeploymentSqlSnapshotSetting

這會建立來源 SharePoint Foundation 2010 內容資料庫的資料庫快照,以用於匯出程序。

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

- None

- CreateNew

注意

CreateNew 值需要安裝 Microsoft SQL Server Enterprise Edition。

WhatIf

選用

System.Management.Automation.SwitchParameter

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

輸入類型

傳回類型

Example

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

Get-SPContentDeploymentPath "Path 1" | New-SPContentDeploymentJob -Name "Deployment Job" -SPContentDeploymentPath $_ -IncrementalEnabled:$true -ScheduleEnabled:$false

此範例會使用部署路徑 Path 1,來建立名為 Deployment Job 的新內容部署工作。此工作已設定為沒有排程的累加工作。

See Also

Reference

Get-SPContentDeploymentJob
Remove-SPContentDeploymentJob
Set-SPContentDeploymentJob
Start-SPContentDeploymentJob