使用powershell如何开始运行某些进程,然后在一段时间后终止它们?
我使用以下方法启动流程:
ps
Start-Process "notepad.exe"
答案 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