任务管理器detailul是什么进程?

作者&投稿:钞转 (若有异议请与网页底部的电邮联系)
什么是操作系统软件~

系统软件

系统软件
系统软件是指控制和协调计算机及外部设备,支持应用的软件开发和运行的系统,是无需用户干预的各种程序的集合,主要功能是调度,监控和维护计算机系统;负责管理计算机系统中各种独立的硬件,使得它们可以协调工作。系统软件使得计算机使用者和其他软件将计算机当作一个整体而不需要顾及到底层每个硬件是如何工作的。
系统软件主要包括:操作系统,语言处理程序,高级语言系统和各种服务性程序等.
其中:操作系统如我们常用的Windows,linux,Dos,unix等。
语言处理程序如汇编语言汇编器,C语言编译、连接器等,
一般来讲,系统软件包括操作系统和一系列基本的工具(比如编译器,数据库管理,存储器格式化,文件系统管理,用户身份验证,驱动管理,网络连接等方面的工具)。
是支持计算机系统正常运行并实现用户操作的那部分软件。
一般是在计算机系统购买时随机携带的,也可以根据需要另行安装。
系统软件的主要特征是:
与硬件有很强的交互性
能对资源共享进行调度管理
能解决并发操作处理中存在的协调问题
其中的数据结构复杂,外部接口多样化,便于用户反复使用.

最受欢迎的电脑操作系统,操作系统演变史

怎么才能关掉一个用任务管理器关不了的进程?我前段时间发现我的机子里多了一个进程,只要开机就在,我用任务管理器却怎么关也关不了答:1.杀进程很容易,随便找个工具都行。比如IceSword。关键是找到这个进程的启动方式,不然下次重启它又出来了。顺便教大家一招狠的。其实用Windows自带的工具就能杀大部分进程: c:\>ntsd -c q -p PID 只有System、SMSS.EXE和CSRSS.EXE不能杀。前两个是纯内核态的,最后那个是Win32子系统,ntsd本身需要它。 ntsd从2000开始就是系统自带的用户态调试工具。被调试器附着(attach)的进程会随调试器一起退出,所以可以用来在命令行下终止进程。使用ntsd自动就获得了debug权限,从而能杀掉大部分的进程。 ntsd会新开一个调试窗口,本来在纯命令行下无法控制,但如果只是简单的命令,比如退出(q),用-c参数从命令行传递就行了。 NtsdNtsd 按照惯例也向软件开发人员提供。只有系统开发人员使用此命令。有关详细信息,请参阅 NTSD 中所附的帮助文件。 usage: ntsd [-?] [-2] [-d] [-g] [-G] [-myob] [-lines] [-n] [-o] [-s] [-v] [-w] [-r BreakErrorLevel] [-t PrintErrorLevel] [-hd] [-pd] [-pe] [-pt #] [-pv] [-x | -x{e|d|n|i} ] [-- | -p pid | -pn name | command-line | -z CrashDmpFile] [-zp CrashPageFile] [-premote transport] [-robp] [-aDllName] [-c "command"] [-i ImagePath] [-y SymbolsPath] [-clines #] [-srcpath SourcePath] [-QR \\machine] [-wake ] [-remote transporterver=name,portid] [-server transportortid] [-ses] [-sfce] [-sicv] [-snul] [-noio] [-failinc] [-noshell] where: -? displays this help text command-line is the command to run under the debugger -- is the same as -G -g -o -p -1 -d -pd -aDllName sets the default extension DLL -c executes the following debugger command -clines number of lines of output history retrieved by a remote client -failinc causes incomplete symbol and module loads to fail -d sends all debugger output to kernel debugger via DbgPrint -d cannot be used with debugger remoting -d can only be used when the kernel debugger is enabled -g ignores initial breakpoint in debuggee -G ignores final breakpoint at process termination -hd specifies that the debug heap should not be used for created processes. This only works on Windows Whistler. -o debugs all processes launched by debuggee -p pid specifies the decimal process Id to attach to -pd specifies that the debugger should automatically detach -pe specifies that any attach should be to an existing debug port -pn name specifies the name of the process to attach to -pt # specifies the interrupt timeout -pv specifies that any attach should be noninvasive -r specifies the (0-3) error level to break on (SeeSetErrorLevel) -robp allows breakpoints to be set in read-only memory -t specifies the (0-3) error level to display (SeeSetErrorLevel) -w specifies to debug 16 bit applications in a separate VDM -x sets second-chance break on AV exceptions -x{e|d|n|i} sets the break status for the specified event -2 creates a separate console window for debuggee -i ImagePath specifies the location of the executables that generated the fault (see _NT_EXECUTABLE_IMAGE_PATH) -lines requests that line number information be used if present -myob ignores version mismatches in DBGHELP.DLL -n enables verbose output from symbol handler -noio disables all I/O for dedicated remoting servers -noshell disables the .shell (!!) command -QR <\\machine> queries for remote servers -s disables lazy symbol loading -ses enables strict symbol loading -sfce fails critical errors encountered during file searching -sicv ignores the CV record when symbol loading -snul disables automatic symbol loading for unqualified names -srcpath specifies the source search path -v enables verbose output from debugger -wake wakes up a sleeping debugger and exits -y specifies the symbol search path (see _NT_SYMBOL_PATH) -z specifies the name of a crash dump file to debug -zp specifies the name of a page.dmp file to use with a crash dump -remote lets you connect to a debugger session started with -server must be the first argument if present transport: tcp | npipe | ssl | spipe | 1394 | com name: machine name on which the debug server was created portid: id of the port the debugger server was created on for tcp use: port= for npipe use: pipe= for 1394 use: channel= for com use: port=,baud=, channel= for ssl and spipe see the documentation example: ... -remote npipeerver=yourmachine,pipe=foobar -server creates a debugger session other people can connect to must be the first argument if present transport: tcp | npipe | ssl | spipe | 1394 | com portid: id of the port remote users can connect to for tcp use: port= for npipe use: pipe= for 1394 use: channel= for com use: port=,baud=, channel= for ssl and spipe see the documentation example: ... -server npipeipe=foobar -premote transport specifies the process server to connect to transport arguments are given as with remoting Environment Variables: _NT_SYMBOL_PATH=[Drive:][Path] Specify symbol image path. _NT_ALT_SYMBOL_PATH=[Drive:][Path] Specify an alternate symbol image path. _NT_DEBUGGER_EXTENSION_PATH=[Drive:][Path] Specify a path which should be searched first for extensions dlls _NT_EXECUTABLE_IMAGE_PATH=[Drive:][Path] Specify executable image path. _NT_SOURCE_PATH=[Drive:][Path] Specify source file path. _NT_DEBUG_LOG_FILE_OPEN=filename If specified, all output will be written to this file from offset 0. _NT_DEBUG_LOG_FILE_APPEND=filename If specified, all output will be APPENDed to this file. _NT_DEBUG_HISTORY_SIZE=size Specifies the size of a server's output history in kilobytes Control Keys: Quit debugger Break into Target Force a break into debuggee (same as Ctrl-C) Debug Current debugger Toggle Verbose mode Print version information ntsd: exiting - press enter --- 用法:开个cmd.exe窗口,输入: ntsd -c q -p PID 把最后那个PID,改成你要终止的进程的ID。如果你不知道进程的ID,任务管理器-》进程选项卡-》查看-》选择列-》勾上"PID(进程标识符)",然后就能看见了。 2.xp下还有两个好东东 tasklist和tskill tasklist能列出所有的进程,和相应的信息 tskill能查杀进程le 语法很简单 tskill 程序名!!


JINDETAI;JIN DE TAI注册过商标吗?还有哪些分类可以注册?
JINDETAI;JIN DE TAI商标总申请量1件其中已成功注册0件,有1件正在申请中,无效注册0件,0件在售中。经八戒知识产权统计,JINDETAI;JIN DE TAI还可以注册以下商标分类:第1类(化学制剂、肥料)第2类(颜料油漆、染料、防腐制品)第3类(日化用品、洗护、香料)第4类(能源、燃料、油脂)第5类(...

墨竹工卡县18486934170: 电脑任务管理器的基本进程有哪些 -
歹沸瑞香: Csrss.exe:这是子系统服务器进程,负责控制Windows创建或删除线程以及16位的虚拟DOS环境. Lsass.exe:管理 IP 安全策略以及启动 ISAKMP/Oakley (IKE) 和 IP 安全驱动程序.. Explorer.exe:资源管理器. Smss.exe:这是一个会话管...

墨竹工卡县18486934170: 电脑开机出现进入任务管理器 -
歹沸瑞香: 可能是因为软件冲突导致的不显示桌面.可以通过以下方法恢复桌面:1.首先使用组合键“ctrl键+alt键+delete键”调出“任务管理器”2.点击“文件”选择“新建任务(运行)”3.在打开的后面输入“explorer”或者“explorer.exe”点击确定即可(说明:此为桌面进程,控制桌面所有图标和任务栏的显示);4.这样就可以看到进程已经在任务管理器中正常运行了,桌面图标也正常了.

墨竹工卡县18486934170: 任务管理器的进程各代表什么意思? -
歹沸瑞香: 任务管理器的进程各代表什么意思? XP系统正常进程一般14个 其中svchost.exe 5个 所以应该是10个 他们的意思是: csrss.exe 是微软客户端/服务端运行时子系统.该进程管理Windows图形相关任务. Explorer.exe 资源管理器 lsass.exe 是本地...

墨竹工卡县18486934170: 任务管理器里边的进程是什么意思?
歹沸瑞香: Windows XP 常见的进程列表 1、最基本的系统进程 这些进程是系统运行的基本条件,有了这些进程,系统才能正常运行. smss.exe Session Manager csrss.exe 子系统服务器进程 winlogon.exe 管理用户登录 services.exe 包含很多系统服务 ...

墨竹工卡县18486934170: 任务管理器的进程是什么
歹沸瑞香: 任务管路器的进程是taskmgr.exe,如果任务管理器没被禁用,启动方法为Ctrl+Alt+Del.

墨竹工卡县18486934170: 任务管理器里的各个进程是什么意思?? -
歹沸瑞香: taskmgr.exe是任务管理器进程,当你打开任务管理器时创建. Svchost.exe 是Windows NT核心的重要进程(Windows 9X没有该进程),专门为系统启动各种服务的. alg.exe 微软Windows操作系统自带的程序.它用于处理微软Windows网络连...

墨竹工卡县18486934170: 任务管理器里那些进程(英文的),都分别是些什么意思? -
歹沸瑞香: 【Windows 任务管理器进程详解】 作者: ★笨狼★[20920916] Win2000/XP 的任务管理器是一个非常有用的工具,它能提供我们很多信息,比如现在系统中运行的程序(进程),但是面对那些文件可执行文件名我们可能有点茫然,不知道它们...

墨竹工卡县18486934170: 任务管理器的这个进程是什么
歹沸瑞香: System Idle Process系统进程介绍 [system Idle Process] 进程文件: [system process] or [system process] 进程名称: Windows内存处理系统进程 描 述: Windows页面内存管理进程,拥有0级优先. 介 绍:该进程作为单线程运行在每个处理器...

墨竹工卡县18486934170: windows任务管理器中的进程是什么一个概念,具体的功能是什么? -
歹沸瑞香: 简单说,进程就是在系统中运行的某一程序,用ctrl+alt+del可以调出当前进程列表,通过进程列表可以看出当前运行了哪些程序,也可看出是否中了病毒.比如进程explorer.exe,是Windows资源管理器,或是Windows图形界面外壳程序,它是一...

墨竹工卡县18486934170: 任务管理器怎么打开 任务管理器应用技巧 -
歹沸瑞香: 任务管理器显示不全怎么办 任务管理器显示不全的解决办法任务管理器怎么打开 怎么进任务管理器 任务管理器是windows自带的维护工具,进入任务管理的方法为:同时按下组合键 Ctrl+Alt+Del 来打开Windows任务管理器.还可以通过开始-运...

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 星空见康网