Remote Windows Debugger Setting in VS2008

IT/디버깅 2014. 11. 21. 10:56 Posted by Imtraveller
반응형


아래와 같이 셋팅하고 Client에서 remote debugger설정 후 vs2008에서 F5를 누르면 자동으로 프로그램을 실행하면서 디버깅이 시작된다.






반응형

덤프 생성방법

IT/디버깅 2013. 1. 24. 10:41 Posted by Imtraveller
반응형

프로세스 덤프작성하는 방법

http://technet.microsoft.com/en-us/sysinternals/dd996900

 

 

windbg에서 덤프 생성 커맨드

.dump /ma c:\temp\user.dmp

 

 

어플리케이션 메모리 덤프관련

http://kuaaan.tistory.com/213

반응형

About Netowork debugging in Windows 8

IT/디버깅 2012. 12. 20. 14:30 Posted by Imtraveller
반응형

About Netowork debugging in Windows 8

 

http://www.sysnet.pe.kr/Default.aspx?mode=2&sub=0&detail=1&pageno=0&wid=1259&rssMode=1&wtype=0

반응형
반응형

1       Vista/win7에서 windbg에서 debug message보기 설정

HKLM\SYSTEM\CCS\Control\Session Manager\

[Key] Debug Print Filter
[Value] Default : 0xF

 

2  Windows 7에서 메모리 FullDump생성 방법과 항상 메모리 Dump를 생성하는 방법

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]

"CrashDumpEnabled"=dword:00000001

"AlwaysKeepMemoryDump"=dword:00000001

 

3  Dump관련

1.1       Dump확인 방법

Ctrix dmpchkex.exe를 실행하면 dump가 정상적인지 확인 할 수있다.

 

4. windbg에서 디버그 메세지 출력및 출력레벨 설정하기

http://www.osronline.com/article.cfm?article=295

반응형

'IT > 디버깅' 카테고리의 다른 글

Remote Windows Debugger Setting in VS2008  (0) 2014.11.21
덤프 생성방법  (0) 2013.01.24
About Netowork debugging in Windows 8  (0) 2012.12.20
프로세스 실행시 Windbg 실행하는 설정  (0) 2011.11.23
Windows Debug 설정  (0) 2011.11.22

프로세스 실행시 Windbg 실행하는 설정

IT/디버깅 2011. 11. 23. 09:45 Posted by Imtraveller
반응형
아래와 같이 프로세스명을 등록하고 스트링으로 연결항 debugger를 설정하면된다.

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\xxxx.exe]
"debugger"="C:\\WinDDK\\7600.16385.0\\Debuggers\\windbg.exe"
반응형

'IT > 디버깅' 카테고리의 다른 글

Remote Windows Debugger Setting in VS2008  (0) 2014.11.21
덤프 생성방법  (0) 2013.01.24
About Netowork debugging in Windows 8  (0) 2012.12.20
Win 7 원격디버깅을 위한 레지스트리 설정방법 등  (0) 2012.07.18
Windows Debug 설정  (0) 2011.11.22

Windows Debug 설정

IT/디버깅 2011. 11. 22. 15:37 Posted by Imtraveller
반응형
Win XP/2K3 설정
1394
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Windows Server 2003, Enterprise" 
/fastdetect /debug /debugport=1394 /CHANNEL=3


COM
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Windows Server 2003, Enterprise" 
/fastdetect /debug /debugport=COM1 baudrate=115200

Win Vista/7/...설정
추가필요함.

vmware 설정

The other end is an application


I/O mode에서 Yield CPU를 추가해주자.



windbg 바로가기 설정

반응형