Skip to content

Instantly share code, notes, and snippets.

@Drowze
Created November 3, 2015 11:49
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 Drowze/d12fd0afa2e2e11ae11c to your computer and use it in GitHub Desktop.
Save Drowze/d12fd0afa2e2e11ae11c to your computer and use it in GitHub Desktop.
Compress all files in a folder into individual 7z files
FOR %i IN (*.*) DO 7z.exe a -m0=LZMA2 -mmt=x "%~ni.7z" "%i"
where x = number of cores
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment