从自定义安装程序控制 Acrobat reader 安装
您好,我想做的操作如下:
我想安装一个需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能同时运行两个 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)