I'd like to thank everyone that helped in this thread!

Everything works fine now and is automated to convert automatically.
those were the scripts I used(.doc/.docx):
Quote:
for %%I in (*.doc) do "C:\Program Files\AbiWord\bin\AbiWord.exe" --to=html "%%I"
for %%I in (*.docx) do "C:\Program Files\AbiWord\bin\AbiWord.exe" --to=html "%%I"
for %%I in (*.html) do "C:\Program Files\Calibre2\ebook-convert.exe" "%%I" "%%~nI.epub"
|
and for the pdf2epub:
Quote:
for %%i in (*.pdf) do start /wait ebook-convert "%%i" "%%i.epub"
|
Thanks again and regards
Konrad T.