Copy-SPSite
複製網站集合。
Syntax
Copy-SPSite
[-Identity] <SPSitePipeBind>
[-TargetUrl] <String>
[-AssignmentCollection <SPAssignmentCollection>]
[-DestinationDatabase <SPContentDatabasePipeBind>]
[-HostHeaderWebApplication <String>]
[-PreserveSiteId]
[<CommonParameters>]
Description
使用 Copy-SPSite Cmdlet 將網站集合從隱含的來源內容資料庫複製到指定的目的地內容資料庫。
網站集合的複本具有新的 URL 和新的 SiteID。 當您在執行SQL Server 的電腦上具有資料庫快照集功能時,會在複製期間建立源資料庫的暫存快照集,以防止複製程式期間發生任何資料變更。 如果您在執行 SQL Server 的伺服器上沒有資料庫快照集功能,您可以備份來源並將它還原至目的地,以取得相同的結果。
如需適用於 SharePoint 產品的 Windows PowerShell 權限及最新資訊,請參閱線上文件 SharePoint Server Cmdlet。
範例
--------------範例-------------
Copy-SPSite https://contoso/sites/OldTeam -DestinationDatabase WSS_Content -TargetUrl https://contoso/sites/NewTeam
此範例會將 https://contoso/sites/OldTeam 網站集合從其資料庫複製到 WSS 內容資料庫,並使用新的 URL (https://contoso/sites/NewTeam 及新的網站識別碼。
參數
-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 2013, SharePoint Server 2016, SharePoint Server 2019 |
-DestinationDatabase
指定傳送複本之目的地位置。
Type: | SPContentDatabasePipeBind |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-HostHeaderWebApplication
當網站集合是主機名稱網站集合,可讓網站登陸正確的 Web 應用程式時,請使用 。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-Identity
指定要複製的網站集合。 可以是有效的 URL 或 GUID。
Type: | SPSitePipeBind |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-PreserveSiteId
指定是否要儲存 SiteID。
有效值為 True 及 False。 預設值為 False。
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2016, SharePoint Server 2019 |
-TargetUrl
用於網站集合之目的地複本的 URL。
Type: | String |
Position: | 2 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |