How to send Ctrl+Alt+End to Remote Desktop?

17

4

I have an application where Ctrl + Alt + End is mapped to a command, but when using the machine via Remote Desktop, Ctrl + Alt + End is used by the system as an alternative to Ctrl + Alt + Delete. Is there any way to change that setting for the Remote Desktop session so I can use Ctrl + Alt + End in my application?

Jimmy

Posted 2010-01-07T19:34:17.103

Reputation: 1 159

Answers

6

Do you have the option of running AutoHotkey on the remote PC? You could run a script there which would trap an alternate hotkey of your choosing, and render it (there) as Ctrl+Alt+End.

JMD

Posted 2010-01-07T19:34:17.103

Reputation: 4 427

thanks, worked like a charm once I figured the script out :) – Jimmy – 2010-01-07T21:10:33.820

Introduction to AutoHotkey should be part of the SuperUser sign-up process. It's the Swiss Army Knife in the pocket of every SuperUser. :) – JMD – 2010-01-07T21:12:32.133

3

Alternate method which opens the 'Ctrl-Alt-Delete' overlay manually:

Run > shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}

or

cmd > explorer.exe shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}

alexmarkoff

Posted 2010-01-07T19:34:17.103

Reputation: 41

+1 Can confirm the explorer line worked for me, thanks – Robotnik – 2017-08-15T05:22:30.903

0

Use On-Screen Keyboard.

  1. Click Windows button -> Run
  2. Open osk and click related key.

Ivan Chau

Posted 2010-01-07T19:34:17.103

Reputation: 953

If it does not work, try pressing Ctrl, and Alt on physical keyboard, hold and then click "End" on On-Screen keyboard. – Ivan Chau – 2019-06-18T02:23:20.467

0

If you have permission to install on the remote machine, you could use a scripting engine like AutoHotkey or AutoIt to make a small script to catch whatever shortcut you would like and virtually "press" Ctrl+Alt+Del on the remote machine for you.

Jared Harley

Posted 2010-01-07T19:34:17.103

Reputation: 11 692

1No need for install permissions; AHK works as a user-mode executable, so as long as application execution isn't restricted it should be fine. – Bob – 2013-03-18T12:34:48.907

0

When you're connecting, on the Local Resources tab of your Remote Desktop Client choose "On the Local Computer" in the drop-down menu of the Keyboard frame. This will send those keyboard signals directly to the remote machine instead of via the client.

squillman

Posted 2010-01-07T19:34:17.103

Reputation: 5 676

3disabling the Windows key combinations actually didn't seem to apply to Ctrl+Alt+End. Good suggestion though – Jimmy – 2010-01-07T21:11:31.917