从自定义安装程序控制 Acrobat reader 安装

发布于 2024-10-29 04:52:39 字数 283 浏览 0 评论 0原文

您好,我想做的操作如下:

我想安装一个需要 AcrobatReader MinVersion 9.0 的程序。 使用自定义安装程序,我检查目标计算机中是否存在,如果不存在,我使用 Process 类安装它。

Process.Start(@"c:\File.exe").WaitForExit();

问题是这样我没有检查安装状态。

我怎样才能找回这个状态?

在实践中,我想知道安装是否完成,以确认或卸载我的程序

提前感谢

Piercarlo

Hi the action that I want to do is Following:

I want to install a progrram that require AcrobatReader MinVersion 9.0.
With custom installer I check if exist in destination computer, if not I install it with Process class.

Process.Start(@"c:\File.exe").WaitForExit();

The problem is that in this way I haven't check of installation state.

How can I retrieve this status ?

In practice I want to know if installation done well or not to confirm or unistall my program

Thanking in advance

Piercarlo

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

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

发布评论

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

评论(1

埋情葬爱 2024-11-05 04:52:39

您不能同时运行两个 Windows 安装程序安装,因此如果您使用 Windows Installer 方法,此方法将始终失败(Adobe 使用 Windows Installer)

You can't have two windows-installer installations running at the same time, so this method will always fail if you're using Windows Installer methods (Adobe uses Windows Installer)

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