windows调试环境搭建,windbg

"C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\windbg.exe" -b -k com:port=\\.\pipe\com_10,baud=115200,pipe
bcdedit /dbgsettings serial baudrate:115200 debugport:1
bcdedit /copy "{current}" /d DebugEntry
bcdedit /debug "{ID}" ON

vmware虚拟机添加串口后,使用命名管道:
\\.\pipe\com_10
这端是服务器
另一端是应用程序

SRV*d:\symbols*http://msdl.microsoft.com/download/symbols

加载某个DLL 的时候下断点的WinDBG 命令:
sxe ld:[dll name]
卸载某个DLL 的时候下断点的WinDBG命令:
sxe ud:[dll name]

过滤垃圾信息
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Debug Print Filter]

"DEFAULT"=dword:0000000f

你可能感兴趣的:(windows调试环境搭建,windbg)