如何使用PowerShell修改SharePoint列表中項目的值?當我嘗試以下方法:如何使用PowerShell修改SharePoint列表中項目的值
$splist.GetItems() | ForEach-Object{
#Write-Host $_["Item"]
if($_["Item"] -eq $null){
$SPFileCollection = $folder.Files
$upFile=Get-ChildItem D:\Tools\SP-scripts\MDNSO-template.aspx
$tmpValue = $_["Title"]
$filename = "EM_Doc_Library\$tmpValue"
$SPFileCollection.Add("EM_Doc_Library\$tmpValue",$upFile.OpenRead(),$false)
Write-Host "creating the file"
Write-Host $_["Title"]
$_["Item"] = "MDNSO-<$tmpValue>"
}
}
它說,unable to index into an object of type SPlistItem
。
哪一行引發錯誤? –
fucntion添加(),它說異常調用添加3個參數 – LifeScript
你能幫我嗎?我可以找出幾個小時! – LifeScript