In this article we will be seeing about the Granular backup in SharePoint 2010. Go to Central Administration => Backup and Restore => Granular Backup. You could see
In this article we will be seeing how to do the following
Perform a site collection backup
BackUp-SPSite "http://servername:1111/" -Path "D:\BackUps\Site\BackUpTest.bak" Export a site:
Using PowerShell: Export-SPWeb -Identity "http://servername:11/web/" -Path "D:\BackUps\Web\WebBackUpTest.cmp" Export a list from the site:
Using PowerShell: Export-SPWeb -Identity "http://servername:1111/" -ItemUrl "/Lists/Users" -Path "D:\BackUps\List\ListBackUpTest.cmp" Export-SPWeb –Identity http://servername:1111/ –ItemUrl "/Shared%20Documents" -Path "D:\BackUps\List\ListBackUpTest.cmp" When I was trying to export the list from the site I was getting the following error
When giving the ItemUrl follow the proper syntax.