从 VS 安装项目安装 SQL Server Express 2005 - 命名实例
我正在从 Visual Studio 2008 安装项目安装 SQL Server Express 2005。
这工作正常并安装实例“SQLExpress”。
有谁知道是否可以通过某种命令行来安装或更改属性以赋予其不同的实例名称?
I'm installing SQL Server Express 2005 from my Visual Studio 2008 setup project.
This works fine and installs the instance "SQLExpress".
Does anyone know if you can pass it some kind of command line to install or change a property to give it a different instance name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您从安装程序调用 SQL Server 的 setup.exe,我相信您可以将实例名称作为参数传递,如下所示:
setup.exe INSTANCENAME=YourInstance
请参阅此处了解更多信息:http://technet.microsoft.com/en-us/library/ ms144259(SQL.90).aspx
If you are calling out to SQL Server's setup.exe from your installer I believe you can pass the instance name as an argument, like this:
setup.exe INSTANCENAME=YourInstance
See here for more info: http://technet.microsoft.com/en-us/library/ms144259(SQL.90).aspx
请参阅这篇文章,了解如何编辑在安装过程中安装 SQL 的引导程序。确实有一个 INSTANCENAME 属性(您还可以传递 DEFAULTDATABASE 和各种有用的命令行参数)。
http:// /www.windowsdevelop.com/clickonce-setup--deployment-projects/generic-bootstrapper--sql-express-named-instance-18693.shtml
See this article on how to edit the bootstrapper that installs SQL as part of the setup. There is indeed an INSTANCENAME attribute (and you can also pass DEFAULTDATABASE and all sorts of useful command line parameters).
http://www.windowsdevelop.com/clickonce-setup--deployment-projects/generic-bootstrapper--sql-express-named-instance-18693.shtml