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.