Subsite level site export / import commands
Go to Command Prompt and go to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN
export the below sites using stsadm. Commands are below
stsadm -o export -url http:****/sites/test/newsite -filename d:\test.cmp -includeusersecurity -versions 4 -nofilecompression
stsadm -o import -url http://****/sites/test/newsite -filename d:\test.cmp -includeusersecurity -updateversions 2 -nofilecompression
Unless you’re running a signed script, make sure you to set the correct execution policy using
Set-ExecutionPolicy. To allow local scripts to run unsigned, run:
Set-ExecutionPolicy Unrestricted
Importing List
Import-SPWeb –Identity http://****/sites/test/ImportListTest -Path D:\testbkp\ListBackup211212\ListBackup211212.cmp -includeusersecurity –force
Export Subsite:
export-spweb -identity http://mysite/mysubsite -path D:\subsitebackup\mysubsitebackup.cmp
Import Subsite:
import-spweb -identity http://mysite/mysubsite -path D:\subsitebackup\mysubsitebackup.cmp
Go to Command Prompt and go to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN
export the below sites using stsadm. Commands are below
stsadm -o export -url http:****/sites/test/newsite -filename d:\test.cmp -includeusersecurity -versions 4 -nofilecompression
stsadm -o import -url http://****/sites/test/newsite -filename d:\test.cmp -includeusersecurity -updateversions 2 -nofilecompression
Unless you’re running a signed script, make sure you to set the correct execution policy using
Set-ExecutionPolicy. To allow local scripts to run unsigned, run:
Set-ExecutionPolicy Unrestricted
Importing List
Import-SPWeb –Identity http://****/sites/test/ImportListTest -Path D:\testbkp\ListBackup211212\ListBackup211212.cmp -includeusersecurity –force
Export Subsite:
export-spweb -identity http://mysite/mysubsite -path D:\subsitebackup\mysubsitebackup.cmp
Import Subsite:
import-spweb -identity http://mysite/mysubsite -path D:\subsitebackup\mysubsitebackup.cmp
Comments