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
Post a Comment