How to update SharePoint List items in Office 365 using Powershell?
Hello SharePointers, Below are the powershell script to update SharePoint list items in Office 365/Sharepoint Online using Powershell. Load SharePoint CSOM Assemblies Add-Type -Path “C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll” Add-Type -Path “C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll” #Variables for Processing $SiteUrl = “Your site URL ” $ListName=”Employee” $UserName=”admin@yourtenant.com” $Password =”Password” #Setup Credentials to connect […]