List and Library not showing in SharePoint Designer 2010

When I try to open SharePoint designer (2010) the list and library are not displayed, it throws an error like "testSplist".

How to resolve this error.

+3


source to share


1 answer


Follow these steps to resolve this issue.



  • Open a SharePoint PowerShell command prompt.
  • Write the following code in SharePoint powershell.

    $ web = Get-SPWeb http: // [yoursite]

    $ list = $ web.Lists ["Your Broken List"]

    $ list.Delete ()

  • Once you've launched the SharePoint Designer.

  • Now open the SharePoint designer, it will display the entire list and library.

+2


source







All Articles