Well you can delete it using using PowerShell with an assist from SharePoint Manager:
1) Open SharePoint Manager, go to the list you want to delete, and copy the ID of it.
2) In PowerShell, run the following:
$web = Get-SPWeb "http://dev.yoursite.com"
$lc = $web.Lists
$lc.Delete("YOURGUID")
and then it'll be removed.
No comments:
Post a Comment