gpt4 book ai didi

powershell - 使用 Powershell 将 csv 导入 SharePoint 列表

转载 作者:行者123 更新时间:2023-12-02 23:30:45 25 4
gpt4 key购买 nike

我想将数据从 CSV 导入到 SharePoint 列表,我从脚本中得到的只是空白行。这是我的代码:

# CSV path/File name
$contents = Import-Csv ".\Input.csv"

# Web URL
$web = Get-SPWeb -Identity "http://Zaxiyn/"

# SPList name
$list = $web.Lists["Technical Profile List"]


# Iterate for each list column

foreach ($row in $csv) {
$item = $list.Items.Add();
$item["Computer"] = $row.Computer;
$item["ItemOrder"] = $row.ItemOrder;
$item["Category"] = $row.Category;
$item["ItemName"] = $row.ItemName;
$item["ItemValue"] = $row.ItemValue;
$item.Update();
}

最佳答案

看起来您指的是一个不存在的变量。 csv 文件内容保存在 $contents 中,您的 foreach 语句使用 $csv,试试这个:

foreach ($row in $contents) { ... }

关于powershell - 使用 Powershell 将 csv 导入 SharePoint 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10948890/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com