1

I am using Global send keys event in Blueprism and need to press Windows button. For example Control key is {CTRL}. What is the syntax for Windows key?

Does anyone have the full list of keystrokes syntax.

Vivek
  • 55
  • 1
  • 1
  • 6
  • Wiki says, when keyboard lacks that key, combination of CTRL+ESC performs the same function. Try it and give us a feed back. – RAFEL Nov 07 '17 at 07:17
  • Let's hope this will be the answer, but as far as google CTRL+ESC cannot be combined with other buttons. I mean, the WIN+D is not the same as CTRL+ESC+D – Andrzej Kaczor Nov 07 '17 at 07:58
  • Using CTRL+ESC worked. Windows key can be pressed using CTRL+ESC. Thanks @RAFEL – Vivek Nov 13 '17 at 08:59

1 Answers1

0

the BluePrism uses standard C# implementation of sendkeys. If you'd like to read more sendkeys class, then you can find the information on Microsoft Developer Network.

The standard implementation does not allow using windows key, so to do that you'll need to work around that with BluePrism code stages, and write a code in one of BluePrism supported coding languages (c#, j#, vb.net)

That question how to do that was answered several times already on stackoverflow. Some solutions are available on these pages: Link 1, Link 2, Link 3

Andrzej Kaczor
  • 1,553
  • 1
  • 11
  • 18