A system administrator is remotely troubleshooting a Windows 11 workstation where a custom line-of-business database process has frozen. The administrator opens an elevated Command Prompt and needs to identify the Process Identifier (PID) of the non-responsive executable (`dbengine.exe`) and then forcefully terminate it using that PID. Which of the following commands or command-line switches should the administrator execute to complete these tasks? (Select TWO.)
- tasklistCevap
- taskkill /pid <PID> /fCevap
- Ckill -9 <PID>
- Dtaskkill /im <PID> /r
Cevap
The administrator should run 'tasklist' to locate the process identifier (PID) and 'taskkill /pid <PID> /f' to forcefully terminate the process using its PID.
To view running processes and discover their assigned Process Identifiers (PIDs) in Windows Command Prompt, the 'tasklist' utility is used. Once the PID is identified, 'taskkill /pid <PID> /f' is used to forcefully terminate the process by targeting its PID with the /pid parameter and forcing termination with the /f parameter.
Adım Adım Çözüm
Anahtar Kavram
Windows Process Management Utilities (tasklist and taskkill)