Использование taskkill
поможет вам в вашей проблеме.
Общий синтаксис команды выглядит следующим образом:
taskkill [OPTIONS] [PID]
Как и следовало ожидать, для этой команды доступно множество параметров. Некоторые из более полезных вариантов:
/s COMPUTER -- (Where COMPUTER is the IP or address of a remote computer). The default is the local computer, so if you're working with a command on the local machine, you do not have to use this option.
/u DOMAIN\USER -- (Where DOMAIN is the domain and USER is the username you authenticate to). This option allows you run taskkill with the account permissions of the specified USERNAME or DOMAIN\USERNAME.
/p -- If you use the /u option, you will also need to include the /p option, which allows you to specify the user password.
/fi -- Allows you to run the taskkill command with filters.
/f -- Forces the command to be terminated.
/IM -- Allows you to use an application name instead of the PID (Process ID number) of the application.
Это можно увидеть на CMD, набрав taskkill /?
Используйте переключатель справки для команды taskkill.
Убийство с помощью имени приложения Самый простой способ убить мошенническое приложение с помощью taskkill
- использовать параметр /IM
. Это сделано так:
taskkill /IM APPLICATION_NAME
Где APPLICATION_NAME
- это имя приложения, которое вы хотите убить. Скажем, например, Outlook отказывается закрываться. Чтобы закрыть это с помощью taskkill, вы должны выполнить команду:
taskkill /IM outlook.exe
Надеюсь это поможет. Удачи!