Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Install conditions for both SQL packages never evaluate to true. </p> <p>First of all, there are no SqlInstance, SqlServerInstalled or SQLServer2008R2Installed Burn built-in variables (please see <a href="http://wixtoolset.org/documentation/manual/v3/bundle/bundle_built_in_variables.html" rel="nofollow">documentation</a> for a full list of available ones). You need to create them manually, like you do for Netfx4FullVersion and Netfx4x64FullVersion.</p> <p>Secondly, condition expressions themselves are wrong. They will pass only if there is already SQL Server installed.</p> <p>I don't have SQL Server installed, so I'm not sure about exact searches you should perform, but they will look something like:</p> <pre><code>&lt;util:RegistrySearch Root="HKLM" Key="SYSTEM\CurrentControlSet\services\MSSQLSERVER" Result="exists" Variable="SQLServerInstalled" /&gt; &lt;util:RegistrySearch Root="HKLM" Key="SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER" Result="exists" Variable="SQLServer2008R2Installed" /&gt; </code></pre> <p>And then as your install condition use approximately this:</p> <pre><code>InstallCondition="VersionNT64 AND NOT SqlServerInstalled AND NOT SQLServer2008R2Installed" </code></pre> <p>You can also refer to this message from the original Wix mailing list for more complete example: <a href="http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Install-SQL-SERVER-2008-R2-Express-tp7585286p7585289.html" rel="nofollow">Install SQL SERVER 2008 R2 Express</a>. Unfortunately I can't post any more links cause of low reputation.</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