Al tratar de borrar una lista, no me aparecía la opción de “Delete this list”
Abri el Sharepoint Manager 2013, y revise la propiead “AllowDeletion”, estaba en false, así que la cambie a True, y ya me apareció la opción de “Delete this list”
Lo mismo se puede hacer por powershell:
$web = get-spweb -Identity urlWebSite
$list = $web.lists["Comments"]
$list.AllowDeletion = $True
$list.Update()
$list.Delete()
No hay comentarios:
Publicar un comentario