Skip to content

Instantly share code, notes, and snippets.

@slickplaid
Last active September 11, 2017 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slickplaid/9607150f61835c67da0c18397f3ae4e7 to your computer and use it in GitHub Desktop.
Save slickplaid/9607150f61835c67da0c18397f3ae4e7 to your computer and use it in GitHub Desktop.
Quickly extract archive files
FOR /D /r %%F in ("*") DO (
pushd %CD%
cd %%F
FOR %%X in (*.rar *.zip *.001) DO (
"C:\Program Files\7-zip\7z.exe" x -aos "%%X"
)
popd
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment