I have multiple folders where each folder got a zip file and i have a zip file extracting utility.this utility is command line based.i have tried the below, i want the batch to extract files in all folders.
for /f %%a in ('DIR g:\folder\ /b') do ( CD %%a
g:\utility\7za e file_%%a.zip
)
Thanks