我需要通过使用仅标准库在Win 10上使用PID
或Name
来获取过程信息。
这可能吗?
编辑:
我的意思是所有过程,不是当前的...
答案 0 :(得分:1)
您可以使用子流程
from subprocess import getoutput
process_info = getoutput('wmic process where "name like \'%{}%\'" get Caption,ExecutablePath,Processid,CommandLine'.format('chrome.exe'))
process_info = getoutput('wmic process where "ProcessID={}" get Caption,ExecutablePath,Processid,CommandLine'.format(14520))