Is it possible to add multiple files into .cab file with MAKECAB?
Thanks.
Saso
Multiple files in .cab file
Moderator: DosItHelp
Re: Multiple files in .cab file
try cabmaker to make multiple files into single cab!
http://www.wincert.net/forum/topic/6895 ... aker-v-33/
http://blog.bugrapostaci.com/2012/04/25 ... line-tool/
http://www.wincert.net/forum/topic/6895 ... aker-v-33/
http://blog.bugrapostaci.com/2012/04/25 ... line-tool/
Re: Multiple files in .cab file
To compress multiple files into a single CAB file, use a directive file containing a list of the files to compress and package.
http://ss64.com/nt/makecab.html
Re: Multiple files in .cab file
Code: Select all
;@echo off
;set "file_list="C:\file1";"c:\file2";"c:\file3""
;break>files
;for %%a in (%file_list%) do (
; echo %%a
;)>>files
;makecab /f "%~f0" /f files /v0 >nul
;exit /b 0
.Set DestinationDir=.
.Set DiskDirectory1=.
.Set CabinetNameTemplate=Destination.CAB
.Set Cabinet=on
.Set Compress=on
this will create Destination.CAB file with the files listed in file_list