powershell 此PowerShell脚本列出了SharePoint列表中的所有字段内部名称。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此PowerShell脚本列出了SharePoint列表中的所有字段内部名称。相关的知识,希望对你有一定的参考价值。

$TopSiteUrl = 'https://xxxx'
$topSite = Get-SPWeb $TopSiteUrl

$mList=$topSite.Lists["Monitor Log"]
$f = $mList.Fields
$f | ft InternalName | out-file 'f:\temp\fields.txt' -append
Add-PsSnapin Microsoft.SharePoint.PowerShell

$TopSiteUrl = 'http://portal.opwftg.com/sites/OPWSS/Teams/Safety/InternationalSafety/Fibrelite2/Cells'
$topSite = Get-SPWeb $TopSiteUrl

$mList=$topSite.Lists["Linksc"]

$Item = $mList.Items[0]
$field = $Item.Fields
$field.InternalName

以上是关于powershell 此PowerShell脚本列出了SharePoint列表中的所有字段内部名称。的主要内容,如果未能解决你的问题,请参考以下文章

PowerShell 错误“在此系统上禁用脚本执行”。

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

powershell 此PowerShell脚本从子站点组等于值的所有子站点中删除组。如果要删除gro,请使用此选项

powershell 此PowerShell脚本是从SCCM DB获取SCEP日志并将其导出为CSV文件

powershell 此powershell脚本生成新证书,从IISExpress ssl端口删除旧证书分配并添加新证书

powershell 使用PowerShell导出MSSQL架构。此脚本将导出表,存储过程,触发器,函数和视图的模式定义