通过C#运行时无法识别BCDEDIT

时间:2012-12-24 15:21:54

标签: c# windows

当我尝试从我的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 = @"";

我尝试了以下内容:

  1. 检查路径变量 - 它们没问题。
  2. 从提升的命令提示符运行visual studio。
  3. 放置完整路径。
  4. 我的想法不多了, 我知道为什么会收到这个错误吗?

    我需要的是命令的输出,如果有另一种方式可以工作。 感谢

2 个答案:

答案 0 :(得分:14)

有一种解释是有道理的:

  1. 您正在64位计算机上执行该程序。
  2. 您的C#程序构建为x86。
  3. bcdedit.exe中存在C:\Windows\System32文件。
  4. 虽然C:\Windows\System32位于您的系统路径上,但在x86进程中,您需要File System Redirector。这意味着C:\Windows\System32实际上已解析为C:\Windows\SysWOW64
  5. bcdedit.exe中没有C:\Windows\SysWOW64的32位版本。
  6. 解决方案是将您的C#计划更改为定位AnyCPUx64

答案 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 processhttp://www.samlogic.net/articles/sysnative-folder-64-bit-windows.htm