Keyboard shortcut to minimize Remote Desktop
--
Music by Eric Matyas
https://www.soundimage.org
Track title: Lost Jungle Looping
--
Chapters
00:00 Question
00:41 Accepted answer (Score 98)
00:56 Answer 2 (Score 83)
01:29 Answer 3 (Score 26)
02:26 Answer 4 (Score 14)
04:18 Thank you
--
Full question
https://superuser.com/questions/207534/k...
Answer 3 links:
[image]: https://i.stack.imgur.com/I6Sdd.png
[Luc]: https://superuser.com/users/121343/luc
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows7 #keyboardshortcuts #remotedesktop
#avk47
ACCEPTED ANSWER
Score 98
CTRL + ALT + BREAK will un-maximize the fullscreen connection window on the host PC.
ANSWER 2
Score 90
Ctrl + Alt + Home will bring focus to your local machine (at least in Win 8). Ctrl + Alt + Home then Win will open the windows menu on your local machine.
With virtual machine use, I often have multiple RDP sessions open, and switch by Ctrl + Alt + Home then Win + T then arrow keys to pick the RDP session I want to be in.
ANSWER 3
Score 26
This bugged me for the longest time as well.
Initial attempts to solve it with AutoHotkey failed, because the Remote Desktop client installs a keyboard hook and swallows all input.
I finally discovered that the Caps Lock key gets passed through to the local system.
So, this AutoHotkey script will do the trick, making Ctrl+Shift+CapsLock minimize Remote Desktop:
#IfWinActive ahk_class TscShellContainerClass
^+CapsLock::
; Need a short sleep here for focus to restore properly.
Sleep 50
WinMinimize
return
#IfWinActive
Corrected version that works for me:
#IfWinActive ahk_class TSSHELLWND
^Capslock:: ; Ctrl+Caps Lock (couldn't make Ctrl+Shift+Caps Lock work for some reason
; Need a short sleep here for focus to restore properly.
Sleep 50
WinMinimize A ; need A to specify Active window
;MsgBox, Received Remote Desktop minimize hotkey ; uncomment for debugging
return
#IfWinActive
ANSWER 4
Score 14
It is possible to use the normal, comfortable, Alt+Tab keyboard shortcut to get out of a full screen Remote Desktop, but requires a slightly different setup before connecting. Instead of minimizing the remote system, I just switch to another local program and leave the remote system in the background with the following:
- Before connecting to the remote machine with Remote Desktop Connection, on the "Local Resources" tab, I set "Keyboard" to "On this computer". This allows using Alt+Tab to get you back to any other program on the local system.
- When I want to switch between programs on the remote system, I use Alt+Page Up, which works just like Alt+Tab would, but only on the remote system.
In addition, you can use Alt+Page Down (or Alt+Shift+Page Up) to cycle through the active programs on the remote system in reverse.
One caveat Luc mentioned should be pointed out: using this setup, all keyboard shortcuts using the Windows Key are sent to the local system. An example would be Windows Key+E to open Windows Explorer, which will get you to the local file system, not the remote one.
It took a short amount of time to get used to, but this setup has worked well for me without the need for additional software or more than one shortcut.