部署问题-需要自定义安装文件-VS2010

发布于 2024-11-18 06:34:16 字数 184 浏览 4 评论 0原文

我有 4 个不同的 Outlook 插件,我想通过让用户在安装过程中选择他们需要的任何插件来将其放在一个安装文件中。

我如何在 Visual Studio Tools 2010 中执行此操作。

到目前为止,我已经创建了一个安装文件,它将一次性安装所有 4 个插件。

推进此问题需要任何类型的设置链接或提示。

I have 4 different outlook addins and I want to make it in a single setup file by giving the user the option to select whatever addin they need during the installation.

How can I do this in Visual Studio Tools 2010.

As of now, I have created a setup file, which will install all the 4 addins at one single go.

Any kind of links to these kind of setup, or tips are needed in moving forward this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

天暗了我发光 2024-11-25 06:34:16

Visual Studio 不支持此功能。您需要一个设置创作工具,它允许您使用自定义功能并使用这些功能组织您的资源。对话框编辑器也会有所帮助。

以下是一般方法:

  • 创建 4 个功能,每个插件一个 将
  • 每个插件资源移动到其功能中
  • 使用安装类型对话框(典型、自定义和完整选项)以允许用户选择他想要的功能(
  • 如果您是安装创作工具)使用有一个对话框编辑器,您可以使用自定义对话框而不是设置类型对话框(例如每个插件的按钮而不是功能树)

如果您想要免费的解决方案,您可以尝试 WiX。它的学习曲线很陡峭,但你可以用它做你想做的事。商业解决方案更易于使用,但您必须购买许可证。如果您需要一些建议,请告诉我。

Visual Studio doesn't support this. You need a setup authoring tool which allows you to use custom features and organize your resources using those features. A dialog editor would also help.

Here is the general approach:

  • create 4 features, one for each addin
  • move each addin resources into it's feature
  • use setup type dialog (Typical, Custom and Complete options) to allow the user to select the features he wants
  • if the setup authoring tool you are using has a dialog editor, you can use a custom dialog instead of setup type dialog (for example a button for each addin instead of a feature tree)

If you want a free solution, you can try WiX. It has a steep learning curve, but you can do what you want with it. A commercial solution is easier to use, but you have to purchase a license. Let me know if you want some recommendations.

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