#151 Script to create multi-volume rar archive with a specific size of each volume.
I request 3GB for each volume.
Create a bat file with the following code:
1 | SET WINRAR = "C:\Program Files\WinRAR" |
2 | for / D % % f in ( "D:\create_rars\*" ) do ( |
3 | % WINRAR % \RAR.exe a - ep1 - r - v3G - idcdp - t - df "D:\create_rars\%%~nxf.rar" "%%f" |
4 | ) |
Recent Comments