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"
--创建进程
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