1

我正在尝试创建一个后台工作人员来创建一个进程,该进程会执行一些 ovf 命令。在这两者之间,我尝试通过发送 ctrl+c 来中止操作。这个网站上有类似的问题,但没有一个解决了这个问题。

private void DeployOVF()
{
    p = new Process();
    ProcessStartInfo pi = new ProcessStartInfo("ovftool.exe", "--machineOutput "+ FileName + " vi://uname:pwd@Ip Address");
    pi.UseShellExecute = false;
    pi.RedirectStandardOutput = true;
    pi.RedirectStandardInput = true;
    pi.RedirectStandardError = true;
    pi.CreateNoWindow = true;
    p.StartInfo = pi;
    p.Start();
    StreamReader myStreamReader = p.StandardOutput;
    string myString;
    bool progressStarted = false;
    while ((myString = myStreamReader.ReadLine()) != null)
    {
        //Logic to display the progress
    }
    p.WaitForExit();
    p.Close();
}

这是我发送我的 ctrl+c 以中止进度的地方,

private void button1_Click(object sender, EventArgs e)
{
    p.StandardInput.Write("\x3");
    p.StandardInput.Close();
}
4

1 回答 1

1

如果进程正在响应(即它的前台线程正在响应信号),那么您应该使用:

p.CloseMainWindow();

如果没有,您应该能够(不干净地)中止该过程Kill

p.Kill();

//Then wait for the process to end
p.WaitForExit();
p.Close();
于 2013-01-23T09:42:32.910 回答