Hello,
I tried to debug a .NET console app using WinDbg. I normally do this by File -> Open Executable
, then WinDbg would load up the selected exe. This was working for the .NET app mentioned. But now I get the following output every time:
Microsoft (R) Windows Debugger Version 6.11.0001.404 X86
Copyright (c) Microsoft Corporation. All rights reserved.
CommandLine: "C:\xxxxxxx\MultiTS\bin\Release\SimepleTS.exe"
Symbol search path is: D:\xxxxxx\Debug
Executable search path is:
ModLoad: 00400000 00408000 SimepleTS.exe
Unable to insert breakpoint 0 at 036a3ff7, Win32 error 0n299
"Only part of a ReadProcessMemory or WriteProcessMemory request was completed."
bp0 at 036a3ff7 failed
WaitForEvent failed
eax=00402f7e ebx=7ffd8000 ecx=7c910060 edx=7c90e920 esi=0079faa0 edi=00d4f558
eip=7c810705 esp=0012fffc ebp=7c91005d iopl=0 nv up ei pl nz na po nc
cs=001b ss=0023 ds=0023 es=0023 fs=0038 gs=0000 efl=00000200
7c810705 ?? ???
Start the app first and attach to process doesn't work too. However, opening other .NET executable, e.g. the WinForm project I have, is still working correctly.
Any clue what's wrong here?