安装 SQL Server 2008 R2 和 SQL Server 2008 R2安装期间的.Net 3.5

发布于 2024-11-03 03:41:48 字数 154 浏览 0 评论 0原文

我需要创建一个安装程序包,该安装程序包不会安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舟遥客 2024-11-10 03:41:48

您可以将其他安装程序添加到安装包中;然而,通常不习惯为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文