如何查看exe进程commandline参数

如何查看exe进程commandline参数

查看全部进程cmdline:

  wmic process get caption,commandline /value

想要获取指定exe程序的cmdline, 可以将其按需要的参数运行后,查看特定进程:

  wmic process where caption="1.exe" get caption,commandline /value

原文地址:https://www.cnblogs.com/leavind/p/14652563.html