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

前端 未结 2 604
囚心锁ツ
囚心锁ツ 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.

提交回复
热议问题