- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- ISDEV : fatal error -5023: Error building table File
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Hello,
We are getting the following error during the build:
ISDEV : fatal error -5023: Error building table File
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
This error can be thrown if the number of files exceeds 32,767.
Windows Installer only supports 32,767 files in the file table, and therefore the error is thrown as the table is unable to build anything bigger.
There are ways to manually modify the schema of the MSI database to allow larger numbers and instructions on how to do so can be found here :
https://docs.microsoft.com/en-gb/windows/win32/msi/authoring-a-large-package?redirectedfrom=MSDN
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
This error can be thrown if the number of files exceeds 32,767.
Windows Installer only supports 32,767 files in the file table, and therefore the error is thrown as the table is unable to build anything bigger.
There are ways to manually modify the schema of the MSI database to allow larger numbers and instructions on how to do so can be found here :
https://docs.microsoft.com/en-gb/windows/win32/msi/authoring-a-large-package?redirectedfrom=MSDN
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
@shunt wrote:This error can be thrown if the number of files exceeds 32,767.
Windows Installer only supports 32,767 files in the file table, and therefore the error is thrown as the table is unable to build anything bigger.
There are ways to manually modify the schema of the MSI database to allow larger numbers and instructions on how to do so can be found here : io games
https://docs.microsoft.com/en-gb/windows/win32/msi/authoring-a-large-package?redirectedfrom=MSDN
Thank you very much for posting this, I got it working.