我可以在没有用户交互的情况下安装 .exe 文件吗(意味着无需单击下一步或安装按钮)
我已经编写了调用 .exe 文件的代码,但是它不会在后台静默安装。
Process p = new Process();
p.StartInfo.FileName = @"C:\Downloads\teamViewer.exe";
p.StartInfo.Arguments = "/S";
p.Start();
p.StartInfo.CreateNoWindow = true;
p.WaitForExit();
为什么exe不能在后台运行,这段代码?