I need to run a process inside a windows host from a linux host using python.
I saw WMI python library but seems to work only from a windows host, not linux, how can I do?
I neeed something like PSEXEC, but it works only for windows.
I need to run a process inside a windows host from a linux host
Share
An easy solution is to run a SSH server on the windows box and use the paramiko library on the client side.