Você pode usar os comandos Taskkill para eliminar um processo específico em um servidor específico que esteja sendo executado como um nome de usuário específico (veja abaixo) .
Kill a process by targeting it based on...
- the remote server name which it's running
- the username running the process
- the process name on the remote server
Exemplo de comando
Certifique-se de definir os valores apropriados nas partes <RemoteServerName>
, <Username>
e <appname.exe>
do comando taskkill abaixo para o seu ambiente e necessidades.
TASKKILL /S <RemoteServerName> /F /FI "USERNAME eq <Username>" /IM <appname.exe>
Mais recursos
-
Taskkill /?
/S system Specifies the remote system to connect to. /FI filter Applies a filter to select a set of tasks. Allows "*" to be used. ex. imagename eq acme* /F Specifies to forcefully terminate the process(es). /IM imagename Specifies the image name of the process to be terminated. Wildcard '*' can be used to specify all tasks or image names Filters: USERNAME eq, ne User name in [domain\]user format