Was this helpful?
Running a Process from CLI
To run a process in JSON format, use the following syntax:
djengine -RC {fullPathAndFileNameOfProcessRTC}
This command executes the process using the settings defined in the process's runtime configuration (RTC) file. For a complete list of command line options, see Command Line Options.
When the RTC and Process files are in the same directory
If the process RTC file is in the same directory where you are running djengine, you only need to provide the file name of the process RTC. The full path is not required. The entry point should only be the process file name. For example:
djengine -RC c:\temp\Package\SimpleProcess.process.rtc
Process RTC file content:
"entryPoint" : "SimpleProcess.process"
When the RTC and Process files are not in the same directory
If the process file is in a different directory than the process RTC file, the RTC entry point should be a relative or absolute path from the RTC file. For example:
djengine -RC c:\temp\Package\SimpleProcess.process.rtc
Process RTC file content:
"entryPoint" : "c:/temp/myprocesses/SimpleProcess.process" OR "../../SimpleProcess.process"
Running multiple Processes from CLI
To run multiple processes use the following syntax:
djengine -RC {fullPathAndFileNameOfProcessRTCFile1} -RC {fullPathAndFileNameOfProcessRTCFile2}
Last modified date: 08/28/2025