I wonder is it possible to turn off/kill/close an application on ms windows xp. On linux machine I've alway login by ssh and the use shell command. How it works on windows? Is there any ssh build in serwer?
I would like to not use gui. I prefer shell/cmd.
32 Answers
There are several approaches you can take to remote kill processes from a CLI:
Powershell
Assuming you have an account with the requisite permissions, and have configured Powershell for remote use (not covered in this answer, but here's a free e-book from Don Jones covering how to get set up,) you can use one of several Cmdlets to remotely kill processes.
Stop-Process via Invoke-Command
You should be able to use Stop-Process along with an Invoke-Command (or by opening a more permanent remote session).
Invoke-Command -ComputerName RemoteComputer -ScriptBlock {Stop-Process processname}This would be my preference, but requires some configuration in advance, so is not ideal in every situation.
Built-in Solutions
Taskkill.exe
Taskkill is provided on recent Windows machines, and can be used remotely with the /s parameter.
Example:
taskkill /s remotecomputer /pid processIDSysinternals Tools
You can also use either of PSKill or PSExec (available at live.sysinternals.com) to terminate processes.
PSKill
Similar to Taskkill, but not provided on Windows machines by default.
Example:
pskill \\remotecomputer <process ID | name>PSExec
Using PSExec, on the other hand, you can run any command you would normally use to manage processes locally.
Example:
psexec \\remotecomputer taskkill /pid processID You can run this command from cmd or the start menu:
taskkill /f /im name.exe This also has a /S parameter to allow you to set the system to connect to. So you will be able to:
taskkill /s remoteserver /f /im name.exeTo find name.exe,
tasklistwill give you a chart with all the processes, the names, the executable (name.exe) and the PID [process ID].