Skip to main content

Powershell commands

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

Comments

Popular posts from this blog

SharePoint 2010 Branding: Change site actions and welcome menu arrows

Here's how you can do it. Hide the image and give our custom image element a background image. Look Like: .ms-viewselector-arrow {     background: transparent url('/PublishingImages/images/Arrow.png') no-repeat scroll 0 0;     height: 4px; /* height of the image */     width: 5px; /* width of the image */ } .ms-viewselector-arrow img {     display: none; }