Hi,
to debug batch stuff i recommend to do 2 steps.
Note that this only works when you have ffastrans not running as a service, otherwise the "Show console" will not work as expected.
Step1: check if your batch is actually executed.
-) create a workflow, insert command executor processor, insert this code as "Command" and make sure "Show console" is checked, then right click - submit file:
Code: Select all
cmd /C "C:\temp\test.bat "%s_source%""
Contents of the test.bat file:
You should see a commandline window that wants you to press any key to go on.
Step2:
-) If Step1 succeeded, check if the variable %s_source% is handed over correctly to your batch. Change the code of the batch to
Code: Select all
echo %1 > c:\temp\output.txt
pause
After submitting a file to the processor, check the contents fo the txt file c:\temp\output.txt. It should contain the submitted filename enquoted.
Let me know if you succeed.