windbg Questions
2
I Just want to recover crash dumps of my own 32bit applications.
I tried the following:
I followed the steps at MSDN "Collecting User-Mode Dumps":
http://msdn.microsoft.com/en-us/library/...
Labour asked 12/6, 2012 at 11:51
5
Solved
I have a ASP.net 2.0 application that I am trying to debug live using Windbg and SOS.dll.
When I attach the debugger to the process, I see it loads both 2.0 and 4.0 versions of CLR.[ mscorwks.dll a...
2
Solved
I have a crash dump from a production server that shows an OutOfMemoryException. The exception itself is not relevant here.
I happened to run a !dso to view the stack objects:
0:042> !dso
OS T...
1
IDA pro, x64Dbg, olldbg & windbg are used to Reverse Engineering purposes (as a Dissembler) and debugging.
What are the main differences between each?
Meanwhile asked 16/11, 2017 at 16:35
4
Solved
I used to debug the Windows Kernel using VirtualKD, WinDBG and a single Virtual Machine.
Recently I got a Linux machine, and now I wonder- What's the easiest way to debug the Windows Kernel when y...
Gluten asked 2/10, 2012 at 19:20
3
Solved
I have already referred to this post:
But didn't help.
Issuing
ed Kd_DEFAULT_Mask 8
didn't cause any change. and I don't know how to add a DWORD here
HKEY_LOCAL_MACHINE\SYSTEM\CurrentContro...
3
I'm getting no debug information when debugging en_windows_7_checked_build_dvd_x86_398742.
I can't see even my own trace info (ATLTRACE).
In opposite, Windows XP Checked works like a charm.
I get ...
2
In C++/Windbg, there is now Time Travel Debugging.
What is the path to do this in C#?
Note: I am looking for TTD from a C# app created in visual studio. Whether the TTD is in visual studio or in wi...
Isosceles asked 9/10, 2017 at 23:1
1
Solved
I saw it mentioned on a few resources on the web, but I cannot find it. It does not seem to be included with WinDBG distribution.
Unfaithful asked 21/9, 2017 at 21:29
1
Solved
I use windbg, to debug a simple c# application, which consits just of empty form like this:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using Sy...
5
I'm trying to use WinDBG to analyze a crash dump from one of our production machines. The root of my problem seems to be that I have a different build of the .NET framework than the production mach...
4
Solved
I'm using WinDBG occasionally to analyze problems in production environment, where VS cannot be installed. There's no doubt it's an extremely powerful tool, but using it is a bit annoying. Even tho...
Medea asked 20/7, 2009 at 13:24
0
Edit: I started asking this as a PowerShell / .Net question and couldn't find any reference to it on the internet. With feedback, it appears to be a WINAPI issue so this is an edit/rewrite/retag, b...
Atticism asked 6/8, 2017 at 3:42
2
Solved
I compile such code by GCC (v7.1.0) (command line below).
int func()
{
return 0x1234;
}
int main()
{
func();
return 0;
}
gcc .\001_simpleMain.c -O0 -m64 -g
After compilation I run WinDb...
5
Solved
I recently received a 64-bit crash dump from a customer.
Our processes are all 32-bit, but the customer's machine is running x64 Server 2008.
Visual Studio (both 2008 and 2010 Express) is telling ...
Voiceful asked 22/10, 2010 at 19:48
1
Solved
one of my python.exe (v3.5.2) process hang in remote Windows Server.
I cannot attach it from remote site so I create a full memory dump and download it back to analyze.
however, windbg doesn't hav...
1
We have a complex ASP.Net Core application using async/await pattern. The app stopped to respond recently, and we took a memory dump for it. We suspect that there is some async operation that make ...
Dunsany asked 1/6, 2017 at 15:22
2
Solved
Our WCF service hosted in IIS crashes (w3wp.exe ~ 1.6 GB) as the user load increases. We have got a dump through Debug Diag and ran this command in WinDbg. This is the output:
0:000> !address -s...
Overture asked 9/8, 2012 at 3:48
4
Solved
Background: I'm new to WinDbg and trying to get it running for the first time. I want to examine a memory dump I took from a running ASP.NET 4 site hosted in IIS 7 on Windows Server 2008 (x86) and ...
3
Have been having issues with an x64 dotnet service crashing intermittently on an application server. The service can run for hours, days, or weeks with no issue, but then fall over with not much in...
1
Solved
we have developed a UWP app which works fine on most of the devices. However, a customer has managed devices with Windows 10 1511 and the app crashes immediately after start. We are not able to att...
Americanize asked 21/4, 2017 at 10:36
1
I saw in a video talk by Bart de Smet where he was running Windbg commands by typing them into the Immediate Window in Visual Studio when running the project in debug mode inside the Visual Studio ...
Herrin asked 7/4, 2017 at 21:21
1
Assume a remote site gets a rare error but doesn't crash the application. I would still like to create a mini dump file when this happens so I have some information to work with, mainly the call st...
Imminent asked 3/4, 2017 at 20:43
4
Solved
Recently our application encountered a strange problem.
The application has a win32 window in the WPF window,
when resize the WPF window, the problem occurred.
StackTrace:
Exception object: 000...
Freckle asked 22/12, 2009 at 6:50
1
Solved
Is there any way to redirect a command output to clipboard in WinDbg similar to
<command> | clip
© 2022 - 2024 — McMap. All rights reserved.