您好 我用c#编写了一个程序。此程序以管理模式运行,在执行期间调用另一个程序(blur.exe)。不应该在管理模式下运行blur.exe,但由于我的程序是在管理模式下运行的,因此blur.exe也在管理模式下运行。如何在我的程序中以非管理模式运行blur.exe? 非常感谢提前
这是我的代码:
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "blur.exe";
process.StartInfo = startInfo;
process.Start();