0

I am currently trying to modify one file in a .cab file and then rebuild .cab file using 'makecab.exe' with all the files including the changed one. Following is the .ddf file, I am using.

.Set CabinetNameTemplate=Documents.CAB

.Set Cabinet=on

.Set Compress=on

"00000000.000"

"10000000.000"

"20000000.000"

"30000000.000"

"40000000.000"

"manifest.xml"

The problem is that three files are generated stored in disk1,disk2 and disk3 folders. The files are trimmed to <1424kb. I want a single cab file. I have tried setting the threshold and size variables.

4

1 回答 1

3

我今天遇到了同样的问题,幸运的是我在微软页面找到了解决方案。(http://msdn.microsoft.com/en-us/library/bb417343.aspx#microsoftmakecabusersguide

您可以在 .ddf 文件中添加 maxdisksize 选项,它会起作用!

.Set MaxDiskSize=CDROM

于 2014-08-12T08:32:54.890 回答