Skip to content

Instantly share code, notes, and snippets.

@rwunsch
Last active September 3, 2016 23:03
Show Gist options
  • Save rwunsch/790dc168da007a663ed80401d6b94c89 to your computer and use it in GitHub Desktop.
Save rwunsch/790dc168da007a663ed80401d6b94c89 to your computer and use it in GitHub Desktop.
Recursive Unzip files in Windows
FOR /F "usebackq" %%a in (`DIR /s /b *.zip`) do 7z.exe e %%a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment