Introduction
Moving further from “Creating lists”, “Creating fields to List Part1″ and “Creating fields to List Part2″ with powershell; this post will cover how to implement SharePoint 2010 list utilities with powershell. We will learn how we can Add list items to various fields (columns)
Adding Items to List
Adding item to SharePoint list “EmpInfo”. Note, field name is case sensitive.
Adding item to Text, Choice, Number, Date, Checkbox, Hyperlink columns
function Get-SPList($webUrl, $lstUrl) { $webObj = Get-SPWeb -identity $webUrl $lstObj = $webObj.GetList($lstUrl); return $lstObj } $spEmpList = Get-SPList -webUrl "http://mysitecollecton/MySite" -lstUrl "http://mysitecollecton/MySite/Lists/EmpInfo" $spEmpListItem = $spEmpList.AddItem() $spEmpListItem.Item("Title") = "Test" $spEmpListItem.Item("ChoiceColName") = "MyChoice2" $spEmpListItem.Item("NumColName") = 100 $spEmpListItem.Item("DataTimeColName") = Get-Date $spEmpListItem.Item("chkBoxColName") = $true $spEmpListItem["HyperlinkColName"] = "http://www.adicodes.com, SharepointCodes" $spEmpListItem.Update()
In the above code,
Line 3 refers item for ‘Title’ column
Line 4 refers item for ‘Choice’ column. The value ‘MyChoice2′ is one of the existing choice values of the ‘Choice’ column
Line 5 refers item for ‘Number’ column
Line 6 refers item for ‘Date and Time’ column. We have to provide date time value
Line 7 refers item for ‘Yes/No’ column. ‘$true’ value will set ‘Yes’ and ‘$false’ value will set ‘No’
Line 8 refers item for ‘Hyperlink or Picture’ column. Both link value and description for the link should be provided with comma(,) separated
Adding item to Lookup column
function Get-SPList($webUrl, $lstUrl) { $webObj = Get-SPWeb -identity $webUrl $lstObj = $webObj.GetList($lstUrl); return $lstObj } $spEmpList = Get-SPList -webUrl "http://mysitecollecton/MySite" -lstUrl "http://mysitecollecton/MySite/Lists/EmpInfo" $spEmpListItem = $spEmpList.AddItem() $spAnnouncementsList = Get-SPList -url "http://mysitecollecton/MySite/Lists/Announcements" $spLookupListItem = $spAnnouncementsList.GetItemById(1) $strLookupListItem = [string]$spLookupListItem.ID + ";#" + $spLookupListItem.Title # casting to string is mandatory here $spEmpListItem["LookupColName"] = $strLookupListItem $spEmpListItem.Update()
In the above code,
Line 3 refers lookup list. We will get the value from this list and assign it in our lookup column ‘LookupColName’.
Line 4 get the item with Id ’1′ from lookup list. We have build the lookupvalue string with ID and title as in Line 5,then
assign that lookupvalue string in the lookup column as in Line 6.
or
In SharePoint 2010, you can also use a list item object as value to a lookup field directly, instead of creating a string in a specific format.
Following is the snippet
function Get-SPList($webUrl, $lstUrl) { $webObj = Get-SPWeb -identity $webUrl $lstObj = $webObj.GetList($lstUrl); return $lstObj } $spEmpList = Get-SPList -webUrl "http://mysitecollecton/MySite" -lstUrl "http://mysitecollecton/MySite/Lists/EmpInfo" $spEmpListItem = $spEmpList.AddItem() $spEmpListItem["LookupColName"] = (Get-SPList -url $listUrl).GetItemById(1) $spEmpListItem.Update()
Adding item to Person or Group Column
function Get-SPList($webUrl, $lstUrl) { $webObj = Get-SPWeb -identity $webUrl $lstObj = $webObj.GetList($lstUrl); return $lstObj } $spEmpList = Get-SPList -webUrl "http://mysitecollecton/MySite" -lstUrl "http://mysitecollecton/MySite/Lists/EmpInfo" $spEmpListItem = $spEmpList.AddItem() $spUser = Get-SPUser -Web "http://mysitecollection/MySite" -Identity "Local\adicodesadmin" $spEmpListItem["PersonorGroupColumn"] = $spUser $spEmpListItem.Update()
For Person or Group column, we have to assign SPUser object as specified in Line 4.
Conclusion
We will further see how we can update and delete items in the sharepoint list with powershell