Automatic account creation is now enabled. Captcha authentication required for account creation and editing unless you are trusted here.
ICE03
From WiX Wiki at MindCapers
ICE03 is often observed when using merge modules authored for older versions of Microsoft Installer. An example would be Microsoft's own merge modules for certain VB runtime components.
The message is caused by the fact that not all of the expected columns are present in the final MSI file (because they were not present in the merge module, and the merge modele is the only place that table is used).
The easiest way to resolve this is to force initialization of the table in question. This can be done using the <EnsureTable> element.
For example, if you are seeing a message like the following
error LGHT0204 : ICE03: Table: Class Column: CLSID Missing specifications in _Validation Table (or Old Database)
It can be resolved by including the following in your WiX authoring as a child of the Fragment, Module or Product element.
<EnsureTable Id="Class" />
The Id should match the name of the table from the ICE03 message.

