I have a Sharepoint site A and I want to move and update it to another site B along with it's structure and content; which can be done by content deployment but if the user deletes an item from site A it should not be deleted in site B.
问问题
28 次
1 回答
0
我不确定您要问什么,但是如果您需要备份站点 A 并将内容/结构移动到站点 B,那么我建议您使用 powershell。这是假设这是一个一次性的过程。您可以使用:
Backup-SPSite -Identity "SITE A URL" -Path "C:\spsite.bak" -Force -Confirm:$False
然后备份完成后,运行以下命令:
恢复-SPSite "SITE B URL" -Path C:\spsite.bak -Force -Confirm:$False
现在您在站点 B 中拥有站点 A 的精确副本,但任一站点上的更改都不会相互影响。
于 2013-11-08T01:46:29.990 回答