This works perfectly when I run it by double clicking on the batch file, but it give me this error message when I try to run it from my task scheduler (Marco Scheduler)
Here's the error message when it run via Marco Scheduler
I would like to convert all image in a subfolder with a windows batch file. Also then append the filename and the extension at the bottom of each image.
I have been using this code that work but for only one file at the time
FOR /F %%x IN ('convert %1 -ping -format "%%t" info:') DO SET name ...