我想在 c# 中使用 Stop-Process 命令(PowerShell 的)。我知道如何使用“Get-Process”命令,但在停止进程的情况下,我们必须提供参数(进程名称)。就我而言,我在文本框中从用户那里获取参数。
private void button2_Click(object sender, EventArgs e)
{
PowerShell ps = PowerShell.Create();
ps.AddCommand("Stop-Process -Name " + (textBox1.Text).ToString());
ps.Invoke();
}