Question

can you control which fme version to run wokspacerunner with?


Badge +1

So i have 2 different fmws to run. One I need to run with FME 2016 32bit. The other needs to run on FME 2016 64bit.

 

I'd like to create one parrent fmw that will run these two fmws with each separate workspace runner in series.

 

Can I do that? Or should i use SystemCaller and send a proper command for each workspace.


2 replies

Badge +2

Create a batch file that uses the path to each version.

 

Example of running 2 different versions;

 

C:\\FME\\2018\\fme.exe "C:\\_Fme_Help\\Download FTP\\ftp.fmw"

C:\\FME\\2019.2.12\\fme.exe "C:\\_Fme_Help\\Download FTP\\ftp.fmw"

Userlevel 5
Badge +25

I think it defaults to "the same version as it's being called from", in which case you'll have to use SystemCaller instead, but that gives you a bit less control over matters.

 

Reply