1 min read
SharePoint

SharePoint 2010: Exporting a List

To export a list from a SharePoint site you can follow the steps below.

  • Ensure that the user account performing the process is a member of the farm administrator group
  • In Central Administration, on the Home page, click Backup and Restore on the left hand menu.
  • On the Backup and Restore page, in the Granular Backup section, click on the Export a site or list option.


  • On the Site or List Export page, select the appropriate web application, site collection and list that you want to export.


  • In the file location section enter the UNC path of the export folder. This should be a share on either the server or another network location.
  • If the file already exists and you want to overwrite this, then select the overwrite existing file option.
  • Select the export full security check box if you want to export all the security and permissions settings with the select list or library.
  • When you are happy with the selected options click on the start export button

Want more cloud insights? Listen to Cloudy with a Chance of Insights podcast:

Spotify | YouTube | Apple Podcasts

Tags

backuplists
Like this article?

Comments

Richard Hogan

Richard Hogan

Author & Host

Richard is a Microsoft-focused architect and consultant with deep expertise in Azure, Microsoft 365, cybersecurity, and enterprise cloud migration. He is the founder of The Microsoft Cloud Blog and co-host of the Cloudy with a Chance of Insights podcast. All views expressed are his own.

You might also like

Introduction to Document Libraries in SharePoint 2010 – Part 2

In the previous post in this series I covered the basics of using custom columns or metadata in document libraries.  In this much shorter article I will take the concepts already covered and extend of them by introducing the lookup column type. Using the Lookup Column Type The lookup column type can be used to add metadata to… Continue Reading →

SharePoint 2013 Error: The filtering process has been terminated

I had just completed a PowerShell scripted deployment of a SharePoint farm and was just performing the final checks when I noticed the following error in the crawl logs. “The filtering process has been terminated” This turned out that because in the PowerShell script I had specified that the SharePoint installation location should be different to… Continue Reading →

SharePoint 2013: Get User Profile Properties via PowerShell

The following script will iterate through all the user profiles and return the account name. Add-PSSnapin microsoft.sharepoint.powershell; #Load SharePoint User Profile assemblies [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”) [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.Office.Server.UserProfiles”) #Get Context $serviceContext = Get-SPServiceContext -Site “[Site Name]” #Instantiate User Profile Manager $userProfileConfigManager = New-Object Microsoft.Office.Server.UserProfiles.UserProfileManager($serviceContext); #Get All User Profiles $profiles = $userProfileConfigManager.GetEnumerator(); #Loop through all user profiles and display account name… Continue Reading →

In-depth cloud tech discussions from Microsoft experts.

Expert insights on Microsoft Azure, cloud architecture, and enterprise technology.