On machine A
I want to have a small python script to execute a command on machine B
. Machine A
is Windows with freesshd
running on it, and machine B
can be either Windows or Linux. I only have a username and a password to log in to machine B
, no other way of authentication.
How can I create a python script to run a command on machine B
? ssh
would be fine, but where to find that command on Windows? And it has to be done without paramiko
, since this module does not wok for unknown reasons.