gpt4 book ai didi

c# - 检查安装在 pc 和显示安装程序中的 Acrobat 阅读器

转载 作者:太空宇宙 更新时间:2023-11-03 16:48:23 25 4
gpt4 key购买 nike

我的经理询问了带有 PDF 文件的自动播放 cd 并检查用户 pc 上是否安装了 adobe acrobat是否安装在 pc 上我做得很好,但我想如果这个程序没有安装,acrobat reader 安装程序从 cd 出现,用户安装这个程序。

 public Form1()
{
RegistryKey adobe = Registry.LocalMachine.OpenSubKey("Software").OpenSubKey("Adobe");
if (adobe != null)
{
RegistryKey acroRead = adobe.OpenSubKey("Acrobat Reader");
if (acroRead != null)
{
string[] acroReadVersions = acroRead.GetSubKeyNames();
MessageBox.Show("The following version(s) of Acrobat Reader are installed: ");

foreach (string versionNumber in acroReadVersions)
{
MessageBox.Show(versionNumber);
}
}

}
else
{
MessageBox.Show("The following version(s) of Acrobat Reader arenot installed: ");

}

最佳答案

您需要调用安装程序。像这样。

Process myProcess = new Process();
myProcess.StartInfo.FileName = "path to acrobat installer";
myProcess.Start();

更好的方法是为此在您的应用程序设置中添加自定义操作。

关于c# - 检查安装在 pc 和显示安装程序中的 Acrobat 阅读器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5064026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com