Note that there are some explanatory texts on larger screens.

plurals
  1. POcan't show dialog in WiX installer
    primarykey
    data
    text
    <p>I'm modifying default FireBreath WiX script to show simple message after installation is complete. Because sometimes it is so quick, user doesn't get a chance to notice it.</p> <p>I have this wxs file</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"&gt; &lt;Product Id="*" "&gt; &lt;Package ... /&gt; &lt;Upgrade Id="{369b048a-9f97-5e15-8ce3-c983fa5764d3}"&gt; &lt;UpgradeVersion Property="OLD_VERSION_FOUND" Minimum="0.0.1" IncludeMinimum="yes" Maximum="0.3.3.3" IncludeMaximum="yes" OnlyDetect="no" IgnoreRemoveFailure="yes" MigrateFeatures="yes" /&gt; &lt;/Upgrade&gt; &lt;Property Id="MSIRESTARTMANAGERCONTROL" Value="Disable" /&gt; &lt;InstallExecuteSequence&gt; &lt;RemoveExistingProducts After="InstallInitialize" /&gt; &lt;InstallExecute After="RemoveExistingProducts" /&gt; &lt;/InstallExecuteSequence&gt; &lt;Directory Id="TARGETDIR" Name="SourceDir"&gt; ... &lt;/Directory&gt; &lt;Feature Id="MainPluginFeature" Title="Plugin" Level="1"&gt; &lt;ComponentRef Id="InstallDirComp"/&gt; &lt;ComponentRef Id="PluginNameDirComp"/&gt; &lt;ComponentRef Id="CompanyDirComp"/&gt; &lt;ComponentGroupRef Id="PluginDLLGroup"/&gt; &lt;/Feature&gt; &lt;UI&gt; &lt;Property Id="DefaultUIFont"&gt;DlgFont10&lt;/Property&gt; &lt;TextStyle Id="DlgFont10" FaceName="Tahoma" Size="10" /&gt; &lt;Dialog Id="CompleteDlg" Width="370" Height="270" Title="Plugin installed"&gt; &lt;Control Id="Description" Type="Text" X="50" Y="70" Width="220" Height="80" Text="Installation complete, return to web browser." /&gt; &lt;Control Id="Finish" Type="PushButton" X="180" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="OK"&gt; &lt;Publish Event="EndDialog" Value="Exit" /&gt; &lt;/Control&gt; &lt;/Dialog&gt; &lt;InstallUISequence&gt; &lt;Show Dialog="CompleteDlg" OnExit="success" /&gt; &lt;/InstallUISequence&gt; &lt;AdminUISequence&gt; &lt;Show Dialog="CompleteDlg" OnExit="success" /&gt; &lt;/AdminUISequence&gt; &lt;/UI&gt; &lt;/Product&gt; &lt;/Wix&gt; </code></pre> <p>but when I build it, I get these error messages<br> Error 2 error LGHT0204 : ICE20: Standard Dialog: 'FilesInUse' not found in Dialog table<br> Error 3 error LGHT0204 : ICE20: ErrorDialog Property not specified in Property table. Required property for determining the name of your ErrorDialog<br> Error 4 error LGHT0204 : ICE20: FatalError dialog/action not found in 'InstallUISequence' Sequence Table.<br> Error 5 error LGHT0204 : ICE20: FatalError dialog/action not found in 'AdminUISequence' Sequence Table.<br> Error 6 error LGHT0204 : ICE20: UserExit dialog/action not found in 'InstallUISequence' Sequence Table.<br> Error 7 error LGHT0204 : ICE20: UserExit dialog/action not found in 'AdminUISequence' Sequence Table.<br> <br> I don't need any other dialogs, only this one. How to fix this? Can I just ignore these messages?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload