在windows下查看某个运行程序(或进程)的命令行参数

    xiaoxiao2022-07-12  137

    使用下面的命令: wmic process get caption,commandline /value

    如果想查询某一个进程的命令行参数,使用下列方式: wmic process where caption="svchost.exe" get caption,commandline /value

    这样就可以得到进程的可执行文件位置等信息。

    最新回复(0)