如何创建 MFC 应用程序来运行 setup.exe(msi 安装程序)?

发布于 2024-11-09 15:22:49 字数 510 浏览 2 评论 0原文

我有 java 应用程序(.jar 文件)并创建了一个批处理文件来执行该应用程序。 另外,我使用 Visual Studio 2005 创建了一个安装项目(Setup.exe、.msi)。

但是,它需要 JRE 才能运行。我已经下载了 jre 安装程序(exe 文件),然后想通过创建一个调用两个安装程序(jre 安装程序和 Setup.exe)的简单 MFC 应用程序来捆绑它。

以下是要创建的 MFC 应用程序功能的列表:

1) 执行(双击)MFC 应用程序时,要检查 JRE 和 MFC 应用程序是否已安装。我的 Java 应用程序已经安装。

2) 如果发现安装了JRE,则获取安装路径,将其显示到MFC 的文本框,然后禁用文本框和JRE 安装按钮。如果发现已安装,则与我的 Java 应用程序相同。

3) 单击安装按钮(JRE 或我的应用程序)后,想要执行安装程序。

任何关于正确方向的指导都值得赞赏。

编辑:目标操作系统 Windows XP

I have java application (.jar files) and created a batch file to execute the application.
Also, I created a Setup project using Visual Studio 2005 (Setup.exe, .msi).

However, it requires JRE to run. I have downloaded the jre installer (exe file) then would like to bundle it by creating a simple MFC application that calls the two installer (jre installer & Setup.exe).

Here's the list of MFC application functionality that want to create:

1) Upon execution (double click) of the MFC application, want to check if the JRE & my Java application are already installed.

2) If the JRE was found installed, get the installation path, display it to MFC's textbox then disable the textbox and JRE install button. Same with my Java application if found installed.

3) Upon clicking the install button (either JRE or my application), would like to execute the installer.

Any guidance on the right direction is appreciated.

EDIT: target OS Windows XP up

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

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

发布评论

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

评论(1

败给现实 2024-11-16 15:22:49

为什么不为安装程序使用 JRE 先决条件?也许这会有所帮助:将自定义先决条件添加到 Visual Studio 设置项目

这样您就不需要启动安装程序的应用程序。

Why not use a JRE prerequisite for your installer? Perhaps this will help: Adding Custom prerequsites to visual studio setup project

This way you don't need an application which launches installers.

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