Process.Start找不到指定的文件,但肯定有 - 为什么?

时间:2016-05-05 15:29:05

标签: c# process

我正在尝试从C#运行DJOIN命令。 (默认情况下,它出现在Win 10上的c:\ windows \ system32目录中。)

当我运行以下内容时:

ProcessStartInfo psi = new ProcessStartInfo();
psi.UseShellExecute = false;
psi.FileName = @"c:\windows\system32\djoin.exe";
psi.RedirectStandardOutput = true;
psi.Arguments = "/C toast";
using (Process proc = Process.Start(psi))
{
using (StreamReader reader = proc.StandardOutput)
{
   string result = reader.ReadToEnd();
   MessageBox.Show(result);
}

我收到“找不到文件”错误:

An unhandled exception of type 'System.ComponentModel.Win32Exception' occurred in System.dll    
Additional information: The system cannot find the file specified

enter image description here

但是,如果我使用另一个“开箱即用”.exe,例如“tasklist.exe”,它可以正常工作。 E.g:

proc.StartInfo.FileName = "tasklist.exe";

给我以下输出:

enter image description here

3 个答案:

答案 0 :(得分:1)

您还可以禁用64位操作系统的文件夹重定向

[System.Runtime.InteropServices.DllImport("Kernel32.Dll", EntryPoint = "Wow64EnableWow64FsRedirection")]
public static extern bool EnableWow64FSRedirection(bool enable);


        EnableWow64FSRedirection(false);

        try
        {
            ProcessStartInfo psi = new ProcessStartInfo();
            psi.UseShellExecute = false;
            psi.FileName = @"c:\windows\system32\djoin.exe";
            psi.RedirectStandardOutput = true;
            psi.Arguments = " /C toast ";
            using (Process proc = Process.Start(psi))
            {
                using (System.IO.StreamReader reader = proc.StandardOutput)
                {
                    string result = reader.ReadToEnd();
                    MessageBox.Show(result);
                }
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
        EnableWow64FSRedirection(true);

答案 1 :(得分:0)

原来问题是DJOIN.exe是64位的。我的应用程序是以32位运行的,因此我将平台更改为X64并且运行正常。

请参阅:Start process as 64 bit

答案 2 :(得分:-1)

尝试运行 cmd 命令,其中您的应用程序是参数。 以下适用于我:

ProcessStartInfo processInfo = new ProcessStartInfo("cmd", @"djoin.exe /C toast");

processInfo.RedirectStandardOutput = true;
processInfo.UseShellExecute = false;

Process ProcessObj = new Process();
ProcessObj.StartInfo = processInfo;

ProcessObj.Start();