I am working on a mixed-mode app (C++/CLI, C++, some C#) and when it crashes in the field a memory dump gets created. I usually get these dumps from the customer and try to figure out what went wrong.
How to ensure a dump file is written by C++ application in case of exception which is not handled. For example 开发者_运维技巧if division by zero is not handled then how do ensure Dump is written.
Background: I\'m using windbg to diagnose causes from minidumps from Microsoft\'s WinQual service. I\'ve taken the time to set things up properly with PDBs and binaries in the same path location as wh
I\'m attempting to debug a problem with a .NET service starting up. I\'m following the tip here, but I\'m having trouble getting symbols. This particularly causes a problem with debugging .NET excepti
Just started to step my kernel mode usb driver and it is in assembler. How do I configure WinDbg 开发者_C百科to c-level debugging? This is how i looks now =/
Finally found out how to make DbgPrint to really print in Win Vista/7 with: ed nt!Kd_DEFAULT_Mask 0xffffffff
I\'m writing a Kernel mode usb-driver primary for Windows Vista 32bit but hopefully it will also be able to be builded for Win XP, Win Vista, Win 7 32 and 64 bit.
I have a simple program: int ExecuteCommand(wchar_t* commandLine) { STARTUPINFO si; PROCESS_INFORMATION pi;
It's difficult to tel开发者_Python百科l what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current for
Is it possible to call managed method from windbg? Is there any .NET equivalent for .call? Or how to use it to call managed method?