2

我正在使用 Visual Studio 2005 安装项目为我的应用程序创建安装程序。安装项目的输出是:-Setup.exe(一个引导程序,如果它不存在,则安装.Net framework)-.Net framework 文件夹(用于通过上面的.exe 安装)-我的项目的.msi 安装(由 setup.exe 调用)

我的问题是:

有什么办法可以让我安装一个 .exe(或 msi)来完成整个安装(并封装上面提到的所有功能)?

4

3 回答 3

4

It seams that the Visual Studio installer doen't let you create a single installation file.

I finally decided to use Win-Zip self extractor to create a single installation file which extract all of the above files and run the setup.exe

于 2009-02-25T09:18:37.957 回答
1

我目前正在使用 Visual Studio 标准设置,然后将 exe 和 msi 与Make SFX结合起来,因为它支持命令行(用于自动构建)并且是免费的。

于 2010-10-20T06:31:25.887 回答
-1

SFX Compiler是一个免费程序,可为您创建自解压 .exe 文件。

于 2009-12-14T17:25:53.500 回答