安装 SQL Server 2008 R2 和 SQL Server 2008 R2安装期间的.Net 3.5
我需要创建一个安装程序包,该安装程序包不会安装 SQL Server 2008 R2、示例数据库、数据和 .Net 3.5 SP1 以及安装程序。
我正在使用 Visual Studio 2008。我该如何操作?
是否可以安装完整版本,而不是安装包中的快速版本?
I need to create a setup package that will not install SQL Server 2008 R2, a sample database, data and .Net 3.5 SP1 along with a setup installation.
I am using Visual Studio 2008. How do i do this?
Is it possible to install the full version, not express from setup package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其他安装程序添加到安装包中;然而,通常不习惯为 SQL Server 包含一个版本,原因如下:
1、如果他们安装了不同的版本(即您正在安装 SQL Standard,而他们已经有可用的 SQL Enterprise)怎么办?
2、如果他们希望使用另一台服务器上安装了 SQL 服务器怎么办?
3、几年后微软将发布下一版本的SQL Server,而您的软件仍在安装SQL Server 2008?
对于示例数据库和数据,只需将 SQL 添加为资源,然后让应用程序在首次执行时运行脚本。
You can add other installers to setup packages; however it isn't normally customary to include one for SQL Server for the following reasons:
1, What if they have a different version installed (i.e. you are installing SQL Standard and they already have SQL Enterprise available)?
2, What if they have a SQL server installed on another server that they wish to use?
3, In a couple of years time Microsoft release the next version of SQL server and your software is still installing SQL Server 2008?
For the sample database and data just add the SQL in as a resource and get the app to run the script on first execution.