Skip to content

Instantly share code, notes, and snippets.

@agehlot
Last active September 26, 2022 15:28
Show Gist options
  • Save agehlot/b7f6971724045a797abdcb78aeaba3e5 to your computer and use it in GitHub Desktop.
Save agehlot/b7f6971724045a797abdcb78aeaba3e5 to your computer and use it in GitHub Desktop.
Sample PowerShell script to delete Sitecore standard values item and also list out all items that are type of Template.
$templateIds1 = Get-ChildItem /sitecore/templates/Feature/Fortune -Recurse |
? { $_.DisplayName -eq "__Standard Values" } | Remove-Item
$templateIds = Get-ChildItem /sitecore/templates/Feature/Fortune -Recurse |
? { $_.TemplateName -eq "Template" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment