Tuesday, March 28, 2017

How to move a SharePoint 2013 subsite within Site Collection

Method 1: By using SharePoint Site User Interface

Steps are as follows

Login the SharePoint Site; click 'Site Actions' -> 'Site Settings'.

Click on "Content and structure" Under Site Administration link
Select Site to Move >> Click on Actions >> Choose Move

Select the Target Site to Move your site,

 Click OK to start move operation
Note: This feature only available if Publishing feature enabled.


Method 2: By using Power Shell

1. Open SharePoint 2013 Management Shell.

2. Run the following Shell

$web=Get-SpWeb "Source site url"

$web.AllowUnsafeUpdates=$true

#Set the Target URL

$web.ServerRelativeUrl="Destination site url"

$web.AllowUnsafeUpdates=$false

$web.update 


 

Thank you very much

          Fahadullah Karimi

         SharePoint Specialist


How to hide SharePoint 2013 ribbon on list display form How to fix SharePoint 2013 Exception System.ServiceModel.FaultException

No comments:

Post a Comment