'How to get the process name from a Windows dump file?

If I open a .dmp file with Visual Studio, I am presented with a summary about the dump:

enter image description here

Is there a way I can access the value for the "Process Name" field through the command line (i.e. a tool like windbg.exe, dumpbin.exe)?



Solution 1:[1]

Run !analyze -v, in the output, you can see process name listed- For example: PROCESS_NAME: RuntimeBroker.exe

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Praveen Patel