windows 进程参数查看

在windows下查看某个运行程序(或进程)的命令行参数
使用下面的命令:
wmic process get caption,commandline /value


如果想查询某一个进程的命令行参数,使用下列方式:
wmic process where caption=”svchost.exe” get caption,commandline /value
这样就可以得到进程的可执行文件位置等信息。

windows 进程参数查看

上一篇:iview的input框校验添加v-modal.number会影响校验,还是依照API使用number来转换number类型


下一篇:基于C#打造的OPCUA客户端应用