powershell 获取sharepoint列表字段列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取sharepoint列表字段列表相关的知识,希望对你有一定的参考价值。

$web = Get-SPWeb "http://yoursite:port"            
$list = $web.GetList("http://yoursite:port/lists/listname");            
$list.Fields | sort StaticName,Type | ?{$_\3.CanBeDeleted -eq $true -and $_\3.Hidden -eq $false} | FT Title,StaticName,Type

以上是关于powershell 获取sharepoint列表字段列表的主要内容,如果未能解决你的问题,请参考以下文章

powershell SharePoint PowerShell,它获取作为字符串的列表项并将其转换为数字,然后更新列表项。

powershell 此powershell脚本使用字段名称获取所有值是sharepoint列表中的字段

powershell Poweshell脚本,用于获取SharePoint网站中的所有列表。

powershell 获取SharePoint库中所有文件夹的列表,包括子文件夹

powershell 此SharePoint PowerShell从Web应用程序中的所有站点获取使用特定内容类型的列表的URL。

powershell 这将从sharePoint列表中获取Created By(作者)和Modified By(编辑器)