系统相关
首页 > 系统相关> > wmic 查找进程文件位置

wmic 查找进程文件位置

作者:互联网

查找进程文件位置

目录

wmic

1. 使用get查询
wmic process get name,executablepath

2 无条件查询
wmic process list brief
wmic process list full

3 加where条件查询
wmic process where name="qq.exe" get processid,executablepath,name

二、创建进程
wmic process call create  "c:\windows\system32\cmd.exe"

三、结束进程
wmic process where name="qq.exe" call terminate
wmic process where name="qq.exe" delete

标签:exe,name,get,process,查找,wmic,进程,where
来源: https://www.cnblogs.com/nsfoxer/p/14288533.html