启动进程列表,然后终止它们

时间:2017-04-10 12:50:21

标签: powershell process

使用powershell如何开始运行某些进程,然后在一段时间后终止它们?

我使用以下方法启动流程:

ps
Start-Process "notepad.exe"

1 个答案:

答案 0 :(得分:0)

使用以下内容创建名为run.ps1的文件:

$apps = New-Object System.Collections.Generic.List[Object]

$app = Start-Process "notepad.exe"  -passthru
$apps.Add($app)

$app = Start-Process "notepad.exe"  -passthru
$apps.Add($app)

Write-Host "Press any key to terminate ..."
$x = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

#Kill the running processes
foreach ($app in $apps) 
{
    Write-Host "Killing" ($app.Id -as [string])
    Stop-Process $app.Id
}

现在你可以使用:

执行它
powershell.exe -executionpolicy remotesigned -File  ./test.ps1