That was the one!
Found it once a while back and had some obstacles so I forgot about it. Found it again after I first posted - actually after 23 months worth of files and was determined to make it work the way I needed out of stubbornness. There was something I kept missing the first time I found it, I think. I know my concept approach was flawed as well that first time.
I think I kept looking at the post-shell info as opposed to the MS command line info as well. I don't recall but I did get it to process in the way I needed. A bit late but still usefull as I haven't gotten to the Scheduler part of it all yet.
For sake of reference:
I have all my Oly caps sorted into daily dirs inside of each month's dir. JAN will have JAN 01, JAN 02, etc inside. I think I want to zip them all up and burn to a DL-DVD for archiving. Why, I'm not sure of yet but if I figure that out, I'll still have them and off the hard drive.
The batch file I put together will go thru each of the day folders, make the movie with the tls file I want for that cam and drop them all into the month dir. If the movie was already created, it skips to the next day. The "HERE" variable is all I have to change. The "JAN2010" I had a reason for but should've been JAN under the "2010" directory. It would've been made to go thru the different months in different years but, at this point, it wasn't needed anymore
](https://www.wxforum.net/Smileys/default/eusa_wall.gif)
In cae it helps anyone in the future - "msalsa_loop.bat":
@echo off
SET HERE=C:\PICS SORTED DEC 2009\NW\2010\JAN2010\
SET SalsaDir=C:\Program Files\MovieSalsa\
FOR /d %%G IN ("*") DO CALL :s_msalsa %%G
:s_msalsa
if %1==JAN SET month=01
if %1==FEB SET month=02
if %1==MAR SET month=03
if %1==APR SET month=04
if %1==MAY SET month=05
if %1==JUN SET month=06
if %1==JUL SET month=07
if %1==AUG SET month=08
if %1==SEP SET month=09
if %1==OCT SET month=10
if %1==NOV SET month=11
if %1==DEC SET month=12
IF EXIST "%HERE%%month%%22010.avi" GOTO :DONE
cd "%SalsaDir%"
echo Creating %month%%22010.avi
"MovieSalsa.exe" /A /F="NWcam15fps.tls" /IP="%HERE%%1 %2\" /IF="*.jpg" /OP="%HERE%%month%%22010.avi"
echo DONE!
:DONE