windows查看后台执行中的python或bat脚本:
wmic process where caption="test.bat" get processid,commandline | findstr /v findstr
# win10前的系统可以用一下命令:
wmic process get commandline,processid | findstr test.bat | findstr /v findstr<details>
标签:findstr,bat,查看,get,Windows,process,test,wmic,进程
From: https://www.cnblogs.com/HJ-study/p/17390193.html