List report PS:
$url = "http://SharePointSite" $web = get-spweb $url $web.lists | Select title, ID
This is the PS for actually deleting the corrupted list:
$list = $web.lists["ListName"] $list.allowdeletion = $true $list.update() $list.delete()
$url = "http://SharePointSite" $web = get-spweb $url $web.lists | Select title, ID
$list = $web.lists["ListName"] $list.allowdeletion = $true $list.update() $list.delete()