Tridion Docs
Show / Hide Table of Contents

Exporting translation jobs to the file system

This tutorial explains how to configure an export to the file system.

Set the deploymentName variable

First set the deploymentName variable.

$deploymentName="InfoShare"

Configure the export to the file system

To configure the export to the file system, use the Set-ISHTranslationFileSystemExport cmdlet.

Note: The optional parameter -MaximumJobSize corresponds to the parameter "externalJobMaxTotalUncompressedSizeBytes" from the FileSystem configuration section.

# The export path on the file system
$exportFolderPath=""

# Set the export
Set-ISHTranslationFileSystemExport -ISHDeployment $deploymentName -Name FileSystem -ExportFolderPath $exportFolderPath

If additional metadata is required to be exported, use the -RequestMetadata parameter like this:

$requestMetadata=@(
    New-ISHFieldMetadata -Name FAUTHOR -Level lng -ValueType value
    New-ISHFieldMetadata -Name DOC-LANGUAGE -Level lng -ValueType value
)

# Set the export
Set-ISHTranslationFileSystemExport -ISHDeployment $deploymentName -Name FileSystem -ExportFolderPath $exportFolderPath -RequestMetadata $requestMetadata

Note: Content Manager requires that only one export to the file system is configured.

Remove the integration with SDL TMS

Use Remove-ISHTranslationFileSystemExport -ISHDeployment $deploymentName.

In This Article
  • Set the deploymentName variable
  • Configure the export to the file system
  • Remove the integration with SDL TMS
Back to top Copyright (c) All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries.