Reputation: 11
I learned about DiskSpanning
and that it is required for larger file sizes. I however just want to compile my files into a single installation file. What I got was an application installer and 9 bin files of 2Gb each.
Is it possible to have all this contained into a single installer?
I am attempting to take several game pak files and create an installer with them.
[Setup]
Compression=lzma
SolidCompression=yes
WizardStyle=modern
DiskSpanning=yes
SlicesPerDisk=1
DiskSliceSize=max
Upvotes: 1
Views: 4014
Reputation: 59303
It is not possible.
The documentation says:
Note that it is required that you set this directive to yes if the compressed size of your installation exceeds 2,100,000,000 bytes, even if you don't intend to place the installation onto multiple disks.
2 GB is also the maximum size you can get per file.
Valid values: 262144 through 2100000000, or max
If you're worried that someone might miss copying some files, you might try a self extracting ZIP archive, e.g. using 7zip SFX Builder.
Upvotes: 2