PowerShell杀死多个进程

时间:2014-08-28 21:18:56

标签: arrays powershell process terminate

我正在尝试通过PS完成以下操作并且遇到问题得到我需要的东西。我已经尝试了很多不同的格式来编写这个脚本,这是我认为最接近的。

我运行以下内容并且没有错误,但也没有结果。

$softwarelist = 'chrome|firefox|iexplore|opera'
get-process |
Where-Object {$_.ProcessName -eq $softwarelist} |
stop-process -force

这是我尝试的另一个例子,但是这个例子并没有终止我提供的所有过程(W8.1中的IE)。

1..50 | % {notepad;calc}

$null = Get-WmiObject win32_process -Filter "name = 'notepad.exe' OR name = 'calc.exe'" |

% { $_.Terminate() }

感谢您的帮助!

2 个答案:

答案 0 :(得分:9)

您的$softwarelist变量看起来像正则表达式,但在Where-Object条件下,您正在使用-eq运算符。我想你想要-match运营商:

$softwarelist = 'chrome|firefox|iexplore|opera'
get-process |
    Where-Object {$_.ProcessName -match $softwarelist} |
    stop-process -force

您还可以将多个流程传递到Get-Process,例如

Get-Process -Name 'chrome','firefox','iexplore','opera' | Stop-Process -Force

答案 1 :(得分:1)

# First, create an array of strings.
$array =  @("chrome","firefox","iexplore","opera")


# Next, loop through each item in your array, and stop the process.
foreach ($process in $array)
{
    Stop-Process -Name $process
}