All I am trying to do is copy a SharePoint Web (i.e: http://sp2010/hr) to (i.e: http://sp2013/hr).
I was able to export using:
Export-SPWeb http://sp2010/hr –Path "hrexport.cmp"
But when I try to import it on SharePoint 2013 it doesn't seem to work:
Import-SPWeb http://sp2013/hr –Path hrexport.cmp –UpdateVersions Overwrite
Is this even allowed? How would you do it if you only had to do like 5 SharePoint Webs? Would you restore the entire farm into a testing environment/upgrade in place and then export and import into production?
