命令行查找进程路径

1、查找所有进程路径      

wmic process where creationclassname="win32_process" get caption,executablepath


2、查找指定进程路径,不区分大小写     

wmic process where creationclassname="win32_process" get caption,executablepath | findstr -i "videov"


仅有 1 条评论