1、查找所有进程路径
wmic process where creationclassname="win32_process" get caption,executablepath
2、查找指定进程路径,不区分大小写
wmic process where creationclassname="win32_process" get caption,executablepath | findstr -i "videov"
1、查找所有进程路径
wmic process where creationclassname="win32_process" get caption,executablepath
2、查找指定进程路径,不区分大小写
wmic process where creationclassname="win32_process" get caption,executablepath | findstr -i "videov"
Mark.