{"id":2621,"date":"2010-11-21T08:36:39","date_gmt":"2010-11-21T16:36:39","guid":{"rendered":"https:\/\/www.zubairalexander.com\/stage\/?p=2621"},"modified":"2017-07-22T13:05:47","modified_gmt":"2017-07-22T20:05:47","slug":"granular-backups-and-restores-in-sharepoiont-2010","status":"publish","type":"post","link":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/","title":{"rendered":"Granular Backups and Restores in SharePoint 2010"},"content":{"rendered":"<p>You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration&#8217;s granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let&#8217;s get right to it.<\/p>\n<p><strong>Backup Up Site Collection Using Central Administration<\/strong><\/p>\n<p>Go to Central Administration -&gt; Backup and Restore -&gt; Granular Backup -&gt; Perform a site collection backup.<\/p>\n<p><strong>Backup Site Collection Using PowerShell<\/strong><\/p>\n<p>Use the following PowerShell syntax to backup a Site Collection.<\/p>\n<p><em>backup-spsite -identity <span style=\"color: #008000;\"><strong>Site_URL<\/strong><\/span> -path <strong><span style=\"color: #008000;\">\\\\server\\share\\filename.bak<\/span><\/strong><\/em><\/p>\n<p>For example:<\/p>\n<p><em>backup-spsite -identity <span style=\"color: #008000;\"><strong>http:\/\/seattlepro.com<\/strong><\/span> -path <strong><span style=\"color: #008000;\">\\\\SharePoint\\Backups\\SeattlePro.bak<\/span><\/strong><\/em><\/p>\n<p><strong>Restore a Site Collection Using Central Administration<\/strong><\/p>\n<p>There is no option in Central Administration to perform a granular restore of a Site Collection. You must use PowerShell to restore a Site Collection.<\/p>\n<p><strong>Restore a Site Collection Using PowerShell<br \/>\n<\/strong><\/p>\n<p>To restore a Site Collection use the <strong>restore-spsite<\/strong> cmdlet. This will allow you to restore Site Collections that were backed up either using Central Administration&#8217;s <em>Perform a site collection backup<\/em> link, or were backed up using <strong>backup-spsite<\/strong> cmdlet. Here&#8217;s the syntax.<\/p>\n<p><em>restore-spsite -identity <span style=\"color: #008000;\"><strong>Site_URL<\/strong><\/span> -path <span style=\"color: #008000;\"><strong>\\\\server\\share\\filename.bak<\/strong><\/span><\/em><\/p>\n<p>For example:<\/p>\n<p><em>restore-spsite -identity <span style=\"color: #008000;\"><strong>http:\/\/intranet.seattlepro.com<\/strong><\/span> -path <span style=\"color: #008000;\"><strong>\\\\SharePoint\\Backups\\Intranet.bak<\/strong><\/span><\/em><\/p>\n<p><span style=\"text-decoration: underline;\">NOTE<\/span>: If the Site Collection already exists, you can use the <strong>-force<\/strong> switch at end of the above URL to overwrite the existing site. For example:<\/p>\n<p><em><span style=\"color: #008000;\"><span style=\"color: #000000;\">restore-spsite -identity <\/span><\/span><strong><span style=\"color: #008000;\">http:\/\/intranet.seattlepro.com <\/span><\/strong><span style=\"color: #008000;\"><span style=\"color: #000000;\">-path <\/span><\/span> <strong><span style=\"color: #008000;\">\\\\SharePoint\\Backups\\Intranet.bak <span style=\"color: #000000;\">-force<\/span><\/span><br \/>\n<\/strong><\/em><\/p>\n<p><a href=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2010\/11\/GranularBackupRestore.png\"><img decoding=\"async\" class=\"alignnone size-medium wp-image-2626\" title=\"GranularBackupRestore\" src=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2010\/11\/GranularBackupRestore-300x163.png\" alt=\"\" width=\"300\" height=\"163\" srcset=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2010\/11\/GranularBackupRestore-300x163.png 300w, https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2010\/11\/GranularBackupRestore.png 736w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p><strong>Export a Site Using Central Administration<\/strong><\/p>\n<p>Go to Central Administration -&gt; Backup and Restore -&gt; Granular Backup -&gt; Export a site or list.<\/p>\n<p><strong>Export a Site Using PowerShell<\/strong><\/p>\n<p>To export a SharePoint 2010 Site, Library or a List, use the <strong>export-spweb<\/strong> cmdlet. Here&#8217;s the syntax.<\/p>\n<p><em>export-spweb -identity Site_URL -path \\\\server\\share\\filename.cmp<\/em><\/p>\n<p>For example:<\/p>\n<p><em>export-spweb -identity <strong><span style=\"color: #008000;\">http:\/\/extranet.seattlepro.com\/microsoft<\/span><\/strong> -path <strong><span style=\"color: #008000;\">\\\\SharePoint\\Backups\\Extranet.cmp<\/span><\/strong><\/em><\/p>\n<p><strong>Import a Site Using PowerShell<br \/>\n<\/strong><\/p>\n<p>Use <strong>import-spweb<\/strong> cmdlet to restore a SharePoint 2010 site, library or a list that was exported either in Central Administration with export site or list option, or with <strong>export-spweb<\/strong> cmdlet.<\/p>\n<p>To import a site called SeattlePro located at http:\/\/extranet.microsoft.com\/seattlepro first make sure that the site exists with the same template that was exported (e.g. a Team Site template). You can&#8217;t use a blank template to import a site that used a Team Site template. If import fails, look in the import log file. It will tell you which template the exported site used.<\/p>\n<p><em>Cannot import site. The exported site is based on the template CMSPUBLISHING#0 but the destination site is based on the template STS#0. You can import sites only into sites that are based on same template as the exported site.<\/em><\/p>\n<p>CMSPUBLISHING#0 is a Publishing Site template, while STS#0 is a Team Site template. Recreate the site with the same template and then import an exported site using this PowerShell cmdlet.<\/p>\n<p><em>import-spweb -identity <span style=\"color: #008000;\"><strong>URL_for_Imported_Site<\/strong><\/span> -path <strong><span style=\"color: #008000;\">\\\\servername\\sharename\\filename.cmp<\/span><\/strong><\/em><\/p>\n<p>For example:<\/p>\n<p>import-spweb -identity <span style=\"color: #008000;\"><strong>http:\/\/extranet.seattlepro.com\/microsoft<\/strong><\/span> -path <span style=\"color: #008000;\"><strong>\\\\SharePoint\\Backups\\Microsoft.cmp<\/strong><\/span><\/p>\n<p><strong>Granular Backup Job Status<\/strong><\/p>\n<p>To check the status of your backup job, go to Central Administration -&gt; Backup and Restore -&gt; Granular Backup -&gt;Check granular backup job status, or use the following URL.<\/p>\n<p><em>http:\/\/<span style=\"color: #008000;\"><strong>Server:Port#<\/strong><\/span>\/_admin\/SiteBackupOrExportStatus.aspx<\/em><\/p>\n<p>For example:<\/p>\n<p><em>http:\/\/<span style=\"color: #008000;\"><strong>SharePoint:5678<\/strong><\/span>\/_admin\/SiteBackupOrExportStatus.aspx<\/em><\/p>\n<p><strong>Summary<\/strong><\/p>\n<p>To restore a site collection that was backed up with either Central Administration&#8217;s &#8220;Perform a site collection backup&#8221; option, or using <strong>backup-spsite<\/strong> cmdlet, use <strong>restore-spsite<\/strong> cmdlet.<\/p>\n<p>To restore a Site, Library or a List that was exported either in Central Administration with &#8220;Export a site or list&#8221; option, or with <strong>export-spweb<\/strong> cmdlet, use <strong>import-spweb<\/strong> cmdlet.<\/p>\n<hr \/>\n<p><span style=\"font-size: xx-small; font-family: Verdana;\">Copyright \u00a92010 Zubair Alexander. All rights reserved.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration&#8217;s granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let&#8217;s get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -&gt; Backup [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[54,11],"tags":[],"class_list":["post-2621","post","type-post","status-publish","format-standard","hentry","category-sharepoint","category-tips-tricks"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration&#039;s granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let&#039;s get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -&gt; Backup\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Zubair Alexander\"\/>\n\t<meta name=\"google-site-verification\" content=\"xUGSODobCBguuxTNOCWOCVwAIhfY39LLtYAQOmExYzw\" \/>\n\t<meta name=\"msvalidate.01\" content=\"65829CD0C3C810D64E58EA860413DB21\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Alexander&#039;s Blog | Sharing knowledge with the global IT community since November 1, 2004\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Granular Backups and Restores in SharePoint 2010 | Alexander&#039;s Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration&#039;s granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let&#039;s get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -&gt; Backup\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"590\" \/>\n\t\t<meta property=\"og:image:height\" content=\"590\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-11-21T16:36:39+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-07-22T20:05:47+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@zubairalexander\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Granular Backups and Restores in SharePoint 2010 | Alexander&#039;s Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration&#039;s granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let&#039;s get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -&gt; Backup\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@zubairalexander\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#article\",\"name\":\"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog\",\"headline\":\"Granular Backups and Restores in SharePoint 2010\",\"author\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/wp-content\\\/uploads\\\/2010\\\/11\\\/GranularBackupRestore.png\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#articleImage\",\"width\":736,\"height\":400},\"datePublished\":\"2010-11-21T08:36:39-08:00\",\"dateModified\":\"2017-07-22T13:05:47-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#webpage\"},\"articleSection\":\"SharePoint, Tips &#038; Tricks\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/#listItem\",\"name\":\"Tips &#038; Tricks\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/#listItem\",\"position\":2,\"name\":\"Tips &#038; Tricks\",\"item\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#listItem\",\"name\":\"Granular Backups and Restores in SharePoint 2010\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#listItem\",\"position\":3,\"name\":\"Granular Backups and Restores in SharePoint 2010\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/#listItem\",\"name\":\"Tips &#038; Tricks\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#organization\",\"name\":\"Alexander's Blog\",\"description\":\"Sharing knowledge with the global IT community since November 1, 2004\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/AlexandersBlog_logo_590x590.jpg\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#organizationLogo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/twitter.com\\\/zubairalexander\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/zubairalexander\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/\",\"name\":\"Zubair Alexander\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#webpage\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/\",\"name\":\"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog\",\"description\":\"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration's granular backup\\\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let's get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -> Backup\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/granular-backups-and-restores-in-sharepoiont-2010\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\"},\"datePublished\":\"2010-11-21T08:36:39-08:00\",\"dateModified\":\"2017-07-22T13:05:47-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/\",\"name\":\"Alexander's Blog\",\"description\":\"Sharing knowledge with the global IT community since November 1, 2004\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog","description":"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration's granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let's get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -> Backup","canonical_url":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xUGSODobCBguuxTNOCWOCVwAIhfY39LLtYAQOmExYzw","msvalidate.01":"65829CD0C3C810D64E58EA860413DB21","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#article","name":"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog","headline":"Granular Backups and Restores in SharePoint 2010","author":{"@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author"},"publisher":{"@id":"https:\/\/www.zubairalexander.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2010\/11\/GranularBackupRestore.png","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#articleImage","width":736,"height":400},"datePublished":"2010-11-21T08:36:39-08:00","dateModified":"2017-07-22T13:05:47-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#webpage"},"isPartOf":{"@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#webpage"},"articleSection":"SharePoint, Tips &#038; Tricks"},{"@type":"BreadcrumbList","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.zubairalexander.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/#listItem","name":"Tips &#038; Tricks"}},{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/#listItem","position":2,"name":"Tips &#038; Tricks","item":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#listItem","name":"Granular Backups and Restores in SharePoint 2010"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#listItem","position":3,"name":"Granular Backups and Restores in SharePoint 2010","previousItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/#listItem","name":"Tips &#038; Tricks"}}]},{"@type":"Organization","@id":"https:\/\/www.zubairalexander.com\/blog\/#organization","name":"Alexander's Blog","description":"Sharing knowledge with the global IT community since November 1, 2004","url":"https:\/\/www.zubairalexander.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2020\/10\/AlexandersBlog_logo_590x590.jpg","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#organizationLogo"},"image":{"@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#organizationLogo"},"sameAs":["https:\/\/twitter.com\/zubairalexander","https:\/\/www.linkedin.com\/in\/zubairalexander"]},{"@type":"Person","@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author","url":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/","name":"Zubair Alexander"},{"@type":"WebPage","@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#webpage","url":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/","name":"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog","description":"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration's granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let's get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -> Backup","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.zubairalexander.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/#breadcrumblist"},"author":{"@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author"},"creator":{"@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author"},"datePublished":"2010-11-21T08:36:39-08:00","dateModified":"2017-07-22T13:05:47-07:00"},{"@type":"WebSite","@id":"https:\/\/www.zubairalexander.com\/blog\/#website","url":"https:\/\/www.zubairalexander.com\/blog\/","name":"Alexander's Blog","description":"Sharing knowledge with the global IT community since November 1, 2004","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.zubairalexander.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Alexander's Blog | Sharing knowledge with the global IT community since November 1, 2004","og:type":"article","og:title":"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog","og:description":"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration's granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let's get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -&gt; Backup","og:url":"https:\/\/www.zubairalexander.com\/blog\/granular-backups-and-restores-in-sharepoiont-2010\/","og:image":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png","og:image:secure_url":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png","og:image:width":590,"og:image:height":590,"article:published_time":"2010-11-21T16:36:39+00:00","article:modified_time":"2017-07-22T20:05:47+00:00","twitter:card":"summary_large_image","twitter:site":"@zubairalexander","twitter:title":"Granular Backups and Restores in SharePoint 2010 | Alexander's Blog","twitter:description":"You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration's granular backup\/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let's get right to it. Backup Up Site Collection Using Central Administration Go to Central Administration -&gt; Backup","twitter:creator":"@zubairalexander","twitter:image":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png"},"aioseo_meta_data":{"post_id":"2621","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 04:12:08","updated":"2025-06-04 01:05:00","seo_analyzer_scan_date":null},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/posts\/2621","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/comments?post=2621"}],"version-history":[{"count":0,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/posts\/2621\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/media?parent=2621"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/categories?post=2621"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/tags?post=2621"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}