Skip to content

Instantly share code, notes, and snippets.

@aackose
Created February 11, 2018 16:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save aackose/97bdacd7aa3d13f76c794ec1dbc42e8d to your computer and use it in GitHub Desktop.
Bulk Update Async Translation Field through Sitecore PowerShell
New-UsingBlock (New-Object Sitecore.Data.BulkUpdateContext) {
foreach($item in Get-ChildItem -Path master:"\system\Modules\TranslatePlus\Queues\Translation Queue") {
$item.Editing.BeginEdit()
$item["Async translation"] = "0"
$item.Editing.EndEdit() | Out-Null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment