asked 208k views
3 votes
An application is frozen and you cannot close its application window. what are the first two things you could do to end the process? a. Use the tasklist command.

b. Use Task Manager.
c. Reboot the system.
d. Use the taskkill command.

asked
User Zefira
by
8.0k points

1 Answer

1 vote

Answer:

b. Use Task Manager.

d. Use the taskkill command

Step-by-step explanation:

Task Manager will show all running processes. You can right click on the frozen process and select End Task

You can use taskkill with the /F and /IM switches to kill a specific process by name
For example suppose notepad is frozen you can use
taskkill /F /IM notepad.exe to forcibly kill that program

tasklist just lists the running processes
rebooting the system is always a last resort

answered
User Alexey Voinov
by
7.9k points