Last active
February 24, 2021 14:39
-
-
Save aaira-a/eba51bfbf922d34e8c87 to your computer and use it in GitHub Desktop.
create a new list item on sharepoint online using powershell csom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add references to SharePoint client assemblies and authenticate to Office 365 site - required for CSOM | |
Add-Type -Path “C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll” | |
Add-Type -Path “C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll” | |
Add-Type -Path “C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.WorkflowServices.dll” | |
# Specify tenant admin and site URL | |
$SiteUrl = "mysiteurl" | |
$ListName = "mylistname" | |
$UserName = "myusername" | |
$SecurePassword = ConvertTo-SecureString "mypassword" -AsPlainText -Force | |
# Bind to site collection | |
$ClientContext = New-Object Microsoft.SharePoint.Client.ClientContext($SiteUrl) | |
$credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($UserName, $SecurePassword) | |
$ClientContext.Credentials = $credentials | |
$ClientContext.ExecuteQuery() | |
# Get List | |
$List = $ClientContext.Web.Lists.GetByTitle($ListName) | |
$ClientContext.Load($List) | |
$ClientContext.ExecuteQuery() | |
# Create Single List Item | |
$ListItemCreationInformation = New-Object Microsoft.SharePoint.Client.ListItemCreationInformation | |
$NewListItem = $List.AddItem($ListItemCreationInformation) | |
$NewListItem["Title"] = 'xxx' | |
$NewListItem.Update() | |
$ClientContext.ExecuteQuery() | |
# Loop Create List Item | |
for ($i=11; $i -le 20; $i++) | |
{ | |
$ListItemCreationInformation = New-Object Microsoft.SharePoint.Client.ListItemCreationInformation | |
$NewListItem = $List.AddItem($ListItemCreationInformation) | |
$NewListItem["Title"] = "abc$($i)" | |
$NewListItem.Update() | |
$ClientContext.ExecuteQuery() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@potatoqualitee Great addition. Thanks!