How can I turn off a process that can't be closed with Task Manager? I found a few days ago I have a process in the machine, as long as the boot on the, I use the Task Manager but how to close also can not shut
It's easy to kill a process, just find a tool to do. Like IceSword. The key is to find the way the process starts, or it comes out again the next time it reboots. By the way, we can teach you a tough trick. In fact, using Windows with its own tools can kill most processes:
C:\>ntsd-c q-p PID
Only system, SMSS. EXE and CSRSS.EXE can't kill. The first two are pure kernel state, the last one is the WIN32 subsystem, NTSD itself needs it. NTSD starting from 2000 is the system's own user-state debugging tool. A process that is attached to the debugger (attach) exits with the debugger, so it can be used to terminate the process at the command line. Using NTSD automatically gets debug permissions, which kills most of the process. NTSD will open a new debugging window, which could not be controlled at the pure command line, but if it is simply a command, such as exit (Q), it can be passed from the command line with the-c parameter. NTSDNTSD is also provided to software developers in accordance with established practice. This command is only used by system developers. For more information, see the Help file that is attached to the NTSD. Usage: Open a cmd.exe window and enter:
Ntsd-c q-p PID
Change the last PID to the ID of the process you want to terminate. If you don't know the ID of the process, Task Manager-Process tab-> view-> Select column-> tick "PID (process Identifier)" and then you can see it.
XP also has two good dongdong tasklist and Tskill. Tasklist can list all the processes, and the corresponding information. Tskill can killing process, syntax is very simple: Tskill program name!!