justinmassiot
5/15/2017 - 1:04 PM

Extract all the ZIP files

@echo off
REM Move to the given path
cd %1
REM Extract all archive files with 7zip
for /f %%f in ('dir /b') do (7z x -y "%%f" > nul)
REM Remove all *.zip files
del *.zip
REM Move back to the given path
cd %2