Skip to content Skip to sidebar Skip to footer

Remote Desktop Connection Using Pywinauto

I want that my script will automate to remote desktop connection. My problem is how will i able to send text in a script in loggin in into the remote desktop connection in password

Solution 1:

If you need GUI automation inside RDP window, you have to install pywinauto on remote machine and run the script there. This is true for any GUI automation tool because RDP or any other remote client doesn't provide GUI elements info to local machine.

More details on what should be used is posted here:

Very useful thread is here: https://github.com/pywinauto/pywinauto/issues/401 Just need some time to compile all this knowledge into well structured document.

Post a Comment for "Remote Desktop Connection Using Pywinauto"