在Windows批处理脚本中,有启动命令,它启动一个新进程。
是否有可能刚刚启动过程的PID?
你可以批量但不是直接说。您需要解析tasklist.exe的输出或使用wmic.exe。两者都要求你知道你刚开始做什么,当然你会。
原文链接:https://www.f2er.com/windows/372266.html使用tasklist.exe:
for /F "TOKENS=1,2,*" %a in ('tasklist /FI "IMAGENAME eq powershell.exe"') do set MyPID=%b echo %MyPID%
要在批处理脚本中使用它,请将百分号加倍。
使用wmic.exe:
for /f "TOKENS=1" %a in ('wmic PROCESS where "Name='powershell.exe'" get ProcessID ^| findstr [0-9]') do set MyPID=%a echo %MyPID%