windows 下查看运行进程的命令行参数

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

tasklist

  • 使用 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"

posted on 2020-11-19 16:16  liujx2019  阅读(1288)  评论(0编辑  收藏  举报

导航