Hey there! A question from me as a newbie in batch-programming : I would like to program a batch-file which executes epstopdf.exe for every *.eps in the folder, where the batch-file is located. A friend told me to use the following command-line interface (which does work pretty well, but is sometimes quite cumbersome): for %i in (*.eps) do epstopdf %i I'm sure someone can help me Thanks in advance!