A technician is troubleshooting a Windows workstation experiencing performance issues due to a frozen background process. The technician opens an elevated Command Prompt to locate the Process ID (PID) of the non-responsive program and terminate it directly from the command line. Which of the following command-line tools will accomplish these tasks? (Select TWO.)
- tasklistAnswer
- taskkillAnswer
- Ctop
- Dresmon
Answer
The technician must use the command-line tools tasklist to identify the Process ID (PID) of the running process, and taskkill to stop or forcefully terminate the process.
The correct command-line tools are tasklist and taskkill. The tasklist command displays a detailed list of active application tasks and system services along with their respective PIDs. The taskkill utility allows technicians to terminate processes directly using command-line parameters such as process name (/IM) or Process ID (/PID).
Step-by-Step Solution
Key Concept
Windows Command-Line Process Inspection and Termination Utilities