如何安装引导程序和 MSI
我最近更改了产品的部署。
我以前使用过 Visual Studio 安装项目。 Visual Studio 会生成一个 Setup.exe 文件,该文件在从我的 MSI 文件安装之前安装所有必备组件(Windows Installer、.Net Framework、Visual C++ 运行时)。
不幸的是,安装项目缺少一些我需要的功能(控制服务)。我现在使用 WiX 来构建我的 MSI 文件。 Visual Studio 安装项目似乎只会为其生成的 MSI 文件创建安装程序。我无法要求安装项目从我的 WiX 生成的 MSI 文件进行安装。
如何使用 Visual Studio 2010 或第三方工具生成一个 Setup.exe 来一次性安装必备组件和我的 MSI 文件?我必须编写自己的设置应用程序才能执行此操作吗?
I recently changed my product's deployment.
I previously used a Visual Studio Setup Project. Visual Studio produces a Setup.exe file that installs all of the prerequisite components (Windows Installer, .Net Framework, Visual C++ runtime) before installing from my MSI file.
Unfortunately, the Setup Project lacks some features I require (controlling services.) I'm now using WiX to build my MSI file. It appears the Visual Studio Setup Project will only create an installer for an MSI file it generates. I can't ask the Setup Project to install from my WiX generated MSI file.
How can I, using Visual Studio 2010 or a third party tool, generate a Setup.exe that will install prerequisite components and my MSI file in one go? Do I have to write my own setup application to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 Visual Studio 引导程序。方法如下:
http://wix.sourceforge.net/manual-wix3/install_dotnet.htm
您必须执行 WiX 项目中描述的四个步骤。
还要检查一下:
Wix 和 .NET Framework(先决条件)
这是:
我需要一个可安装的 WIX Bootstrapper 项目我的软件和先决条件
Yes, you can use the Visual Studio bootstrapper. Here's how:
http://wix.sourceforge.net/manual-wix3/install_dotnet.htm
You have to do the four steps described on your WiX project.
Also check this:
Wix and .NET Framework (prerequisites)
And this:
I need a WIX Bootstrapper Project that installs MY software and prerequisites