I have an application where Ctrl + Alt + End is mapped to a command, but when using the a 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?

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

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.

link|improve this answer
thanks, worked like a charm once I figured the script out :) – Jimmy Jan 7 '10 at 21:10
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 Jan 7 '10 at 21:12
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
disabling the Windows key combinations actually didn't seem to apply to Ctrl+Alt+End. Good suggestion though – Jimmy Jan 7 '10 at 21:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.