A technician working at a Windows Command Prompt needs to forcefully terminate a frozen application process named app.exe. Which of the following commands should the technician execute?
- taskkill /f /im app.exeAnswer
- Bkillall -9 app.exe
- Ctaskkill /remove app.exe
- Dtasklist /f /im app.exe
Answer
The command taskkill /f /im app.exe should be used to forcefully terminate the process by its image name.
The taskkill command combined with /f (force) and /im (image name) correctly targets and ends a frozen Windows application process by its executable name.
Step-by-Step Solution
Key Concept
Terminating processes using taskkill with appropriate switches in Windows Command Prompt
Estimated Time:45s