Launching the program from BATCH file may be very useful when you need to make similar conversions with variable parameters.
Below we offer you two variants of using BATCH file:
ICPCL.exe -convertto jpg -source "C:\Source \*.*\" -dest "D:\out\" jpeg_quality:75 dither:no -oper Resize size:200 100
Second variant illustrates how to do the similar conversions with different source and destination folders.
ICPCL.exe -convertto jpg -source "%1" -dest "%2" jpeg_quality:75 dither:no -oper Resize size:200 100
ImageConverter Plus.bat c:\images\*.* d:\out\
In this example variable %1 will take on value 'c:\images\*.*' and variable %2 - 'd:\out'.
* This example works the same way with other support formats.