wmic process where creationclassname="win32_process" get caption,executablepath
wmic process where name="qq.exe" get executablepath
--获取进程路径。
wmic process call create "C:\Program Files\Tencent\QQ\QQ.exe"
--创建进程
本文共 260 字,大约阅读时间需要 1 分钟。
wmic process where creationclassname="win32_process" get caption,executablepath
wmic process where name="qq.exe" get executablepath
--获取进程路径。
wmic process call create "C:\Program Files\Tencent\QQ\QQ.exe"
--创建进程
转载于:https://my.oschina.net/oisanblog/blog/1574985