Quantcast
Channel: Microsoft Online: SharePoint Online forum
Viewing all articles
Browse latest Browse all 10096

Update SharePoint Online SPO List data with Powershell 3.0?

$
0
0

Is this possible? Is there an add-in for SPO (other than Powershell Online Management shell )

Will want to be able to do something like this with SPO at some point?

$csv = Import-Csv c:\mydept.csv
$list = (Get-SPSite "http://mytenant.sharepoint.com/sites/cool").OpenWeb().Lists["deptartments"]
foreach ($row in $csv) {
    $item = $list.GetItemById(row.id);
    $item["DIV_DESC"] = $row.DIV_DESC;
    $item.Update();
}


============================
Thank You
cyberpine.com



Viewing all articles
Browse latest Browse all 10096

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>