I want to make make cab file and the cab file should contain more then one files. (eg:- test.dll,ATL80.dll,Microsoft.VC80.ATL.manifest etc).
I tried below command makecab Test.dll Test.cab it works fine and adds only test.dll in the cab file. How can we add more then one file in the cab file. Is there any specific command or process to add more then one file in the cab. Please note that i do not want to use cabarc.exe to do this.
Thank you.
It is possible using makecab and a .ddf file
1. Create a ddf file with your files in it (make.ddf):
;*** Sample Source Code MakeCAB Directive file example
;
.OPTION EXPLICIT ; Generate errors
.Set CabinetNameTemplate=ThyName.cab
.Set Cabinet=on
.Set Compress=on
"test.dll"
"ATL80.dll"
"Microsoft.VC80.ATL.manifest"
;*** <the end>