is .load not available in latest windbg

i tried to load an extension dll with this command in the latest windbg

but it seems it is not available

help files doesnt say it has been deprecated or not available on xp-sp2

am i missing something

i remember loading some extensions in w2k earlier long agao ( the oem exts
which were avilable to enumerate peb teb etc in w2k equivalent to
dt_nt!peb )

0:000> .load C:\Program Files\Debugging Tools for Windows\winext\SExt.dll
The call to LoadLibrary(C:\Program Files\Debugging Tools for
Windows\winext\SExt.dll) failed, Win32 error 126
“The specified module could not be found.”
Please check your debugger configuration and/or network access.
0:000> !SExt.load
The call to LoadLibrary(SExt) failed, Win32 error 126
“The specified module could not be found.”
Please check your debugger configuration and/or network access.
0:000> .load C:\Program Files\Debugging Tools for Windows\winext\SExt.dll
The call to LoadLibrary(C:\Program Files\Debugging Tools for
Windows\winext\SExt.dll) failed, Win32 error 126
“The specified module could not be found.”
Please check your debugger configuration and/or network access.

the file is avilable in the directory

C:\>dir /s /b SExt.dll
C:\Program Files\Debugging Tools for Windows\winext\SExt.dll

C:\>

Perhaps you are missing a dll that SExt.dll is dependant upon? Try running your debugger under the debugger with show loader snaps enabled (configure via gflags.exe) and see if anything fails to resolve when you do the `.load’.


Ken Johnson (Skywing)
Windows SDK MVP

“raj_r” wrote in message news:xxxxx@windbg…

i tried to load an extension dll with this command in the latest windbg

but it seems it is not available

help files doesnt say it has been deprecated or not available on xp-sp2

am i missing something

i remember loading some extensions in w2k earlier long agao ( the oem exts which were avilable to enumerate peb teb etc in w2k equivalent to dt_nt!peb )

0:000> .load C:\Program Files\Debugging Tools for Windows\winext\SExt.dll
The call to LoadLibrary(C:\Program Files\Debugging Tools for Windows\winext\SExt.dll) failed, Win32 error 126
“The specified module could not be found.”
Please check your debugger configuration and/or network access.
0:000> !SExt.load
The call to LoadLibrary(SExt) failed, Win32 error 126
“The specified module could not be found.”
Please check your debugger configuration and/or network access.
0:000> .load C:\Program Files\Debugging Tools for Windows\winext\SExt.dll
The call to LoadLibrary(C:\Program Files\Debugging Tools for Windows\winext\SExt.dll) failed, Win32 error 126
“The specified module could not be found.”
Please check your debugger configuration and/or network access.

the file is avilable in the directory

C:>dir /s /b SExt.dll
C:\Program Files\Debugging Tools for Windows\winext\SExt.dll
C:>

On 8/18/06, Skywing wrote:
> Perhaps you are missing a dll that SExt.dll is dependant upon? Try running
> your debugger under the debugger with show loader snaps enabled (configure
> via gflags.exe) and see if anything fails to resolve when you do the
> `.load’.
>

thanks a lot yes it needed msvcrt runtimes

and it loads now without problems