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"


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM