当将Process.Start的UseshellExecute属性设置为false时,Process.Start将启动一个新进程来执
当将Process.Start的UseshellExecute属性设置为false时,Process.Start将启动一个新进程来执行指定的可执行文件,而不是使用操作系统的Shell来执行。这可能会导致一些问题,下面是可能的解决方法:
Process process = new Process();
process.StartInfo.FileName = "your_executable_file_path";
process.StartInfo.UseShellExecute = false;
process.StartInfo.WorkingDirectory = "your_working_directory";
process.Start();
Process process = new Process();
process.StartInfo.FileName = "your_executable_file_path";
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
process.Start();
string output = process.StandardOutput.ReadToEnd();
string error = process.StandardError.ReadToEnd();
process.WaitForExit();
Process process = new Process();
process.StartInfo.FileName = "your_executable_file_path";
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = false;
process.Start();
这些解决方法可能会有所帮助,但具体要根据您的具体情况来决定最合适的解决方法。
--结束END--
本文标题: C#中Process.start指定为UseShellExecute=false问题怎么解决
本文链接: https://lsjlt.com/news/570824.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0