当我尝试从我的C#应用程序运行BCDEDIT时,我收到以下错误:
' BCDEDIT'不被视为内部或外部 命令, 可操作程序或批处理文件。
当我通过提升的命令行运行时,我得到了预期的结果。
我使用了以下代码:
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.FileName = @"CMD.EXE";
p.StartInfo.Arguments = @"/C bcdedit";
p.Start();
string output = p.StandardOutput.ReadToEnd();
String error = p.StandardError.ReadToEnd();
p.WaitForExit();
return output;
我也尝试过使用
p.StartInfo.FileName = @"BCDEDIT.EXE";
p.StartInfo.Arguments = @"";
我尝试了以下内容:
我的想法不多了, 我知道为什么会收到这个错误吗?
我需要的是命令的输出,如果有另一种方式可以工作。 感谢
答案 0 :(得分:14)
有一种解释是有道理的:
bcdedit.exe
中存在C:\Windows\System32
文件。C:\Windows\System32
位于您的系统路径上,但在x86进程中,您需要File System Redirector。这意味着C:\Windows\System32
实际上已解析为C:\Windows\SysWOW64
。bcdedit.exe
中没有C:\Windows\SysWOW64
的32位版本。解决方案是将您的C#计划更改为定位AnyCPU
或x64
。
答案 1 :(得分:5)
如果您在32位/ 64位Windows上遇到x86应用程序并且需要调用bcdedit命令,这里有一种方法:
private static int ExecuteBcdEdit(string arguments, out IList<string> output)
{
var cmdFullFileName = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows),
Environment.Is64BitOperatingSystem && !Environment.Is64BitProcess
? @"Sysnative\cmd.exe"
: @"System32\cmd.exe");
ProcessStartInfo psi = new ProcessStartInfo(cmdFullFileName, "/c bcdedit " + arguments) { UseShellExecute = false, RedirectStandardOutput = true };
var process = new Process { StartInfo = psi };
process.Start();
StreamReader outputReader = process.StandardOutput;
process.WaitForExit();
output = outputReader.ReadToEnd().Split(new[] { Environment.NewLine }, StringSplitOptions.None).ToList();
return process.ExitCode;
}
用法:
var returnCode = ExecuteBcdEdit("/set IgnoreAllFailures", out outputForInvestigation);
灵感来自这个帖子,How to start a 64-bit process from a 32-bit process和http://www.samlogic.net/articles/sysnative-folder-64-bit-windows.htm