Crash Reporting Utility for Windows 7, MFC Application -
i'm having mfc application (vs 2008) going deployed on windows 7 machine. need distribute application debugging information, debugable core generated in case of application crash event.
can please let me know how can achieve purpose ? have read minidump utility, whether there better way of generating coredump on windows 7 machine
thank you
by default, both debug , release msvc builds contain debug information. don't need distribute program .pdb files, necessary keep .pdb files every released version. necessary debug minidump files. program must generate dump files when crashes. generally, working minidumps looks this:
program crashes on client site , produces minidump file.
minidump sent developer.
developer restores source code , .pdb files according program version, , debugs minidump file.
finally, short introdunction post-mortem debugging: http://www.codeproject.com/kb/debug/postmortemdebug_standalone1.aspx
afaik, same windows versions.
Comments
Post a Comment