फिर भी छह साल बाद एक उपद्रव ... मैं सर्वर के अंदर और बाहर टैब को सक्षम करना चाहता था। दोनों दुनिया के सर्वश्रेष्ठ।
(विंडोज 10 होम, और विंडोज 2012 सर्वर)
कुछ भी गलत नहीं होना चाहिए, लेकिन इस कब्र के बाद से Left Mouse Buttonऔर Enter, शायद अपने सभी काम पहले बचाएं।
मैंने अपने स्थानीय कंप्यूटर को आरडीसी को अधिकतम करने के बावजूद विंडोज कुंजी कमांड तक पूरी पहुंच प्रदान की
और फिर एक AutoHotKey स्क्रिप्ट लिखी (मैं इसमें अच्छी तरह से वाकिफ नहीं हूं) जिसने WIN+ TAB( #Tab
) को कैप्चर किया है , जबकि RDC खुला है और फिर सर्वर की + सक्रिय करने के लिए टर्मिनल सेवाओं में निर्मित और ALT+ का उपयोग करता है । एक बार यह खुलने के बाद, आप तीर कुंजियों के साथ नेविगेट कर सकते हैं और चयन करने के लिए प्रवेश / क्लिक कर सकते हैं।Page DownALTTab
यदि आप इस पर सुधार कर सकते हैं, तो कृपया करें, और साझा करें।
#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
}