[玩转系统] 使用 PowerShell 添加或删除内容类型到 SharePoint 列表或库
作者:精品下载站 日期:2024-12-14 13:45:05 浏览:13 分类:玩电脑
使用 PowerShell 添加或删除内容类型到 SharePoint 列表或库
SharePoint 内容类型使用户能够将相关数据组织在一起。一切都是围绕 SharePoint 中的内容类型构建的,以提供一致性和可重用性。例如,所有列表模板(例如公告和任务)均分别使用内容类型“公告”和“任务”构建!通常,内容类型由模板和元数据列组成。 例如,让我们考虑“销售提案文档”内容类型,它可以使用销售提案模板和捕获其相关元数据的列在网站集中创建,并且可以与任意数量的文档库关联。
默认情况下,内容类型的范围位于网站集级别。当您将内容类型添加到 SharePoint 列表时,它会从网站内容类型库复制到列表,这意味着当您在列表级别自定义内容类型时,它不会影响父内容类型,父内容类型位于网站集级别。
在 OOPS 术语中,您可以将“内容类型”视为类,并将从该内容类型创建的项目视为“对象”如何将内容类型关联到 SharePoint 库或列表?
要将内容类型添加到 SharePoint 中的列表或库,请执行以下操作:
- 转到列表/库设置。
- 单击常规设置组下的高级设置。
- 在内容类型选项上,将其设置为“是”以允许管理内容类型。
- 现在,在列表设置页面上,您将找到一个新部分“内容类型”,其中包含列表中所有关联的内容类型。
您可以单击“从现有网站内容类型添加”链接将任何现有内容类型添加到列表中。
-
在“添加内容类型”页面的“可用网站内容类型”部分中,选择要添加到列表或库的内容类型,单击“添加”,然后单击“确定”。现在新的内容类型出现在设置页面上。
使用 PowerShell 将内容类型添加到 SharePoint 列表:
如果您想要将内容类型关联到多个站点上的多个列表,您可以使用以下 PowerShell 脚本以编程方式执行此操作!就我而言,我的网站有 50 多个子网站。要求是将内容类型添加到所有站点上的特定库。因此,我编写了这个 PowerShell 自定义函数来在 SharePoint 库中添加删除内容类型。
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
#Custom PowerShell Function to Add Content type to SharePoint list
Function Add-ContentTypeToList([Microsoft.SharePoint.SPList]$List, $ContentTypeName)
{
#Check if Content Type Management is enabled
if($List.ContentTypesEnabled -ne $true)
{
Write-Host "Enabling Content type management on list: $($list.Title)"
$List.ContentTypesEnabled = $true
$List.Update()
}
#Get the content type
$ContentType = $List.ParentWeb.Site.RootWeb.ContentTypes[$ContentTypeName]
#If content type found in the site
if ($ContentType)
{
#Check If list doesn't has the specific content type already
if (-not $list.ContentTypes[$ContentTypeName])
{
#Add content type to the list
$list.ContentTypes.Add($ContentType) | Out-Null
$list.Update()
Write-Host "Content Type Added to the list: $($List.Title)"
}
else
{
Write-Host "Content Type '$($ContentTypeName)' already exists on the list '$($list.Title)'"
}
}
else
{
Write-Host "Cannot find the Content Type '$($ContentTypeName)' to add to list '$($list.Title)'"
}
}
#Variables for processing
$WebURL ="https://sales.crescent.com"
$ListName ="Q1 Sales Proposal"
$ContentTypeName ="Sales Proposal"
#Get the Web and List
$Web = Get-SPWeb $WebURL
$List = $Web.lists.TryGetList($ListName)
if($list -ne $null)
{
#Call the function to add content type
Add-ContentTypeToList $list $ContentTypeName
}
如何从列表中删除内容类型?
要删除您不使用的任何未使用的内容类型,请执行以下操作:
- 浏览至“列表设置”或“库设置”页面。
- 在“内容类型”部分下,单击要删除的内容类型。
- 单击“删除此内容类型”链接,然后在出现确认提示时单击“确定”。
使用 PowerShell 从 SharePoint 列表中删除内容类型
使用此 PowerShell 脚本从 SharePoint 列表或文档库中删除内容类型:
#Custom PowerShell Function to Remove Content type from SharePoint list
Function Remove-ContentTypeFromList([Microsoft.SharePoint.SPList]$List, $ContentTypeName)
{
#Check if Content Type Management is enabled
if($List.ContentTypesEnabled -ne $true)
{
Write-Host "Enabling Content type management on list: $($list.Title)"
$List.ContentTypesEnabled = $true
$List.Update()
}
#Get the content to remove from list
$ContentType = $List.ContentTypes[$ContentTypeName]
#If content type found in the site
if ($ContentType)
{
#Check If list doesn't has the specific content type already
if ($list.ContentTypes[$ContentTypeName])
{
#Remove content type from the list
$list.ContentTypes.Delete($ContentType.Id)
$list.Update()
Write-Host "Content Type has been removed from the list: $($List.Title)"
}
else
{
Write-Host "Content Type '$($ContentTypeName)' doesn't exists on the list '$($list.Title)'"
}
}
else
{
Write-Host "Cannot find the Content Type '$($ContentTypeName)' to add to list '$($list.Title)'"
}
}
#Variables for processing
$WebURL ="https://sales.crescent.com"
$ListName ="Q1 Sales Proposal"
$ContentTypeName ="Sales Proposal"
#Get the Web and List
$Web = Get-SPWeb $WebURL
$List = $Web.lists.TryGetList($ListName)
if($list -ne $null)
{
#remove content type from list, call:
Remove-ContentTypeFromList $list $ContentTypeName
}
如果已经根据内容类型创建了项目,则您无法删除该内容类型!如果您尝试删除正在使用的内容类型,您最终会收到“内容类型仍在使用中”错误!
猜你还喜欢
- 03-30 [玩转系统] 如何用批处理实现关机,注销,重启和锁定计算机
- 02-14 [系统故障] Win10下报错:该文件没有与之关联的应用来执行该操作
- 01-07 [系统问题] Win10--解决锁屏后会断网的问题
- 01-02 [系统技巧] Windows系统如何关闭防火墙保姆式教程,超详细
- 12-15 [玩转系统] 如何在 Windows 10 和 11 上允许多个 RDP 会话
- 12-15 [玩转系统] 查找 Exchange/Microsoft 365 中不活动(未使用)的通讯组列表
- 12-15 [玩转系统] 如何在 Windows 上安装远程服务器管理工具 (RSAT)
- 12-15 [玩转系统] 如何在 Windows 上重置组策略设置
- 12-15 [玩转系统] 如何获取计算机上的本地管理员列表?
- 12-15 [玩转系统] 在 Visual Studio Code 中连接到 MS SQL Server 数据库
- 12-15 [玩转系统] 如何降级 Windows Server 版本或许可证
- 12-15 [玩转系统] 如何允许非管理员用户在 Windows 中启动/停止服务
取消回复欢迎 你 发表评论:
- 精品推荐!
-
- 最新文章
- 热门文章
- 热评文章
[影视] 黑道中人 Alto Knights(2025)剧情 犯罪 历史 电影
[古装剧] [七侠五义][全75集][WEB-MP4/76G][国语无字][1080P][焦恩俊经典]
[实用软件] 虚拟手机号 电话 验证码 注册
[电视剧] 安眠书店/你 第五季 You Season 5 (2025) 【全10集】
[电视剧] 棋士(2025) 4K 1080P【全22集】悬疑 犯罪 王宝强 陈明昊
[软件合集] 25年6月5日 精选软件22个
[软件合集] 25年6月4日 精选软件36个
[短剧] 2025年06月04日 精选+付费短剧推荐33部
[短剧] 2025年06月03日 精选+付费短剧推荐25部
[软件合集] 25年6月3日 精选软件44个
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电视剧] 欢乐颂.5部全 (2016-2024)
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[影视] 【稀有资源】香港老片 艺坛照妖镜之96应召名册 (1996)
[剧集] 神经风云(2023)(完结).4K
[剧集] [BT] [TVB] [黑夜彩虹(2003)] [全21集] [粤语中字] [TV-RMVB]
[实用软件] 虚拟手机号 电话 验证码 注册
[资源] B站充电视频合集,包含多位重量级up主,全是大佬真金白银买来的~【99GB】
[影视] 内地绝版高清录像带 [mpg]
[书籍] 古今奇书禁书三教九流资料大合集 猎奇必备珍藏资源PDF版 1.14G
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电影] 美国队长4 4K原盘REMUX 杜比视界 内封简繁英双语字幕 49G
[电影] 死神来了(1-6)大合集!
[软件合集] 25年05月13日 精选软件16个
[精品软件] 25年05月15日 精选软件18个
[绝版资源] 南与北 第1-2季 合集 North and South (1985) /美国/豆瓣: 8.8[1080P][中文字幕]
[软件] 25年05月14日 精选软件57个
[短剧] 2025年05月14日 精选+付费短剧推荐39部
[短剧] 2025年05月15日 精选+付费短剧推荐36部
- 最新评论
-
- 热门tag