无法使用C#自动从程序文件中静默卸载程序

时间:2018-03-15 12:13:09

标签: c# automation uninstall program-files winium

如果我将同一个文件放在另一个文件夹位置,它可以正常工作。

这是我目前使用的代码

 `Process UninstallCmd = new Process();
  UninstallCmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
  UninstallCmd.StartInfo.FileName = "cmd.exe";           
  UninstallCmd.StartInfo.Arguments = "/C C:\\Program Files\\Program\\uninst.exe /S";
  UninstallCmd.StartInfo.Verb = "runas";
  UninstallCmd.Start();

0 个答案:

没有答案