Usar taskkill
ajudará você com seu problema.
A sintaxe geral do comando é assim:
taskkill [OPTIONS] [PID]
Como você pode esperar, há muitas opções disponíveis para este comando. Algumas das opções mais úteis são:
/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.
Isso pode ser visto no CMD digitando taskkill /?
Use o botão de ajuda para o comando taskkill.
Matando com o nome do aplicativo
A maneira mais simples de eliminar um aplicativo nocivo com taskkill
é usando a opção /IM
. Isso é feito assim:
taskkill /IM APPLICATION_NAME
Onde APPLICATION_NAME
é o nome do aplicativo que você deseja matar. Digamos, por exemplo, o Outlook está se recusando a fechar. Para fechar isso com taskkill, você executaria o comando:
taskkill /IM outlook.exe
Espero que isso ajude - boa sorte!