A helpdesk technician needs to forcefully end a frozen process named `app_service.exe` using the Windows Command Prompt. Which TWO of the following parameters must be included with the `taskkill` command to terminate this process by its executable name? (Select TWO.)
- /fAnswer
- /im app_service.exeAnswer
- C-9
- D/scannow
Answer
The correct parameters to include with the `taskkill` command are `/f` to force termination and `/im app_service.exe` to specify the target image name.
To forcefully end a process by its image name using `taskkill`, the `/f` parameter is required to force the termination of the unresponsive application, and the `/im` parameter is required to specify the target process's image name (`app_service.exe`). Combining these into `taskkill /f /im app_service.exe` achieves the desired outcome.
Step-by-Step Solution
Key Concept
Windows Taskkill Utility Switches
Estimated Time:45s