Windows命令行取进程路径

获取所有进程的路径:

wmic process get ExecutablePath

获取某进程路径:

wmic process where name="qq.exe" get ExecutablePath

获取所有名称以s开头的进程 :

wmic process where "name like 's%'" get ExecutablePath

你可能感兴趣的:(Windows命令行取进程路径)