I have a program that uses PyKeyboard.tap_key() to send keystrokes to another application that I'm automating (the application can't be automated any other way, unfortunately). I run it on a remote Windows computer, which I access through Remote Desktop.
PyKeyboard.tap_key() works well while I'm connected, but if I disconnect from the Remote Desktop session, keystrokes are no longer delivered.
Another question: Is disconnecting the remote session equivalent to "Log off->Switch User"? I assume that the problem is that the user is not logged-in (even though a session is running).
It seems that this is not a Python related problem. This happens for
SendInput()
as well (which is probably the WINAPI function Python uses anyway).From this MSDN thread: