Skip to content

Instantly share code, notes, and snippets.

@darragh-murphy
Last active January 13, 2025 11:48
Show Gist options
  • Select an option

  • Save darragh-murphy/3991421b87bca6ce92796a245e596020 to your computer and use it in GitHub Desktop.

Select an option

Save darragh-murphy/3991421b87bca6ce92796a245e596020 to your computer and use it in GitHub Desktop.
Compress all the subfolders in a folder
for /d %%i in (*) do "C:\Path\To\7z.exe" a "%%i.zip" "%%i\"
for /d %i in (*) do "C:\Path\To\7z.exe" a "%i.zip" "%i\"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment