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.
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