Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

powershell sharepoint 2010 update item

$spWeb = Get-SPWeb -Identity http://yourdomain/sites/config
$spList = $spWeb.Lists["AppSettings"]
$spItem = $spList.GetItemById(10013) //or another way that you prefer.
$spItem["Name"] = "MyName"
$spItem.Update()
Comment

PREVIOUS NEXT
Code Example
Shell :: bash array number range from var 
Shell :: ubuntu search for file whole hard drive 
Shell :: powershell show calendar 
Shell :: install tesseract-ocr jpn 
Shell :: how to checkout a remote branch in git 
Shell :: use docker redis remotely 
Shell :: git tag older commit 
Shell :: laravel routes return not found after setting virtual host on localhost linux 
Shell :: git diff of a file 
Shell :: gen rsa 1024 
Shell :: how to ignore .idea folder in gitignore 
Shell :: install kubernetes on ubuntu 
Shell :: recover a merged commit git 
Shell :: exa ls command 
Shell :: how to run "npm start" ansible pm2 
Shell :: show other systems in the pc or laptop in the grub 
Shell :: terminal theme 
Shell :: what does worktree prune do 
Shell :: git passphrase remember 
Shell :: how to cd into a directory with jenkins pipeline 
Shell :: enale scp in ubuntu 
Shell :: kubectl patch annotation 
Shell :: sed substitute a word in a file by the content in another file 
Shell :: dpkg command 
Shell :: share folder on network linux 
Shell :: run powershell script by clicking 
Shell :: how to scan for raspberry pi on network windows 
Shell :: step7 pgadmin ubuntu 20.04 
Shell :: sed replace with variable 
Shell :: mount a folder from windows inside wsl 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =