i'm using these lines to extract all JAR files in a folder, destination can be the same one :
<b>set SEVENZIP_EXE=C:\Program Files\7-Zip\<br>
set INPUT_FOLDER=D:\jar
for /f "tokens=1-2 delims=. " %%a in ('dir *.jar /a-d/b') do "%SEVENZIP_EXE%" x -aoa -o"%INPUT_FOLDER%" %%a.%%b
But all what i got is : %%a was unexpected at this time. !!
any suggestion ?
Thanks