我想从我的应用程序中运行以下代码:
manage-bde -protectors -disable C:
如果我打开命令提示符并从那里运行(win8),它工作得很好。
但是,如果我尝试从我的应用程序运行它,我会得到:'manage-bde' is not a recognized program.
我的代码:
process1.StartInfo.RedirectStandardOutput = true;
process1.StartInfo.UseShellExecute = false;
process1.StartInfo.CreateNoWindow = false;
process1.StartInfo.FileName = @"cmd.exe";
process1.StartInfo.Arguments = @"/C manage-bde -protectors -disable C:";
process1.Start();
我错过了什么?