RDP (Windows Remote)
Connect to Windows machines via RDP to control the remote desktop — click, type, take screenshots.
Authentication
This connector uses Token-based authentication.
info
Set up your connection in the Abstra Console before using it in your workflows.
How to use
Using the Smart Chat
Execute the action "CHOOSE_ONE_ACTION_BELOW" from my connector "YOUR_CONNECTOR_NAME" using the params "PARAMS_HERE".
Using the Web Editor
from abstra.connectors import run_connection_action
result = run_connection_action(
connection_name="your_connection_name",
action_name="your_action_name",
params={
"param1": "value1",
"param2": "value2"
})
Available Actions
This connector provides 5 actions:
| Action | Purpose | Parameters |
|---|---|---|
| mouse_move | Move the mouse cursor to a position on the remote desktop | x (number) required y (number) required |
| mouse_click | Click the mouse at a position on the remote desktop | button (string) x (number) required y (number) required |
| key_press | Press and release a keyboard key on the remote desktop | key (string) scancode (number) |
| type_text | Type a string of text on the remote desktop using Unicode input events | text (string) required |
| screenshot | Capture the current remote desktop screen as PNG | No parameters |