我正在测试一些域名以及他们在发生异常事件时提醒我的能力。我正在使用nmap扫描域的开放端口。下面的脚本打开一个新的cmd窗口并运行nmap。我搜索进程ID并检查进程(cmd)是否仍在运行。扫描结束后,它将再次运行nmap扫描。
function nmaptest {
$prog1="cmd"
$params1=@("/C";"nmap.exe -Pn -sX 192.168.1.0/24")
Start-Process -Verb runas $prog1 $params1 #starts
}
while(1 -eq 1){
nmaptest
$processes = get-process $prog1 | out-string
$sp = $processes.Split(' ',[System.StringSplitOptions]::RemoveEmptyEntries)
$procid = $sp[22]
echo $procid
while(get-process -id $procid){ }
}
这很好用。我需要帮助的是并行执行此过程8次。 (如果可能的话)
答案 0 :(得分:4)
除非您有任何特定原因启动CMD(例如需要查看输出),否则我建议您使用作业。如果它们仍在运行,它们很容易管理和测试。
$jobs = @()
$sx = '192.168.1.0/24', 'range2', 'etc'
For ($i = 0; $i -lt $sx.Length; $i++) { $jobs += Start-Job { nmap.exe -Pn -sX $sx[i] } }
while ($true) {
For ($i = 0; $i -lt $sx.Length; $i++) {
if ($jobs[i].State -eq "Completed" {
Write-Output ("Completed job for " + $sx[i])
Receive-Job $jobs[i]
$jobs[i] = Start-Job { nmap.exe -Pn -sX $sx[i] }
}
}
Start-Sleep -s 5
}