SharePoint Migration - JackHu88/Comm GitHub Wiki

SharePoint Migration Tool

https://spmtreleasescus.blob.core.windows.net/install/default.htm

SP 2010 TO 2013

https://en.share-gate.com/blog/step-by-step-upgrade-sharepoint-2010-database-to-sharepoint-2013

https://www.codeproject.com/Articles/663663/Live-Migration-of-SharePoint-to-SharePoint

http://www.c-sharpcorner.com/UploadFile/Roji.Joy/sharepoint-2013-upgrade-step-by-step-from-sharepoint-2010/

http://www.cnblogs.com/ahghy/archive/2013/04/15/3022432.html

SP2007 TO 2013

http://www.discovertechnologies.com/wp-content/uploads/2014/07/Migrating-from-SharePoint-2007-to-SharePoint-2013.pdf

http://www.xuebuyuan.com/146955.html

SharePoint 2016

https://sharepointbackup.com/tag/sharepoint-migration-step-by-step/

Deploying SharePoint 2010 Solution on SharePoint 2013

https://wmostafaw.com/2013/04/18/deploying-sharepoint-2010-solution-on-sharepoint-2013/

https://social.technet.microsoft.com/Forums/sharepoint/en-US/f60ecfa6-485f-4f55-aea3-7568fe680dc4/how-to-upgrade-a-sp-2010-solution-to-2013-and-continue-development-with-the-new-object-model?forum=sharepointadmin

Physical Path: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\LAYOUTS

Virtual Path: “/_layouts//”

In SharePoint 2013, there is new 15 hive

Physical Path: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS

Virtual Path: “/_layouts/15//”

If you have SharePoint 2010 solution (.wsp file) and you need to deploy it on SharePoint 2013, then you have the following options:

First, you have to add the solution to your farm using PowerShell as following:

Add-SPSolution C:\SP2010Project.wsp Now,

Deploy to 14 hive --> Install-SPSolution sp2010project.wsp Deploy to 15 hive --> Install-SPSolution sp2010project.wsp -CompatibilityLevel 15

⚠️ **GitHub.com Fallback** ⚠️