Skip to content

Instantly share code, notes, and snippets.

@IAMPetro
Created December 12, 2016 02:12
Show Gist options
  • Save IAMPetro/5faa752bfbf126488051e625d20444e5 to your computer and use it in GitHub Desktop.
Save IAMPetro/5faa752bfbf126488051e625d20444e5 to your computer and use it in GitHub Desktop.
SharePoint: Exporting SharePoint Libraries & Lists
# Example - We will Export the library called "Reports" in the Contoso "Finance Department" team site
# and save it into a folder on the C:\ drive
# The Library URL is "http://intranet.contoso.com/sites/Departments/Finance/Reports/Forms/Allitems.aspx
Export-SPWeb -Identity http://intranet.contoso.com/sites/Departments/Finance -path "C:\Exports\FinanceDepartment_ReportsLibrary.cmp" -ItemUrl "Reports/Forms/Allitems.aspx"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment