如何在WinDbg中获取被调试者的命令行?
有没有任何扩展命令可以做到这一点?我只想整个命令行,包括所有参数。
Is there any extension command could to do so? I just want to the the whole command line including all parameters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
诸如命令行参数之类的信息存储在PEB(进程环境块)中。
您可以在此处找到常用命令列表。
!peb 将显示 PEB。
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.尝试命令
它比 !peb 简单得多
这是一个让您开始的好地方:
http://windbg.info/doc/1-common-cmds.html#2_general_cmds
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