|
chineselgs
高级用户
    论坛灌水专业户
积分 613
发帖 266
注册 2006-4-19 来自 河南省
状态 离线
|
『楼 主』:
如何在DOS里关闭WINDOWS系统进程
使用 LLM 解释/回答一下
我的系统是WINDOWSXP2,在系统进程里有一项不知是什么东东,占很大资源(以前都没有,可能是病毒吧).用WINDOWS任务管理器关时它显示拒绝防问,听朋友说可以从DOS里结束掉这个进程,请问用什么命令,麻烦您说清楚一点,我是新手,很多地方都不懂!谢谢
大家快帮帮忙啊,这么久了怎么都没人说话呢??
Last edited by chineselgs on 2006-5-6 at 17:18 ]
My system is WINDOWS XP2. There is a process in the system process that I don't know what it is, and it takes up a lot of resources (it wasn't there before, maybe it's a virus). When I try to close it with the Windows Task Manager, it shows access denied. I heard from a friend that I can end this process from DOS. Please tell me what command to use, and please be clear. I'm a newbie, I don't understand many things! Thank you
Everyone, hurry up and help! Why hasn't anyone spoken for so long??
Last edited by chineselgs on 2006-5-6 at 17:18 ]
|

饮马恒河畔,剑指天山西,碎叶城揽月,库叶岛赏雪,黑海之滨垂钓,贝尔加湖面张弓;中南半岛访古,东京废墟祭祖!
|
|
2006-5-6 15:32 |
|
|
3742668
荣誉版主
      
积分 2013
发帖 718
注册 2006-2-18
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
发错版了。。。
这 个版块是DOS专用的,不包括命令行。
正确的地方在我的签名里。
XP中结束进程的工具不少了,比如:
taskkill /fi "imagename eq 进程名.exe"
wmic process where name="进程名.exe" call terminate
ntsd -c q -pn 进程名.exe
如果用这三个命令都不能结束的话说明那个进程的级别比较高,或者有个守护进程。具体情况具体分析。
Posted in the wrong section...
This section is dedicated to DOS, and does not include command lines.
The correct place is in my signature.
There are many tools to end processes in XP, for example:
taskkill /fi "imagename eq 进程名.exe"
wmic process where name="进程名.exe" call terminate
ntsd -c q -pn 进程名.exe
If none of these three commands can end the process, it means that the process has a higher level, or there is a guardian process. Analyze the specific situation.
|
|
2006-5-6 18:22 |
|
|
chineselgs
高级用户
    论坛灌水专业户
积分 613
发帖 266
注册 2006-4-19 来自 河南省
状态 离线
|
『第 3 楼』:
不行,关不掉!
使用 LLM 解释/回答一下
没用啊,根本关不掉~!!!!
它显示拒绝访问,该怎么办啊??
Last edited by chineselgs on 2006-5-8 at 19:49 ]
It doesn't work, can't turn it off at all~!!!!
It shows access denied, what should I do??
Last edited by chineselgs on 2006-5-8 at 19:49 ]
|

饮马恒河畔,剑指天山西,碎叶城揽月,库叶岛赏雪,黑海之滨垂钓,贝尔加湖面张弓;中南半岛访古,东京废墟祭祖!
|
|
2006-5-7 20:25 |
|
|
JonePeng
金牌会员
      D◎$ Fαп
积分 4562
发帖 1883
注册 2004-1-19 来自 广东广州
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
任务管理器里关不掉的进程,在CMD下也未必能关得掉。
楼主的那个是什么进程啊?我猜是中毒了。
Processes that can't be closed in Task Manager may not necessarily be closed in CMD either.
What process was that of the LZ? I guess it's a virus infection.
|

----====≡≡≡≡ 我的至爱,永远是MSDOS!≡≡≡≡====----
|
|
2006-5-8 23:20 |
|
|
fujianabc
金牌会员
     
积分 3467
发帖 1616
注册 2004-6-21
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
用这个pskill,任何进程都能杀,包括系统的关键进程。
用法:
pskill 进程名
或者
pskill 进程的pid。
Using this pskill, you can kill any process, including critical system processes.
Usage:
pskill process name
or
pskill process's pid.
附件
1: pskill.rar (2006-5-9 10:26, 27.13 KiB, 下载附件所需积分 1 点
,下载次数: 28)
|
|
2006-5-9 10:26 |
|
|
electronixtar
铂金会员
      
积分 7493
发帖 2672
注册 2005-9-2
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
不用pskill也可以的。由于你是XP的系统,所以你可以用administrator登录后,运行以下代码,你也可以保存文件为一个bat再双击运行。
::By est,electronicstar@126.com
@echo off
set t=%time%
echo %t%
time 00:00
at 00:01 /interactive taskmgr >> nul
time 00:01
::delay for few seconds
ping -n 5 127.1 >> nul
time %t%
弹出一个任务管理器窗口后,就可以关闭平时不能关闭的进程了,应为这样打开的taskmgr是具有SYSTEM权限的
Last edited by electronixtar on 2006-5-9 at 12:22 ]
It's also possible without using pskill. Since you're on an XP system, you can log in as administrator and run the following code, or you can save the file as a.bat and double - click to run it.
::By est,electronicstar@126.com
@echo off
set t=%time%
echo %t%
time 00:00
at 00:01 /interactive taskmgr >> nul
time 00:01
::delay for few seconds
ping -n 5 127.1 >> nul
time %t%
After a Task Manager window pops up, you can close processes that you usually can't close, because the Task Manager opened this way has SYSTEM privileges.
Last edited by electronixtar on 2006 - 5 - 9 at 12:22 ]
|
|
2006-5-9 12:17 |
|
|
Michael
钻石会员
       
积分 10046
发帖 3039
注册 2002-11-11
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
用第三方软件比较好
It's better to use third-party software
|

简单就是美 |
|
2006-5-9 18:14 |
|
|
chineselgs
高级用户
    论坛灌水专业户
积分 613
发帖 266
注册 2006-4-19 来自 河南省
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
谢谢大家,搞定了!
的确是中毒了,因为我一不用杀毒软件,又经常搞些下载什么的,这是常事啊~~
Thank you everyone, it's done!
It was indeed a virus infection, because as soon as I don't use antivirus software and often do some downloads or something, this is a common occurrence~~
|

饮马恒河畔,剑指天山西,碎叶城揽月,库叶岛赏雪,黑海之滨垂钓,贝尔加湖面张弓;中南半岛访古,东京废墟祭祖!
|
|
2006-5-14 12:39 |
|
|
xuantian
高级用户
   
积分 587
发帖 282
注册 2006-4-10
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
严格的说,xp下叫窗口命令行,叫cmd也成.
dos下冒出了windows的系统进程,实在让人发晕
Strictly speaking, under XP it's called the windowed command line, also called cmd. The system processes of Windows popping up under DOS are really confusing
|
|
2006-5-14 12:52 |
|
|
jawbin
高级用户
   
积分 994
发帖 444
注册 2005-1-29
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
楼主已经习惯这样的错误了,楼上就忍忍吧,呵呵
The landlord has gotten used to such mistakes, just bear with it, heh heh
|
|
2006-5-15 09:39 |
|