`

Send special keys to RDP by Automate6

F# 
阅读更多

转载自官方论坛,原作者 Leonard Amabile (N.A)


引言,通过Automate之类的软件向远程桌面(RDP)发送shift键会遇到问题,导致" : ! @ # $ 这类需要按住shift才能打出的字符变成' ; 1 2 3 4 这些结果。对此的解决方法如下:


In Automate 6.2.8


In order to get alternative characters from a key press within a remote session you actually need to explicitly send the right shift key.

{RIGHTSHIFT}!
{RIGHTSHIFT}@
{RIGHTSHIFT}#
{RIGHTSHIFT}$
{RIGHTSHIFT}%%
{RIGHTSHIFT}^
{RIGHTSHIFT}&
{RIGHTSHIFT}*
{RIGHTSHIFT}(
{RIGHTSHIFT})
{RIGHTSHIFT}_
{RIGHTSHIFT}+

This will work across the board and will also send capital letters.


And in case anyone cared.... Sending the F keys in a remote session need some massaging as well:

({F1})
({F2})
({F3})
({F4})
({F5})
({F6})
({F7})
({F8})
({F9})
({F10})
({F11})
({F12})
{TAB}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics