出处:https://blog.csdn.net/wwq921220/article/details/106661245/

  • 使用 tasklist :tasklist /v 很多进程还是没显示命令行参数

wmic

  • wmic process get caption,commandline /value
  • 某一个 具体的进程 命令行参数:
    • wmic process where caption="WXDrive.exe" get caption,commandline /value
    • wmic process get caption,commandline /value | findstr "WXDrive.exe"

相关文章: