Skip to main content

Using Export and Import, you can migrate list from SP 2010 to SP 2013

Using Export and Import, you can migrate list from SP 2010 to SP 2013 but you have to make some manual changes.
  1. Export the list from SharePoint 2010 using either the Central Administration or PowerShell (Export-SPWeb). In the Central Administration, go to Backup and Restore > Export a site or list. Choose your list, and click Start Export
  2. Export-SPWeb –Identity http://sltfiler01/rechumanos/ -Path C:\tmp\CV.cmp -Itemurl "CV" -Force -IncludeUserSecurity -IncludeVersions ALL
  3. Copy the exported list (.cmp file) to your desktop and change the extension to .cab. You can then extract it using a software like WinRar.
  4. Open the SystemData.XML file with an editor like NotePad++ and change the version from 14.0.0.0 to 15.0.0.0 , and the build version from your 14.0.x.x to 15.0.x.x (depending on the build you have on both your farms).
  5. For view the version export a little library from SP2013 and copy the line of version

CabPack --> http://download.cnet.com/CabPack/3000-2250_4-75805653.html

If the library contains various files, only rename to cab the first.

  1. Now we have to repackage it as a .cab file. I used a software called CabPack. Select your Source and Destination. Change the CabinetNameTemplate if you want, and click on OK.
  2. Extract all files in a folder for more easy cab.
  3. Change the extension from .cab to .cmp or bak
  4. Copy the .cmp file back on the network share or directly on the SharePoint 2013 Server. Open SharePoint 2013 Management Shell as an administrator. Run this command by changing the parameters of course!
Import-SPWeb –Identity http://intranet/HR/ -Path D:\SP2013\90-Backups\HR\CVNEW.bak –Force -IncludeUserSecurity
  1. Open up your SharePoint Site and your list should be there.
Enjoy ;)

Comments