Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
632 B

  1. Put sceExts.dll into the NT System32 directory.
  2. Debugger extensions can be accessed by using either one of two methods:
  3. 1) Invoke ntsd normally, and refer to the dll name for
  4. each extension call.
  5. ntsd -p <processid for program>
  6. !sceExts.help
  7. !sceExts.DumpSceContext
  8. (2) Invoke ntsd with the following:
  9. ntsd -a sceExts.dll -p<processid>
  10. Then extensions can simply be referenced by name.
  11. !help
  12. !DumpSceContext
  13. NOTE: The argument order is important. I forget which way is correct.
  14. Either the -a or the -p must come first. It doesn't work the
  15. other way around.