Skip to content

Instantly share code, notes, and snippets.

@netravnen
Created November 24, 2017 09:54
Show Gist options
  • Save netravnen/ae358b858c060b483a04baa33d5e6881 to your computer and use it in GitHub Desktop.
Save netravnen/ae358b858c060b483a04baa33d5e6881 to your computer and use it in GitHub Desktop.
:: Archive files in current dir into seperate 7z archives
:: and delete archives files afterwards.
::
:: a: create archive
:: -t7z: use 7z format
:: -sdel: delete files after archiving
:: -mx9: use highest possible compression ration
:: -mmt: use multi-threading while archiving
:: -ms: create solid archive-file
FOR %%i IN (*.*) DO 7z.exe a -t7z -sdel -mx9 -mmt -ms "%%i.7z" "%%i"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment