iphone6主板维修:怎么增加和结束进程呀??

来源:百度文库 编辑:高考问答 时间:2024/05/11 02:42:17
比如我有个进程一段时间想用一段时间不用,怎么办呀??向高手请教,小弟不胜感激!

用任务管理器就可以

服务里面管理!!停止和启动

答者不详。

用组和键大开,任务管理

用任务管理器windows2000里,,同时按下Ctrl+Alt+Del键,选择"任务管理器",,然后在进程里结束你想要结束的进程就行了,有些进程结束不了你可以用微软公司的一个内置隐藏命令在DOS提示符下结束,命令的格式如下:
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

-- 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 DL
L names
This specifies the search order when resolving debugger extension comman

例如你要结束PID号为1208的进程,则输入:
ntsd -c q -p 1208

(其中PID号在"任务管理器"的进程里可以看到)此命令为强制结束进程.