wix installer ice03 Invalid Language Id

ICE rules are Internal Consistency Evaluators – essentially a series of self-diagnosis scripts checking database
referential integrity
, database consistency, data type and schema
compliance
as well as running several content validation tests or
logical tests on the whole MSI (which is really an MS-SQL database in disguise).

DB Integrity: In other words you check the content of the database against the database schema and a number of content validation rules and determine if the database is objectively speaking containing what it is supposed to, and that it is connected in correct ways.

Sanity-Checks: Some further checks move beyond simple schema and type checking and perform sanity-checks relating to how the application is actually being installed. Certain files should not go to certain locations, some registry keys should never be written to, and similar checks. Custom checks can be created and added as QA steps for corporate deployment.

Custom Actions: The checks are written as custom actions (essentially MSI’s mechanism for running executable, custom installation logic during installation) and inspect and evaluate the database during a Validation run. The Windows SDK tool Orca is capable of running validation on any MSI file as illustrated in this picture:

ICE

ICE3: Your particular error message relates to ICE03 – it checks several different things, but this checkpoint is relevant here (please visit the link to see what else it checks):

Invalid Language Id – The database contains an invalid numeric Language Identifier (LANGID). See the Language data type. See Language Identifier Constants and Strings. For example, 1033 for the U.S. and 0 for language neutral.

In your case you need to remove the language specifier altogether if the file is language neutral, or fix your WiX source file to set an appropriate language code. Here is an example from the MSI file installing Orca (1033 is English, most files are unspecified, meaning they are language neutral):

Orca


Links:

Leave a Comment