Export and Import SharePoint 2013/2010 Subsites using powershell
For Backup/Export:
Export-SPWeb http://YourLinkwithsubsite -Path "D:\FCR1\FCR1.cmp" -force
For Restore/Import:
Import-SPWeb http://YourLinkwithsubsite -Path "D:\FCR1\FCR1.cmp" -UpdateVersions Overwrite -force
Note: I tried without -Force. Its showing "Export-SPWeb : Feature '8915db8f-2a3f-4e5e-a72f-76bfcae4b185' for list template '10012' is not installed in this farm. The operation could not be completed."
Comments
Post a Comment