我尝试从https://technet.microsoft.com/en-us/sysinternals/dd996900.aspx安装 procdump 工具
当我打开命令窗口并运行 procdump exe 时:
procdump.exe -g -e -w -ma test.exe
它只是显示等待进程名称 test.exe
它根本不创建任何转储文件。
任何帮助将不胜感激。
我尝试从https://technet.microsoft.com/en-us/sysinternals/dd996900.aspx安装 procdump 工具
当我打开命令窗口并运行 procdump exe 时:
procdump.exe -g -e -w -ma test.exe
它只是显示等待进程名称 test.exe
它根本不创建任何转储文件。
任何帮助将不胜感激。
好吧,经过一些试验和错误后它工作了:下面的命令工作得很好:
procdump.exe -g -e -w -ma exename
它基本上等待进程启动,一旦进程崩溃,它就会创建一个转储。谢谢大家给我指点。我学到了一些新东西:)
使用页面包括以下选项;
-w Wait for the specified process to launch if it's not running.
-x Launch the specified image with optional arguments.
您使用的选项包括-w
但不包括-x
,因此 procdump 将等到 test.exe 运行,但不会自行启动。