我尝试使用wix3.5安装server 2008 --我尝试了下面的链接来安装.Net框架3.5和4.0。
http://wix.sourceforge.net/manual-wix3/install_dotnet.htm
<BootstrapperFile Include="SQL Server 2008 Express">
<ProductName>SQL Server 2008</ProductName>
</BootstrapperFile>同样,我尝试使用上面的代码来安装sql server 2008,但是它不起作用,我知道哪里做错了。
发布于 2012-03-19 20:41:08
对于SQLServer2008Express,您需要包括Microsoft.Sql.Server.Express.10.0"
<BootstrapperFile Include="Microsoft.Sql.Server.Express.10.0">
<ProductName>SQL Server 2008</ProductName>
</BootstrapperFile>注意:我的示例来自使用VisualStudio2010(WindowsSDK7.0a)的安装。包含可能是VS 2008的Microsoft.Sql.Server.Express.9.2,但我现在无法验证这一点。
https://stackoverflow.com/questions/9639407
复制相似问题