pipeline.bat how to use

Forums: 
Hi Members! First of all, i have to say sorry about my problet. It's very possible,that somebody asked it before me. So my problem: I try use pipeline.bat (under WIN). I try to convert a Dtbook to Xhtml i wrote to te cmd: pipeline.bat -f scripts\DtbooktoXhtmlTaskParamsStatic.paramGroup --Input=C:\Input\dtbook.xml --Output=C:\output\output.xhtml i now that i write something wrong near input and output, but i don't no how can i write, that the job will success. Thank a lot! Herceg

Dear Herceg, You can refer to the Command Line User Guide: http://daisymfc.sourceforge.net/doc/enduser/cmd-user-guide.html First you have to point the command to a "task script" file (with a *.taskScript extension). You can first use the "-i" option to get a list of the parameters to set, and then set this parameters using the "--name=value" syntax. For instance, to get the information on the "DTBook to XHTML" script: $ ./pipeline.bat -i scripts\create_distribute\xhtml\DtbookToXhtml.taskScript Then to execute the conversion: $ ./pipeline.bat scripts\create_distribute\xhtml\DtbookToXhtml.taskScript --input=C:\Input\dtbook.xml --output=C:\output\output.xhtml HTH, Romain.