Reputation: 52576
Quote
Use a Windows Installer database schema of 200 or higher. Specify that version 2.0 is the minimum version of the installer required to install the package by setting the Page Count Summary property to the integer 200. Earlier Windows Installer versions reject attempts to install 64-bit packages. For 64-bit packages on the Arm64 platform, the Windows Installer database schema must be 500 or higher.
What is " Windows Installer database schema"? in context of https://learn.microsoft.com/en-us/windows/win32/msi/using-64-bit-windows-installer-packages
What is the meaning of 200
, 500
, 501
?
Upvotes: 0
Views: 633
Reputation: 52576
You can see database schema at https://learn.microsoft.com/en-us/windows/win32/msi/database-tables
Upvotes: 0
Reputation: 1079
Windows Installer database schema is minimum Windows Installer version that is required by your installation package. For a windows installer 2.0, schema value is 200. For windows installer 5.0, schema value should be 500.
If user's system has Windows installer version earlier than the specified in installer, it will display the error and exits.
Upvotes: 1