A Windows administrator notices that a malfunctioning background service process named `svc_indexer.exe` (PID: 4812) has hung and spawned multiple child processes that are locking system resources. The administrator needs to forcefully terminate both the parent process and all associated child processes in a single command line invocation. Which of the following commands should the administrator run?
- taskkill /pid 4812 /t /fCevap
- Btaskkill /im 4812 /r /a
- Ckill -9 4812
- Dresmon.exe /end process 4812
Cevap
The command `taskkill /pid 4812 /t /f` correctly targets the process ID, forcefully kills it, and terminates its child process tree.
The `taskkill` utility allows administrators to terminate running tasks from the Command Prompt. Using `/pid 4812` correctly specifies the numerical Process ID. The `/t` switch specifies tree termination (terminating the process and all child processes started by it), while `/f` specifies forced termination of unresponsive or hung tasks.
Adım Adım Çözüm
Anahtar Kavram
Windows Command-Line Process Termination (Taskkill Switches)
Tahmini Süre:1m 30s