当前位置:网站首页 > 更多 > 玩电脑 > 正文

[玩转系统] SharePoint Online:如何禁用“删除此列表”?

作者:精品下载站 日期:2024-12-14 15:32:03 浏览:13 分类:玩电脑

SharePoint Online:如何禁用“删除此列表”?


要求:禁用 SharePoint Online 列表或文档库中的“删除”选项。

如何禁用 SharePoint Online 中列表或库的删除选项?

我们要求禁止对作为自定义应用程序的一部分配置的特定 SharePoint Online 列表和文档库进行任何意外删除。如果您注意到,在某些 SharePoint 列表和库(例如“场模板”库)中,默认情况下缺少“删除此列表”或“删除此文档库”链接以阻止删除选项。那么,我们如何禁用删除选项呢?

那么,如果您想从 SharePoint 中的列表设置(以及其他地方!)禁用删除列表选项,您可以将列表或库的“AllowDeletion”属性设置为“False”。设置完成后,删除选项就会隐藏!

[玩转系统] SharePoint Online:如何禁用“删除此列表”?

PowerShell 禁用 SharePoint Online 列表中的删除

让我们将“允许删除”标志设置为“False”以防止删除。


Import-Module Microsoft.Online.SharePoint.PowerShell -DisableNameChecking

#Set Parameters for Site URL and List Name
$SiteURL= "https://crescent.sharepoint.com/sites/marketing"
$ListName= "config"
 
#Setup Credentials to connect
$Cred = Get-Credential
 
Try {
    #Setup the context
    $Ctx = New-Object Microsoft.SharePoint.Client.ClientContext($SiteURL)
    $Ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Cred.UserName,$Cred.Password)
 
    #Get the List
    $List=$Ctx.Web.Lists.GetByTitle($ListName)
 
    #disable delete in sharepoint online list
    $List.AllowDeletion = $False
    $List.Update()
    $Ctx.ExecuteQuery()
         
    Write-host -f Green "List Settings Updated Successfully!"
}
Catch {
    write-host -f Red "Error Updating List Settings!" $_.Exception.Message
}

此脚本隐藏给定列表中的删除选项,例如列表设置中的位置。同样,我们也可以禁用 SharePoint Online 文档库的删除选项。这次我们使用 PnP PowerShell:


#Set Parameters
$SiteURL = "https://crescent.sharepoint.com/sites/Projects"
$ListName = "Inventory"

#Connect to SharePoint Online site
Connect-PnPOnline -Url $SiteURL -Interactive

#Disable delete in sharepoint online document library
$List = Get-PnPList -Identity $ListName -Includes AllowDeletion
$List.AllowDeletion = $False
$List.Update()
Invoke-PnPQuery

SharePoint Online 无法删除列表?
一旦“AllowDeletion”标志设置为 false,我们就无法通过 Web UI 或 PowerShell 删除列表,直到将该标志恢复为“True” 。您将收到“此列表无法删除”。如果您尝试删除它,则会出现错误。如果必须删除不提供删除链接的列表,请使用:如何使用 PowerShell 删除 SharePoint Online 中的列表?

您需要 登录账户 后才能发表评论

取消回复欢迎 发表评论:

关灯