A system administrator is troubleshooting a frozen proprietary application process named finance_app.exe on a Windows workstation. The administrator must first identify the Process Identifier (PID) associated with finance_app.exe and then forcibly terminate both the main process and all of its associated child processes using the Command Prompt. Which of the following commands will successfully accomplish these actions? (Select TWO.)
- tasklist /fi "imagename eq finance_app.exe"Cevap
- taskkill /im finance_app.exe /f /tCevap
- Ckill -9 finance_app.exe
- Dtaskkill /pid 4321 /r /p
Cevap
The administrator must run 'tasklist /fi "imagename eq finance_app.exe"' to filter and retrieve the PID for finance_app.exe, and 'taskkill /im finance_app.exe /f /t' to forcibly terminate the specified executable along with all of its child processes.
The tasklist utility with the /fi filter allows a technician to search for running processes by criteria such as image name to discover their process ID (PID). To forcibly stop a hung application along with any dependent processes it launched, taskkill requires the /f (force) switch and the /t (tree) switch combined with either the /im (image name) or /pid (process ID) parameter.
Adım Adım Çözüm
Anahtar Kavram
Windows Process Management CLI Utilities (tasklist and taskkill)