如何像在TeamViewer中这样的连接到远程服务器?
我想知道,可以通过Python连接到远程Windows Server,并让单击器正常工作,例如,当您通过标准的Windows远程连接连接时,关闭连接后,点击器停止工作。
我找到了一个解决方案,它是TeamViewer,但是我需要在多个服务器上运行点击器。我可以使用Python打开与TeamViewer相同的连接,以使点击器正常工作吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有 https://www.paramiko.org/ 软件包允许远程连接到机器并运行命令的软件包对他们来说,这是Ubuntu机器的最佳选择。
如果要远程连接到Windows机器,则可以尝试此答案,尽管我对这种类型的远程连接的经验如何连接到远程Windows计算机使用Python执行命令?
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?