PnP PowerShell To Disable Delete this list Option from List Setting

PnP PowerShell To Disable Delete this list Option from List Setting

We can not manually disable the Delete this list option from List View by UI Provided by the SharePoint but we can do it by PowerShel

Following is the PnP Powershell code to Disable it

$SiteURl = "Your Site URL"

Connect-PnPOnline $SiteURl -Interactive

$listName="Service Desk"


$list=Get-PnPList -Identity $listName 

$list.AllowDeletion=$false

$list.Update()

Invoke-PnPQuery

after running the query list setting will look like this








Comments

Popular posts from this blog

PnP Powershell To Update List Field In a List View

Pnp PowerShell To Hide List From Site Contents In SharePoint

Pnp PowerShell To UnHide/Visible List From Site Contents In SharePoint