Hi,
Windows Installer has its limitations when it comes to managing large file installation. We’ll explore the available options for building installers with very large resources.
Before diving into, let’s summarize the current MSI limitations. The MSI utilizes CAB (Cabinet) files as storage containers for the files it includes.
- Cab Maximum File Size: The maximum size of a CAB file is 2 GB. This limitation is imposed by the CAB file format itself.
- Installer size: The MSI with resources inside cannot exceed 2 GB and EXE with resources inside cannot exceed 4GB. This is a Windows limitation.
Here's the
Authoring Installer for Large Resources Overcoming MSI Size Limits (from a developer perspective) article that debates this subject.
Best regards,
Dan