草庐下载

ntsd.exe 

2023-09-05
  • 软件大小:136KB
  • 更新日期:2009/5/27
  • 软件语言:简体
  • 软件类别:exe,dll文件
  • 软件授权:共享软件
  • 软件官网:
  • 适用平台:Win2003, WinXP, WinAll

ntsd.exe可用于强制结束进程,将此文件解压在C盘windows文件夹下即可。

ntsd.exe下载,可用于强制结束进程,将此文件解压在C盘windows文件夹下即可

进程文件: ntsd or ntsd.exe
进程名称: Symbolic Debugger for Windows 。ntsd.exe是Microsoft Windows 2000系统自带的用户态调试工具。可用它结束掉除System、SMSS.EXE、CSRSS.EXE以外的所有进程。该程序经常被病毒利用,用来强制结束杀毒软件进程。

使用方法

NTSD(Microsoft Windows NT Symbolic/Systems Debugger)是Windows 2000(Microsoft Windows XP)默认安装的一

个调试器。这其实是一个命令行版本的WinDBG,功能上稍微缩了一点水,但是对一般的调试

来说是足够用了。

usage: NTSD [-v] [-2] [-d] [-o] [-g] [-G] [-w] [-lines]

[-aDllName] [-s] [-r BreakErrorLevel] [-t PrintErrorLevel]

[-hd] [-x | -xd [except#] | -xe [except#]] [-e] [-z]

[-- | -p pid | command-line]

where: -? displays this help text

-aDllName sets the default extension DLL

-c executes the following debugger command

指定要执行的调试命令,多个命令之间用“;”分隔

-d sends all debugger output to kernel debugger via DbgPrint

-g ignores initial breakpoint in debuggee

-G ignores final breakpoint at process termination

-hd disables heap manager validity checking

-i ignores AV generated by loader fixups on pre3.51 systems

-lines requests that line number information be used if present

-netsyms:{yes|no} allow or disallow loading symbols from a network path

-o debugs all processes launched by debuggee

-r specifies the (0-3) error level to break on (SeeSetErrorLevel)

-s disables lazy symbol loading

-t specifies the (0-3) error level to display (SeeSetErrorLevel)

-v enables verbose output from debugger

-n enables verbose output from symbol handler

-w specifies to debug 16 bit applications in a separate VDM

-x disables break on AV exceptions

-xd disables stopping on specified exception

-xe enables stopping on specified exception

-z reserved for OS/2 debugging

-2 creates a separate console window for debuggee

对于控制台程序,将输出定向到另一个窗口而不在NTSD窗口显示

-- is the same as -G -g -o -p -1

-p pid specifies the decimal process Id to attach to

指定要调试的进程号,用于调试已经运行的程序

command-line is the command to run under the debugger

Environment Variables:

_NT_SYMBOL_PATH=[Drive:][Path]

Specify symbol image path. (Default = %SystemRoot%)

_NT_ALT_SYMBOL_PATH=[Drive:][Path]

Specify an alternate symbol image path.

_NT_DEBUG_EXTENSIONS=dllname(s)

If specified, it is a semi-colon separated list of debugger extension DLL names

This specifies the search order when resolving debugger extension commands

A [<address>] - assemble

在指定地址输入汇编语句

BC[<bp>] - clear breakpoint(s)

清除断点

BD[<bp>] - disable breakpoint(s)

禁用断点

BE[<bp>] - enable breakpoint(s)

启用断点

BL[<bp>] - list breakpoint(s)

列出断点

BP[#] <address> - set breakpoint

设断点

C <range> <address> - compare

比较地址

D[type][<range>] - dump memory

显示指定内存范围

E[type] <address> [<list>] - enter

在指定地址输入数据

F <range> <list> - fill

在指定内存段填充数据

G [=<address> [<address>...]] - go

运行到某个地址

J<expr> [']cmd1['];[']cmd2['] - conditional execution

条件执行

K <count> - stacktrace

堆栈回溯

KB = <base> <stack> <ip> - stacktrace from specific state

L{+|-}[lost*] - Control source options

LN <expr> - list near

参数为地址或者函数,显示距离参数中指定地址或者函数最近的函数

LS[.] [<first>][,<count>] - List source file lines

LSA <addr>[,<first>][,<count>] - List source file lines at addr

LSC - Show current source file and line

LSF[-] <file> - Load or unload a source file for browsing

M <range> <address> - move

N [<radix>] - set / show radix

P[R] [=<addr>] [<value>] - program step

单步执行

Q - quit

#R - multiprocessor register dump

多处理器环境下显示寄存器

R[F][L][M <expr>] [[<reg> [= <expr>]]] - reg/flag

显示寄存器

Rm[?] [<expr>] - Control prompt register output mask

S <range> <list> - search

在指定地址范围内搜寻字符串

0:000> s 77df0000 77e4c000 ff e4 //从user32的空间中找jmp esp

77e22c29

0:000> s 77df0000 77e4c000 'W' 'I' 'N' 'N' 'T' //搜索字符串“WINNT”

SS <n | a | w> - set symbol suffix

SX [e|d [<event>|*|<expr>]] - exception

T[R] [=<address>] [<expr>] - trace

U [<range>] - unassemble

显示反汇编语句,同softice的U命令

X [<*|module>!]<*|symbol> - view symbols

显示符号,支持通配符,类似于softice的exp命令

0:000> x user32!* //显示user32的所有符号

…………

0:000> x user32!ws* //显示user32的所有以ws开头的符号

77dffa68 USER32!wsprintfW

77e0014a USER32!wsprintfA

.logopen [<file>] - open new log file

指定日志文件,开启屏幕记录非常有用的功能

.logappend [<file>] - append to log file

添加到已存在的日志文件

.logclose - close log file

停止记录

~ - list threads status

显示线程状态

~#s - set default thread

设置默认线程

~[.|#|*|ddd]f - freeze thread

~[.|#|ddd]k[expr] - backtrace stack

堆栈追踪

| - list processes status

显示进程状态

|#s - set default process

设置默认进程

|#<command> - default process override

? <expr> - display expression

显示地址或者符号信息

0:000> ? wsprintfA

Evaluate expression: 2011169098 = 77e0014a

0:000> ? eip

Evaluate expression: 2012813324 = 77f9180c

#<string> [address] - search for a string in the dissasembly

反汇编指定地址,但是只输出一行语句

$< <filename> - take input from a command file

从文件取得要输入的命令

<expr> ops: + - * / not by wo dw poi mod(%) and(&) xor(^) or(|) hi low

operands: number in current radix, public symbol, <reg>

<type> : b (byte), w (word), d[s] (doubleword [with symbols]),

a (ascii), c (dword and Char), u (unicode), l (list)

f (float), D (double), s|S (ascii/unicode string)

q (quadword)

: [(nt | <dll-name>)!]<var-name> (<var-name> can include ? and *)

<event> : ct, et, ld, av, cc

<radix> : 8, 10, 16

<reg> : $u0-$u9, $ea, $exp, $ra, $p

<addr> : %<32-bit address>

<range> : <address> <address>

: <address> L <count>

<list> : <byte> [<byte> ...]

User-mode options:

i386 options:

BA[#] <e|r|w|i><1|2|4> <addr> - addr bp

<reg> : [e]ax, [e]bx, [e]cx, [e]dx, [e]si, [e]di, [e]bp, [e]sp, [e]ip, [e]fl,

al, ah, bl, bh, cl, ch, dl, dh, cs, ds, es, fs, gs, ss

fpcw, fpsw, fptw, st0-st7, mm0-mm7

<flag> : iopl, of, df, if, tf, sf, zf, af, pf, cf

<addr> : #<16-bit protect-mode [seg:]address>,

&<V86-mode [seg:]address>

NTSD还支持一些很有用的命令,但是不知为什么帮助中却没有提,这里也列出来:

KD [<count>] - stack trace with raw data

raw模式堆栈回溯

SQ - set quiet mode

设置安静模式,运行一次打开,再运行则关闭

LD [<module>] - refresh module information

重新载入

LM list modules

列出进程加载的所有模块信息

DL <address> <maxcount> <size> - dump linked list

NTSD支持的表达式和WinDBG差不多是一样的,MASM的语法。

系统自带的NTSD也支持部分扩展命令,如:

!peb

!teb

英文版本

进程文件: ntsd.exe or ntsd

进程名称: Symbolic Debugger for Windows

描述:

ntsd.exe is a process belonging to the Microsoft symbolic debugger that enables you to debug user-mode applications. This program is a non-essential process, but should not be terminated unless suspected to be causing problems.

Recommendation for ntsd.exe:

ntsd.exe should not be disabled, required for essential applications to work properly.

Author: Microsoft

Part Of: Microsoft Windows Operating System

安全等级 (0-5): 0

间谍软件: No

病毒: No ( Remove ntsd.exe )

木马: No ( Remove ntsd.exe )

Memory Usage: N/A

System Process: Yes

Background Process: No

Uses Network: No

Hardware Related: No

Common ntsd.exe Errors: N/A

问题描述编辑

出现提示缺少exe文件问题的大部分原因是因该文件被木马病毒破坏导致系统程序找不到此文件,出现错误提示框,或程序无法运行,解决此问题下载本站的exe文件,下载该文件后,找到适合程序的文件版本,复制到相应目录。即可解决。

1、Windows 95/98/Me系统,则复制到C:\WINdows\system32\ 目录下。

2、Windows NT/2000系统,则复制到C:\WINNT\system32\ 目录下。

3、Windows XP系统,则复制到C:\WINdows\system32\ 目录下。

4、Windows 7/8系统,则复制到C:\WINdows\system32\目录下。

点击下载

有关ntsd.exe 的更多相关下载软件

  1. Safari(苹果浏览器) V4.0.5 绿色版 - 2

    软件大小:26.0M更新日期:2023/12/27软件语言:简体软件类别:浏览器类软件授权:免费软件软件官网:暂无适用平台:WinXPApple发布最快Windows平台浏览器,根据Apple所说,针对Windows平台的Safari浏览器称为Safari3,这是目前在windows平台上速度最快的浏览器,业界标准iBech测试显示,Safari浏览网页速度是IE7的两倍,Firef。Apple发布最快Windows平台浏览器,根据Apple所说,针对Windows平台的Safari浏览器称为Safari3,这是目前在windows平台上速度最快的浏览器,业界标准iBech测试显示,Safar

  2. 迷你桌面股票小工具 v4.0免费版 - 2

    软件大小:8.7M更新日期:2023/12/23软件语言:简体软件类别:股票软件软件授权:免费软件软件官网:暂无适用平台:WinAll迷你桌面股票小工具是一款网友开发打造的实用股票行情小工具,软件可以在您的电脑桌面上增加一个看股票行情的小窗口,非常迷你,从远处看根本看不出来,用户可以自行导入股票代码让它显示。  迷你桌面股票小工具是一款网友开发打造的实用股票行情小工具,软件可以在您的电脑桌面上增加一个看股票行情的小窗口,非常迷你,从远处看根本看不出来,用户可以自行导入股票代码让它显示。使用方法  运行需要两个文件: main_exe文件+config.ini配置文件。  运行config.in

  3. 傲游(Maxthon) 2.5.4.159精简绿色版 - 2

    软件大小:3.9M更新日期:2023/12/25软件语言:简体软件类别:浏览器类软件授权:共享软件软件官网:http://www.maxthon.com适用平台:WinXP傲游Maxthon是一款基于IE内核的、多功能、个性化多页面浏览器.。         傲游(Maxthon)是一款基于IE内核的、多功能、个性化多页面浏览器.它允许在同一窗口内打开任意多个页面,减少浏览器对系统资源的占用率,提高网上冲浪的效率.同时它又能有效防止恶意插件,阻止各种弹出式,浮动式广告,加强网上浏览的安全.MaxthonBrowser支持各种外挂工具及IE插件,使你在MaxthonBrowser中可以充分利用所

  4. 闪电音频格式转换器 4.1.3.0 - 2

    软件大小:41.7M更新日期:2023/12/22软件语言:简体软件类别:音频处理软件授权:免费软件软件官网:https://www.callmysoft.com/yinpinzhuanhu适用平台:WinAll音频转换音频合并视频转音频音频分割音频压缩视频音频提取,闪电音频格式转换器是一款多功能的音乐音频转换软件,集合了音频格式转换、音频合并、视频音频提取、音频分割、音频压缩、视频转音频,调整声音大小等多种功能,支持的常见音频音乐格式有:mp3/mp2/wav/wma/m4r/m4a/ac3/aac/ogg/flac/aiff;。音频转换,音频合并,视频转音频,音频分割,音频压缩,视频音频提

  5. Media Player Classic (MPC修改)V6.4汉化版 - 2

    软件大小:7.1M更新日期:2023/12/25软件语言:简体软件类别:音乐播放软件授权:免费软件软件官网:http://betaking.yaokai.org/适用平台:WinXPMediaPlayerClassiclooksjustlikeWindowsMediaPlayer6.4buthasmanyadditionalfeatures.。  MediaPlayerClassiclooksjustlikeWindowsMediaPlayer6.4,buthasmanyadditionalfeatures.IthasabuiltinDVDplayerwithreal-timezoom,sup

  6. WinUar(加密压缩) 3.6.0.0 - 2

    软件大小:13.1M更新日期:2023/12/15软件语言:简体软件类别:压缩解压软件授权:免费软件软件官网:http://www.910safe.com适用平台:Win11,WinXP,Win7,Win8,Win10WinUar是新一代的加密压缩软件,兼有国内外现有压缩软件(Winrar,7-zip,360压缩、好压等等)的一切功能,且压缩率和压缩速度均优于同类软件,支持ZIP、7Z、RAR、ISO在内的53种常见压缩格式,但这些压缩软件无一例外在使用加密时都采用了工业标准AES加密,目前这种加密算法对黑客来讲破解已经非常容易,针对常见的压缩格式密码加密,网上可以很容易找到用于破解密码的工具

  7. 金舟zip解压缩 3.0.5 - 2

    软件大小:72.5M更新日期:2023/12/19软件语言:简体软件类别:压缩解压软件授权:免费软件软件官网:https://www.callmysoft.com/zip适用平台:WinAllwinziprar7z文件解压缩,纯净安全无广告,图片压缩视频压缩音频压缩GIF压缩PDF压缩Word压缩PPT压缩Excel压缩;金舟ZIP解压缩是全球领先的文件压缩、加密、实用软件,纯净便捷,安全无广告,节省时间和空间,快速压缩和解压缩文件。。winzip,rar,7z文件解压缩,纯净安全无广告,图片压缩,视频压缩,音频压缩,GIF压缩,PDF压缩,Word压缩,PPT压缩,Excel压缩;金舟ZIP

  8. LocalSend文件传输 v1.6.2免费版 - 2

    软件大小:12.6M更新日期:2023/12/23软件语言:简体软件类别:文件管理软件授权:免费软件软件官网:暂无适用平台:WinAllLocalSend文件传输将你的文件以更为安全和快捷的方式来在各种设备之间来进行传输,在同一局域网内保证你的文件能够更为快速的进行流转,快速的完成自身所需要的文件的传输,支持多种设备和客户端。  LocalSend文件传输将你的文件以更为安全和快捷的方式来在各种设备之间来进行传输,在同一局域网内保证你的文件能够更为快速的进行流转,快速的完成自身所需要的文件的传输,支持多种设备和客户端! 软件特色  完全依靠局域网WIFI进行无线传输,速度极快  而且这款软件完

  9. Excel Viewer 2007 官方原版  - 2

    软件大小:72.1M更新日期:2023/12/25软件语言:简体软件类别:办公软件软件授权:免费软件软件官网:http://www.pc6.com适用平台:WinXP本次提供的是Excel2007工作薄查看,打印、浏览工具,不能对excel工作薄创建、编辑、修改工作。。本次提供的是Excel2007工作薄查看,打印、浏览工具,不能对excel工作薄创建、编辑、修改工作。那是Office2007办公软件集成的版本,是收费软件,ExcelViewer2007是官方许可免费发布的软件。如果你需要创建、编辑、修改excel,可以使用免费的WPSoffice2012celViewer2007可以做的工作

  10. 极品五笔 v6.3 Build 1122 - 2

    软件大小:1.3M更新日期:2023/12/25软件语言:简体软件类别:汉字输入软件授权:免费软件软件官网:暂无适用平台:WinXP完美兼容王码五笔字型4.5版。本品适应多种操作系统,通用性能较好。收录词组46000余条,创五笔词汇量新记录!在完全支持GB2312-80简体。完美兼容王码五笔字型4.5版。本品适应多种操作系统,通用性能较好。收录词组46000余条,创五笔词汇量新记录!在完全支持GB2312-80简体汉字字符集的基础上,增加部分GBK汉字,避免了传统五笔对于“镕”、“瞭(望)”、“啰(嗦)”、“芃”、“冇”等汉字不能输入的尴尬,其实用性能是相当不错的。1、新增1100个实用的GB

随机推荐