Archive to Multiple Archives

Is it possible to make DOpus archive multiple folders to multiple archives? For example.

Folder 1
Folder 2
Folder 3
Folder 4

Will archive to

Folder 1.rar
Folder 2.rar
Folder 3.rar
Folder 4.rar

Or they will archive to whatever format I have chosen e.g. ,.zip .rar .cbr .7z etc

This script is currently the best method:

Any Idea how I could modify the script to have more than just .zip archiving? I want to setup a couple of separate button for it so that I can archive multiple to .cbr .rar

The WinRAR dialog provides the option "Put each file to separate archive".

If you want a button, use winrar.exe (or 7z.exe) and {file} as the archive's name.

"C:\Program Files\WinRAR\WinRAR.exe" a {file} {filepath}

or

"C:\Program Files\7-Zip\7z.exe" a {file} {filepath}

Buttons need to be "MS-DOS Batch".

Just search & replace .zip -> .rar or whatever.