211 tsbat.zip
   72 tscmd.zip
(Please do not take this the wrong way. This is not a return to the
unfortunate topics arguing, which, if still any, I am skipping.)
All the best, Timo
-- 
Prof. Timo Salmi ftp & http://garbo.uwasa.fi/ archives 193.166.120.5
Department of Accounting and Business Finance  ; University of Vaasa
mailto:t...@uwasa.fi <http://www.uwasa.fi/~ts/>  ; FIN-65101,  Finland
Timo's  FAQ  materials  at   http://www.uwasa.fi/~ts/http/tsfaq.html
Hi,just a note about 12:
12) How can I rename all my .JPG files sequentially in a directory?
set n=0
for %%a in (*.jpg) do call :sub "%%a"
:sub
set /a n+=1
ren %1 "%~n1%n%.jpg"