How to make a connection to a remote server like in Teamviewer?

1.2k views Asked by At

I want to know is it possible to connect to remote windows server through python and for the clicker to work, for example, when you connect via a standard windows remote connection, then after the connection is closed, the clicker stops working.

I found a solution, it's teamviewer, but I need to run clickers on multiple servers. Can I use python to open the same connections as teamviewer in order for the clicker to work?

1

There are 1 answers

2
omri On

you have the https://www.paramiko.org/ package which allows connecting to machines remotely and running commands on them this best for Ubuntu machines.

If you want to remote connect to windows machines you can try this answer, although i have less experience with this type of remote connection How to connect to a remote Windows machine to execute commands using python?