# 内容摘要
- PowerShell 超时退出
- PowerShell 多线程
# 1. PowerShell 多线程
-
PowerShell 超时退出
当我们重复执行某一项程序时,当程序在规定时间内没有返回结果时,我们需要杀死它以开始下一轮的迭代。这时就需要用到超时退出。在 PowerShell 脚本中又如何实现呢?
我们需要用到
Start-Process
和Wait-Process
来控制子进程的执行时间以实现超时退出。示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16for ($i=0; $i -le $max_iterations; $i++)
{
$proc = Start-Process -filePath $programtorun -ArgumentList $argumentlist -workingdirectory $programtorunpath -PassThru
# wait up to x seconds for normal termination
Wait-Process -Timeout 300 -Name $programname
# if not exited, kill process
if(!$proc.hasExited) {
echo"kill the process"
#$proc.Kill() <- not working if proc is crashed
Start-Process -filePath"taskkill.exe" -Wait -ArgumentList '/F', '/IM', $fullprogramname
}
# this is where I want to use exit code but it comes in empty
if ($proc.ExitCode -ne 0) {
# update internal error counters based on result
}
}