powershell 这将在SharePoint 2013中创建新文档集。您必须启用内容类型。以下示例使用文档集名称“T

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 这将在SharePoint 2013中创建新文档集。您必须启用内容类型。以下示例使用文档集名称“T相关的知识,希望对你有一定的参考价值。

#Script settings
$webUrl = "http://portal.opwftg.com/sites/OPWSS/Teams/Acq/Project BlueJacket"
$listName = "Diligence"
 
### Get web and list
$web = Get-SPWeb $webUrl
$list = $web.Lists[$listName]
 
### Get Document Set Content Type from list
$cType = $list.ContentTypes["Document Set"]
 
### Create new Document Set
[Hashtable]$docsetProperties = @{}
 
$newDocumentSet = [Microsoft.Office.DocumentManagement.DocumentSets.DocumentSet]::Create($list.RootFolder,"Test",$cType.Id, $docsetProperties)
write-host "Test ... created"

$web.Dispose()

以上是关于powershell 这将在SharePoint 2013中创建新文档集。您必须启用内容类型。以下示例使用文档集名称“T的主要内容,如果未能解决你的问题,请参考以下文章

powershell 这将获得SharePoint场中的所有解决方案

powershell 这将获取SharePoint网站中用于创建网站的模板

powershell 这将为SharePoint创建一个新的Web应用程序

powershell 这将获得与SharePoint列表相关的所有工作流

powershell 这将检查SharePoint任务列表是否具有电子邮件分配标志

powershell 这将查找并回收SharePoint列表项。也是分组项目的示例。