如何查看exe进程commandline参数
查看全部进程cmdline:
wmic process get caption,commandline /value
想要获取指定exe程序的cmdline, 可以将其按需要的参数运行后,查看特定进程:
wmic process where caption="1.exe" get caption,commandline /value
2023-10-26 09:38:34
如何查看exe进程commandline参数
查看全部进程cmdline:
wmic process get caption,commandline /value
想要获取指定exe程序的cmdline, 可以将其按需要的参数运行后,查看特定进程:
wmic process where caption="1.exe" get caption,commandline /value
下一篇:ubuntu 网卡实时流量查看