Remote desktop does not pass Ctrl-Alt-Up (and Down)

18

3

Ctrl + Alt + Up (and Down) do not seem to be assigned to any Windows function, yet they are not passed correctly by Remote Desktop. Can this be fixed?

Tested on Windows 8.

eee

Posted 2014-03-17T14:22:23.377

Reputation: 181

Same problem here under Windows 10 (i edited the original question). They Key combination is not in use by something else. – masgo – 2019-02-12T20:16:55.730

They are assigned to a RDP function: View session selection bar. See https://winaero.com/blog/rdp-keyboard-shortcuts-windows-10/

– cbarth – 2019-12-22T13:43:28.130

1What do you expect this keyboard combination to do exactly? – Ramhound – 2014-03-17T14:35:09.853

2It is directed at my editor that runs on the remote. It does not reach the remote as intended. Other key combinations are recognized correctly, e.g. Ctrl-Alt-PgUp/PgDn. – eee – 2014-03-17T15:45:49.503

A lot of times Ctrl+Alt+Up/Down/Left/Right is used by graphics card drivers to change the orientation. This has caused problems for me as well when I try to use Sublime Text. – Alex McKenzie – 2014-03-17T17:01:17.267

1Checked, disabled both on the host and the remote. – eee – 2014-03-18T07:57:21.467

Answers

1

I have same problem with CTRL + ALT + UP or DOWN. It looks like default RDP client is broken.

As an alternative try Remote Desktop software from Microsoft Store https://www.microsoft.com/en-us/p/microsoft-remote-desktop/9wzdncrfj3ps?activetab=pivot:overviewtab

It is not ideal. It has this annoying blue bar at the top of screen in full screen mode. It looks like those programmers don't use their application at all. All web browsers have tabs at top bar now and this annoying bar appears on top of them. Well done Microsoft once more. However, at least keys are send to the remote computer.

Pawel

Posted 2014-03-17T14:22:23.377

Reputation: 111

1

I have recently run into this very annoying problem. My solution was to use another version of mstsc.exe. The problematic version was 6.3.9600.16415. Replaced with 6.1.7601.17514 and everything is fine. Haven't checked other versions.

peter

Posted 2014-03-17T14:22:23.377

Reputation: 11

I am running 6.1.7601.17514 -- the issue is not fixed. – kevinarpe – 2017-06-26T08:05:10.500

0

I had this same problem, but using different mstsc didn't seem to help. This post:

Remote Desktop: Sending Ctrl-Alt-Left Arrow/Ctrl-Alt-Right Arrow to the remote PC

suggested using hotkeys. So I tried making a simple AutoHotkey (AHK) script. I was able to get this working. Save the following:

 ^!PgUp::^!Up
 ^!PgDn::^!Down

in a .ahk file in the computer I am connecting to, then run the file. The command Ctrl+Alt+PgUp and Ctrl+Alt+PgDn produce the multi-line selection. The only thing I don't really like about it is that the arrows are usually closer to my hands when typing than the PgUp and PgDn buttons, but I still prefer it over the mouse.

Charles

Posted 2014-03-17T14:22:23.377

Reputation: 103

0

I just changed the keyboard shortcut in my editor.

I am using Visual Studio Code (VS Code) on a remote machine and Ctrl+Alt+ and Ctrl+Alt+ to insert a cursor above and below, respectively. I just went into VS Code and changed the key binding to the key chord Ctrl+ Ctrl+ and Ctrl+ Ctrl+, respectively. So I have to push the up or down arrow more times, but at least that works and is quicker than the mouse.

This is done in VS Code by Ctrl+k Ctrl+s, then you can search for "cursor" and you'll see "Add Cursor Above" and "Add Cursor Below", which are the settings to modify.

cbarth

Posted 2014-03-17T14:22:23.377

Reputation: 297