I need to be able to "type" the content of my local clipboard in a remote session (remote PC is properly locked, no clipboard sharing, the only accepted input is key presses)
With AHK, I found the following one-liner to do what I need:
^+1::Send %Clipboard%
It works fine, except that it doubles every EOL i.e. if my clipboard contains:
line1
line2
line3
then executing the script results in "typing":
line1
line2
line3
Any ideas how to fix this?