Migration: Best approach for migrating a site, subsites and all content to another web application

sharepoint.stackexchange https://sharepoint.stackexchange.com/questions/149554

  •  04-10-2020
  •  | 
  •  

문제

I am doing cleanup of a sharepoint intranet and one of the tasks is to break the team sites into their own web application. Problem is, there is a lot of content to move over, but not enough to warrant using a third party tool.

An idea I had was to basically clone the intranet into another web app, and then delete everything except the team sites. But, this sounds like it might result in orphaned content.

Is this approach viable? Is there a better solution?

Thanks

도움이 되었습니까?

해결책

Use Backup-SPSite and Restore-SPSite

Backup-SPSite -Identity "https://oldwebapp/sites/sitetomove" -Path "C:\Backup\sitetomove.bak"

Restore-SPSite -Identity "https://newwebapp/sites/newsite" -Path "C:\Backup\sitetomove.bak"

다른 팁

I will suggest to use 3rd party tool for doing so. As these OOTB methods turns out to be problematic for certain unexplored areas like: custom Workflows, Items version history, WF associations, custom web parts, Infopath Forms, blocked file types and many more...

If your migration size is limited then you can use Metalogix tool, or Sharegate migration tools as Free versions

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top