No you can't . For example, if I want to look at *all threads*, I can do a
~* kb. All these are commands that you dont have in cordbg

Signature
Sriram Krishnan
http://www.dotnetjunkies.com/weblog/sriram
> You should be able to do that kind of thing with cordbg. See
> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptools/html/cp
grfruntimedebuggercordbgexe.asp
[quoted text clipped - 62 lines]
>> >> and
>> >> havent put up for download yet?
Hi Sriram,
The symbols for .NET 1.1 SP1 would indeed be different than those for
.NET 1.1 gold--any time you do a new build, the symbols change even if you
made no source changes. However they should be on the public symbol server,
and in fact I'm able to load the symbols for mscorwks.dll (1.1.4322.2022)
on my 1.1 SP1 machine with the public symbol server.
Some questions:
1. What's the version of mscorwks? ("lmv m mscorwks" will show you) It may
be that particular version is somehow not on the server. (If that's the
case, we'll get it up there)
2. Will symbols load from the symbol server for any other Microsoft dlls?
(".reload /f" will force loading of all symbols, then "lm" again to see if,
for example, "ntdll" has symbols loaded) If they don't, there's something
wonky with the symbol path
Jonathan
PS Here's an example of what I tried on my machine, and the results of
successfully loading symbols from the public symbol server:
CommandLine: C:\temp\test.exe
Symbol search path is: C:\Program Files\Microsoft Visual Studio .NET
2003\SDK\v1.1\symbols;C:\temp;srv*C:\temp*http://msdl.microsoft.com/download
/symbols
Executable search path is:
ModLoad: 00400000 00408000 test.exe
ModLoad: 77f50000 77ff7000 ntdll.dll
ModLoad: 79170000 79196000 C:\WINDOWS\system32\mscoree.dll
ModLoad: 77e60000 77f46000 C:\WINDOWS\system32\KERNEL32.dll
ModLoad: 77dd0000 77e5d000 C:\WINDOWS\system32\ADVAPI32.dll
ModLoad: 78000000 78087000 C:\WINDOWS\system32\RPCRT4.dll
(d20.d58): Break instruction exception - code 80000003 (first chance)
eax=00241eb4 ebx=7ffdf000 ecx=00000000 edx=77f51301 esi=00241eb4
edi=00241f48
eip=77f75a58 esp=0012fb38 ebp=0012fc2c iopl=0 nv up ei pl nz na pe
nc
cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000
efl=00000202
ntdll!DbgBreakPoint:
77f75a58 cc int 3
0:000> .sympath
Symbol search path is: C:\Program Files\Microsoft Visual Studio .NET
2003\SDK\v1.1\symbols;C:\temp;srv*C:\temp*http://msdl.microsoft.com/download
/symbols
0:000> sxe ld mscorwks
0:000> g
ModLoad: 70a70000 70ad9000 C:\WINDOWS\system32\SHLWAPI.dll
ModLoad: 7f000000 7f041000 C:\WINDOWS\system32\GDI32.dll
ModLoad: 77d40000 77dcc000 C:\WINDOWS\system32\USER32.dll
ModLoad: 77c10000 77c63000 C:\WINDOWS\system32\msvcrt.dll
ModLoad: 791b0000 79416000
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorwks.dll
eax=00000000 ebx=00000000 ecx=008f0000 edx=00000000 esi=00000000
edi=00000000
eip=7ffe0304 esp=0012f230 ebp=0012f32c iopl=0 nv up ei pl nz na pe
nc
cs=001b ss=0023 ds=0023 es=0023 fs=0038 gs=0000
efl=00000202
SharedUserData!SystemCallStub+0x4:
7ffe0304 c3 ret
0:000> lm
start end module name
00400000 00408000 test (deferred)
70a70000 70ad9000 SHLWAPI (deferred)
77c10000 77c63000 msvcrt (deferred)
77d40000 77dcc000 USER32 (deferred)
77dd0000 77e5d000 ADVAPI32 (deferred)
77e60000 77f46000 KERNEL32 (deferred)
77f50000 77ff7000 ntdll (pdb symbols)
C:\temp\ntdll.pdb\3E7B64D65\ntdll.pdb
78000000 78087000 RPCRT4 (deferred)
79170000 79196000 mscoree (deferred)
791b0000 79416000 mscorwks (deferred)
7f000000 7f041000 GDI32 (deferred)
0:000> .reload /f
Reloading current modules
.*** WARNING: Unable to verify checksum for test.exe
.........
0:000> lm
start end module name
00400000 00408000 test C (private pdb symbols) C:\temp\test.pdb
70a70000 70ad9000 SHLWAPI (pdb symbols)
C:\temp\shlwapi.pdb\41264DB72\shlwapi.pdb
77c10000 77c63000 msvcrt (pdb symbols)
C:\temp\msvcrt.pdb\3D6DD5921\msvcrt.pdb
77d40000 77dcc000 USER32 (pdb symbols)
C:\temp\user32.pdb\40D1D36E2\user32.pdb
77dd0000 77e5d000 ADVAPI32 (pdb symbols)
C:\temp\advapi32.pdb\3D6DE4CE2\advapi32.pdb
77e60000 77f46000 KERNEL32 (pdb symbols)
C:\temp\kernel32.pdb\40D1D0C52\kernel32.pdb
77f50000 77ff7000 ntdll (pdb symbols)
C:\temp\ntdll.pdb\3E7B64D65\ntdll.pdb
78000000 78087000 RPCRT4 (pdb symbols)
C:\temp\rpcrt4.pdb\404930602\rpcrt4.pdb
79170000 79196000 mscoree (pdb symbols)
C:\temp\mscoree.pdb\3B73BB37717C44EC9199E94AC211B20D2\mscoree.pdb
791b0000 79416000 mscorwks (pdb symbols)
C:\temp\mscorwks.pdb\BF456C8C181A446D9ADACE31D7CAB2BD2\mscorwks.pdb
7f000000 7f041000 GDI32 (pdb symbols)
C:\temp\gdi32.pdb\40D1D0CB2\gdi32.pdb
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "Sriram Krishnan" <ksriram@NOSPAMgmx.net>
| References: <uG6mugStEHA.1452@TK2MSFTNGP11.phx.gbl>
<EF124DCB-96A3-423A-A5A2-D586D90F3C6D@microsoft.com>
<#77jR#UtEHA.2668@TK2MSFTNGP12.phx.gbl>
<458338C0-9AE7-4346-AF1F-81CFEED5E35A@microsoft.com>
| Subject: Re: Problem with symbols for mscorwks.dll .NET 1.1 SP!
| Date: Tue, 19 Oct 2004 02:13:08 +0530
[quoted text clipped - 8 lines]
| NNTP-Posting-Host: 61.8.144.98
| Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP11
.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.clr:12015
| X-Tomcat-NG: microsoft.public.dotnet.framework.clr
[quoted text clipped - 3 lines]
|
| > You should be able to do that kind of thing with cordbg. See
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptools/htm
l/cpgrfruntimedebuggercordbgexe.asp
| > for info on cordbg commands.
| >
[quoted text clipped - 51 lines]
| >> >>
| >> >> F:\Program Files\Microsoft Visual Studio .NET
2003\SDK\v1.1\symbols;F:\symbols;srv*F:\symbols*http://msdl.microsoft.com/do
wnload/symbols;
| >> >> Am I missing something basic here? Very possible as I'm a newbie to
| >> >> WinDBG
[quoted text clipped - 3 lines]
| >> >> and
| >> >> havent put up for download yet?
Sriram Krishnan - 28 Oct 2004 21:01 GMT
Thanks for the response. I had resolved this thanks to a post from the
Windbg group where they advised me to download everything from the Symbol
server instead of relying on the local cache

Signature
Sriram Krishnan
http://www.dotnetjunkies.com/weblog/sriram
> Hi Sriram,
> The symbols for .NET 1.1 SP1 would indeed be different than those for
[quoted text clipped - 222 lines]
> | >> >> and
> | >> >> havent put up for download yet?