This article refer from the question and answer from Microsoft Comunity
The actions that we use for press keyboard shortcuts is Send Keys
Parameters of Send keys action
- Send keys to this parameter to specify the window destination where the key is to be sent. There are four types as follows:
- Foreground window send key to the window that currently has the focus
- UI element send key to the UI element (It can add new UI element or select from the UI that had been captured)
- Window instance/handle send key to Window instance which is got from “Get window” action
- Title and/or class send key to specify title or class

2. Text to Send
- Input as text, variable or expression
- Direct encrypted text input
- Insert special keys
- Insert modifier

3. Delay between keystrokes

4. Send Text as hardware keys
Specifies the key entry method. If OFF does not work, change to ON.

How to press shortcuts
Press 2 keys:
{KeyCode1}({KeyCode2}) e.g. if you want to press Ctrl+A, it will be:
{Control}({A})
Press 3 keys:
{KeyCode1}({KeyCode2}({Keycode3})) e.g. if you want to press Ctrl+Shift+N, it will be:
{Control}({Shift}({N}))

You can copy the source code of this article from below link and paste it into your Power Automate Desktop’s Workspace.


Leave a reply to Neeraj Cancel reply