• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Who knows about windbg

Please dont lock this, I have yet to find anyone in other forums that know anything about windbg and hope that someone in here knows how to use it.

Ok, I have been haveing bunches of driver errors and I finally decided to get windbg to look at the dump files. Here is part of the dump file:

SYSTEM_THREAD_EXCEPTION_NOT_HANDLED (7e)
This is a very common bugcheck. Usually the exception address pinpoints
the driver/function that caused the problem. Always note this address
as well as the link date of the driver/image that contains this address.
Arguments:
Arg1: c0000005, The exception code that was not handled
Arg2: f888dac0, The address that the exception occurred at
Arg3: f8974c88, Exception Record Address
Arg4: f8974988, Context Record Address

Does anyone know how to find what driver that address is refering to using windbg?
 
It's all dynamic. You need to find out what driver is occupying that part of memory.

Usually windbg is useful when you're debugging your own driver while you're developping it - for troubleshooting a malfunctioning box or someone else's driver binary you'll find it rather useless.
 
do you know how I can find out what is in that memory address from the windbg program? I dont get bluescreens, but reboots.
 
Back
Top