equal
deleted
inserted
replaced
63 ** How analyse crash. |
63 ** How analyse crash. |
64 |
64 |
65 When program crash and use enter in WinDbg execute: |
65 When program crash and use enter in WinDbg execute: |
66 |
66 |
67 !analyze -v |
67 !analyze -v |
|
68 |
|
69 ** Adding symbols from Symbol Server. |
|
70 |
|
71 Execute in WinDbg: |
|
72 |
|
73 .sympath SRV*D:\srv\symcache*http://msdl.microsoft.com/download/symbols |
|
74 |
|
75 or Ctrl+S and add: |
|
76 |
|
77 SRV*D:\srv\symcache*http://msdl.microsoft.com/download/symbols |
|
78 |
|
79 http://support.microsoft.com/kb/311503 |
|
80 Use the Microsoft Symbol Server to obtain debug symbol files |
|
81 |
|
82 ** Using the SymChk.exe utility to download symbols. |
|
83 |
|
84 symchk /r c:\windows\system32 /s SRV*c:\symbols\*http://msdl.microsoft.com/download/symbols |
68 |
85 |
69 * Running at startup. |
86 * Running at startup. |
70 |
87 |
71 HKCU\Software\Microsoft\Windows\CurrentVersion\Run |
88 HKCU\Software\Microsoft\Windows\CurrentVersion\Run |
72 Launches a program automatically when a particular user logs |
89 Launches a program automatically when a particular user logs |