如何在WinDbg中获取被调试者的命令行?

发布于 2024-11-11 13:36:34 字数 40 浏览 3 评论 0原文

有没有任何扩展命令可以做到这一点?我只想整个命令行,包括所有参数。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

节枝 2024-11-18 13:36:34

诸如命令行参数之类的信息存储在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.

眼趣 2024-11-18 13:36:34

尝试命令
它比 !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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文