Використання 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 /IM outlook.exe
Сподіваюся, що це допоможе - удачі!