File processing in batch file versus executable

Convert your BATch files into EXEcutable format in one click.
Post Reply
Mike Lee
Posts: 2
Joined: Sat Mar 17, 2007 7:24 pm

File processing in batch file versus executable

Post by Mike Lee »

Simple question -

Why does this batch file process multiple files, yet when compiled into an executable it will only process 2 or 3 files.

for %%i in (%*) do exifiron -r %%i

Is there something simple I am overlooking?

Thanks for any input.
Mike
Andry81
Posts: 1
Joined: Thu Aug 16, 2007 7:16 pm

Post by Andry81 »

I think this is bug-feature of compiler, cause "%*" doesn't affected by "@shift 1" command, which added to the begining of the compiled batch file. :(
Post Reply