【问题标题】:Powershell Script to get all columns and type in a SPList用于获取所有列并输入 SPList 的 Powershell 脚本
【发布时间】:2019-08-11 22:07:32
【问题描述】:

我想检索 SharePoint 列表中的所有列及其类型。 我尝试了几个脚本,但结果不是我想要的。

以下是我尝试过的脚本:

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

#Configuration Parameters
$SiteURL="http://url.com/"
$ListName= "theList"
$CSVPath="C:\Temp\list.csv"

#Get the Web and List
$Web = Get-SPWeb $SiteURL
$List = $Web.Lists.TryGetList($ListName)

#Export List Fields to CSV file
$List.Fields | select Title, InternalName | Export-Csv -path $CSVPath -NoTypeInformation

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue

$url = "http://url.com/"
$listName = "theList"
$path ="C:\Temp\list.csv"

$web = Get-SPWeb $url
$list = $web.Lists.TryGetList($listName)
$fields = $list.ContentTypes | %{ $_.FieldLinks }
$items = @() #array to store objects representing list items
$list.items | %{ 
    $item = $_; 
    $hash = @{}; #hash table to store field name-value pairs
    $fields | %{ $hash[$_.DisplayName] = $item[$_.Name]  }; 
    $items += new-object psobject -Property $hash }
$items | Export-Csv -Path $path

【问题讨论】:

    标签: list powershell sharepoint


    【解决方案1】:

    只需添加 Type 属性。

    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    
    #Configuration Parameters
    $SiteURL="http://sp:12001"
    $ListName= "Customers"
    $CSVPath="C:\Lee\script\list.csv"
    
    #Get the Web and List
    $Web = Get-SPWeb $SiteURL
    $List = $Web.Lists.TryGetList($ListName)
    
    #Export List Fields to CSV file
    $List.Fields | select Title, InternalName,Type | Export-Csv -path $CSVPath -NoTypeInformation
    

    【讨论】:

      猜你喜欢
      • 2020-04-23
      • 2015-12-23
      • 2019-09-08
      • 2017-09-30
      • 1970-01-01
      • 1970-01-01
      • 2015-06-16
      • 1970-01-01
      • 2022-01-05
      相关资源
      最近更新 更多