Skip to content

Instantly share code, notes, and snippets.

@ScottSteiner
Created June 5, 2012 03:06
Show Gist options
  • Save ScottSteiner/2872330 to your computer and use it in GitHub Desktop.
Save ScottSteiner/2872330 to your computer and use it in GitHub Desktop.
Zips subdirectories into zips using 7-Zip
@echo off
cd %1
for /D %%i in (*) do cd %%i && 7z a -r "..\%%i.zip" * && cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment