I need this because I want to write out a block of memory from my process to disk, which it seems MSVC won't do, but WinDbg with .writemem .
Another question is : how do I get a *full* crash dump of a process? (with all its memory). If you use "write crash dump" from MSVC, it only writes a "minidump" which is just registers, call stack, that kind of stuff.
WinDbg can write a full crash dump very easily (with .dump) , but I can't figure out how to change debuggers.
I can't answer the first question.
ReplyDeleteBut you can write a full dump from VS, from Debug>Save Dump As..., and then on the bottom drop down list select Minidump with Heap.
Ah, the "Save as type" drop down menu! Yep that does it. Thanks.
ReplyDelete