Ancora un fastidio sei anni dopo ... Volevo essere in grado di alt tab all'interno e all'esterno del server. Il meglio di entrambi i mondi.
(Windows 10 Home e Windows 2012 Server)
Niente dovrebbe andare storto, ma dal momento che questo afferra Left Mouse Buttone Enter, probabilmente, salva prima tutto il tuo lavoro.
Ho dato al mio computer locale pieno accesso ai comandi chiave di Windows anche quando RDC è massimizzato
E poi ha scritto uno script AutoHotKey (non ne sono esperto) che ha catturato WIN+ TAB( #Tab
), mentre RDC è aperto e quindi utilizza quello e il ALT+ Page Downintegrato in Servizi terminal per attivare il ALT+ del server Tab. Una volta aperto, è possibile navigare con i tasti freccia e inserire / fare clic per selezionare.
Se puoi migliorare questo, per favore fallo e condividi.
#persistent
#Tab::WinTabbing()
return
WinTabbing() {
WinGetTitle, Title, A ; Get Title
StringRight, TitleEnd, Title, 25 ; RDC is 25 letters long
If (TitleEnd = "Remote Desktop Connection") ; Check that an RDC is active. This will probably have
; issues with the inital "connect to dialog of RDC
{
Send, {Alt down}{PgDn} ; Press and hold alt, and press pgdn
Hotkey, Enter, Entering, On ; Map Enter, Click, and their alt-counterparts to Entering()
Hotkey, !Enter, Entering, On
Hotkey, LButton, Entering, On
Hotkey, !LButton, Entering, On
return
}
}
; There is no return statement at the end of this function, because we want
; Control Tab to work when focused in any other window.
; I tried to map Tab/Alt Tab (because alt is still pressed) to Right arrow
; and Control Tab/Control Alt Tab to left arrow. I was unable to get it to work.
; I left the functions in comments if anyone want to try
; Righting()
; Send, Right
; return
; }
; Lefting() {
; Send, Right
; return
; }
Entering() {
Send, {Alt}{Enter} ; Releases Alt, and makes the selection
Hotkey, Enter, Entering, Off ; See WinTabbing()
Hotkey, !Enter, Entering, Off
Hotkey, LButton, Entering, Off
Hotkey, !LButton, Entering, Off
return
}