need to run through a list of old to new data (.csv) file and change them in a sharepoint list - can not make it work
here is my base attempt.
$web
=
Get-SPWeb site url
$list
=
$web
.lists[
"List Name"
]
$item
=
$list
.items.getitembyid(select from the items.csv old)
$modifiedBy
=
$item
[
"Editor"
]
#Editor is the internal name of the Modified By column
$item
[
"old"
] = "new from the .csv file parsed by power sehll
"
$ite.Syste,Update($false);
$web
.Dispose()