Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save suryagahlot/e6fff11f15f5c07cb91fe299ba578750 to your computer and use it in GitHub Desktop.
Save suryagahlot/e6fff11f15f5c07cb91fe299ba578750 to your computer and use it in GitHub Desktop.
Replace field text using Sitecore Powershell.ps1
$items = Get-ChildItem "master:/sitecore/content/" -Recurse | Where { $_.Fields["Title"].Value -eq "Orthopaedic" }
$index = 0
foreach($item in $items)
{
$index++;
if($index -gt 1){
#break #for testing
}
$item.Editing.BeginEdit()
$item.Fields["Title"].Value = "Orthopedic"
$item.Editing.EndEdit()
$item | Publish-Item
}
Write-Host $index
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment