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