How to get the debuggee's command line in WinDbg?

前端 未结 2 588
囚心锁ツ
囚心锁ツ 2021-01-02 16:37

Is there any extension command could to do so? I just want to the the whole command line including all parameters.

相关标签:
2条回答
  • 2021-01-02 17:12

    Information like the command line args are stored in the PEB (Process Environment Block).

    You can find a list of common commands here.

    !peb will display the PEB.

    0 讨论(0)
  • 2021-01-02 17:31

    try vercommand it's a lot simpler than !peb this is a good place to get you started: http://windbg.info/doc/1-common-cmds.html#2_general_cmds

    0 讨论(0)
提交回复
热议问题