SP2010 Export Sitemap with List und Libraries in Excel...

Hi,

I have I sitecollection, that i want to migrate into SP2013. Before that I want to take a look at the 2 year old structure to delete useless Content.

When I search for Solutions I only get the samte powershell cmdlet like on this site

But I want to have the libraries und Lists too.

Do you know any ways to do this Job?

September 4th, 2015 8:09am

A very easy way is to use SharePoint Manager.

2013 version: http://spm.codeplex.com/releases/view/97332 (source code, project info, etc.)

Scroll down to find the 2010 version link.

Otherwise, use PowerShell:Get-SPSite http://yoursitecollection |
   Get-SPWeb -Limit All |
   Select -ExpandProperty Lists |
   Where { $_.GetType().Name -eq "SPList" } |
    Select ParentWebUrl, Title

Free Windows Admin Tool Kit Click here and download it now
September 6th, 2015 12:26am

Mike, your powershell command views only SharePoint Lists. Can you provide an command, that selects libraries too?

In SharePoint Manager I can't Export the structure to a file.

September 7th, 2015 3:11am

This site gves me the answer http://sharepointpromag.com/sharepoint/windows-powershell-scripts-sharepoint-info-files-pagesweb-parts

Get-SPSite -WebApplication http://<sitecollection> -Limit All | Select -ExpandProperty AllWebs | Select -ExpandProperty Lists | Select ParentWebUrl, Title

Free Windows Admin Tool Kit Click here and download it now
September 7th, 2015 3:27am

This site gves me the answer http://sharepointpromag.com/sharepoint/windows-powershell-scripts-sharepoint-info-files-pagesweb-parts

Get-SPSite -WebApplication http://<sitecollection> -Limit All | Select -ExpandProperty AllWebs | Select -ExpandProperty Lists | Select ParentWebUrl, Title

September 7th, 2015 3:28am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics