如果我将相同的文件放在另一个文件夹位置,它工作正常。
这是我目前正在使用的代码
`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();