There is the Custom Actions feature that allows to run any application, batch file, etc before synchronization, after synchronization, or on error. It supports a standard command line interface. To configure the Custom Actions use a menu item View --> Options and navigate to Custom Actions page.
Here is an example of how to run the jobs sequentially.
Create a batch file "C:\CustomActions.bat" and write the next lines into it (e.g.):
if %1 == "Job 1" goto :Actions1
if %1 == "Job 2" goto :Actions2
if %1 == "Job 3" goto :Actions3
goto :EOF
:Actions1
"C:\Program Files\Allway Sync\Bin\syncappw.exe" -e -s "Job 2"
goto :EOF
:Actions2
"C:\Program Files\Allway Sync\Bin\syncappw.exe" -e -s "Job 3"
goto :EOF
:Actions3
"C:\Program Files\Allway Sync\Bin\syncappw.exe" -e -s "Job 4"
goto :EOF
Job 1, Job 2, Job 3, Job 4 are the names of your sync jobs (tabs).
Then insert the command line "C:\CustomActions.bat %js%" into the "After synchronization" field for Automatic mode (right column) of Custom Actions feature.
Partager