iT邦幫忙

0

請問我如何才能將SharePoint A上的資料全部轉移到SharePoint B上

請問我如何才能將SharePoint A上的資料全部轉移到SharePoint B上?

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

8
Ray
iT邦大神 1 級 ‧ 2011-01-08 21:12:55
最佳解答

請打開 PowerShell 或是 Sharepoint 2010 Management Shell, 輸入以下指令:

<pre class="c" name="code">Export-SPWeb -Identity http://OLDSITE/ -Path \\SERVER\backup\sharepoint\SiteExport.cmp -IncludeUserSecurity -IncludeVersions All -Verbose

請記得將 -Identity 後面的網址替換成你現有的 Sharepoint 網址; -Path 則替換成你要儲存的位置. 然後在新的 Sharepoint Server 上面, 先建立一個新的空白 Site, 然後輸入:

<pre class="c" name="code">Import-SPWeb -Identity http://NEWSITE/ -Path \\SERVER\backup\sharepoint\SiteExport.cmp -Verbose -Force

同樣需要把上面的 -Identity 和 -Path 替換成你自己所使用的位置.

如果需要知道更多的細節, 或是用管理介面去操作, 請直接參考以上兩個指令的說明:
Import a list or document library (SharePoint Server 2010)
Export a site, list, or document library (SharePoint Server 2010)

riggstsai iT邦新手 5 級 ‧ 2011-01-10 16:20:55 檢舉

謝謝,如果我是SharePoint Services 3.0 sp2呢?也是一樣的做法嗎?

4
mrhsieh
iT邦好手 4 級 ‧ 2011-01-10 11:00:35

在sharepoint管理工具中使用備份功能並將備份好的bak檔由原始電腦copy到目的電腦去接著再使用還原功能,在還原功能中會有建立新site的設定只要將設定設成跟原始電腦一樣應該就可以還原了。

riggstsai iT邦新手 5 級 ‧ 2011-01-10 16:21:25 檢舉

測試中....

我要發表回答

立即登入回答