ইলেক্ট্রোটাইপের উত্তর বন্ধ করে দেওয়া আমার কাছে একটি এএইচকে স্ক্রিপ্ট রয়েছে যা আরডিপি সেশনের মধ্যে অন্য কোনও কী উত্সর্গ না করে পুরো স্ক্রিন আরডিপি অধিবেশন থেকে স্থানীয় কম্পিউটারে ডেস্কটপ স্যুইচ করতে Ctrl+ Win+ Leftএবং Ctrl+ Win+ Rightহটকিগুলিকে সক্ষম করবে - যেমন Alt+ Tabএবং এখনও সব মিলিয়ে আরডিপি সেশনের মধ্যে স্বাভাবিক হিসাবে কাজ করুন।
আমরা যেমন রিমোট কম্পিউটারে নিয়মিত শর্টকাট কীটি ব্যবহার করতে চাই, আরডিপি সেশন শুরু করার সময় আপনার "উইন্ডোজ কী সংযুক্তি প্রয়োগ করুন" সেটিংসের জন্য "কেবলমাত্র পূর্ণ পর্দা ব্যবহার করার সময়" থাকতে হবে।
আমি এএইচকে ফোরামে খুঁজে পাওয়া অন্য স্ক্রিপ্ট থেকে আমার স্ক্রিপ্টটি ভিত্তিক করেছিলাম ।
এর মানে কি:
- আপনার স্থানীয় মেশিনে স্ক্রিপ্টটি চালান (দূরবর্তী ডেস্কটপে নেই)। আমি আমার আটকে
C:\users\<user>\documents\AutoHotkey.ahk
দিলাম যাতে আমি যখন কোনও যুক্তি না দিয়ে আহক শুরু করি তখন এটি চলে।
- আপনি একটি RDP অধিবেশন এবং প্রেস ভিতরে হন Ctrl+ + Win+ + ( Leftবা right) স্ক্রিপ্ট প্রথম পাঠায় Ctrl+ + Alt+ + Homeফোকাস করতে আসলে ডেস্কটপ সুইচ RDP শিরোনাম দণ্ড তারপর সুইচ ডেস্কটপ কী কম্বো পাঠায়।
দ্রষ্টব্য: দুটি বা ততোধিক ভার্চুয়াল-রিমোট ডেস্কটপগুলি ব্যবহার করার সময় এটি কিছুটা বাগী হয়ে যায় (উদাহরণস্বরূপ, একটি স্থানীয় ভার্চুয়াল ডেস্কটপ, প্রতিটিটিতে সম্পূর্ণ স্ক্রিন আরডিপি উইন্ডো সহ দুটি ভার্চুয়াল ডেস্কটপ) তবে আমার এখনই আর এটিতে কাজ করার সময় নেই don't । সমস্যাটি হল যখন আপনি একটি ভার্চুয়াল-রিমোট ডেস্কটপ থেকে অন্যটিতে স্যুইচ করেন, আপনাকে হট কীটি আনবাইন্ড এবং রিইন্ড করতে হবে এবং এটি সনাক্ত করতে সমস্যা হচ্ছে (যদিও এটি হওয়া উচিত নয়) আরডিপি শিরোনাম বারটির একটি আলাদা উইন্ডো শ্রেণি রয়েছে তবে এটি না করে ' টি সর্বদা এটি বাছাই করুন)।
আহক লিপি:
;setTimer, windowwatch, 500
#persistent
#usehook
SLEEP_VAL := 500
DEBUG := false
keys_bound := false
while true {
;Debug("Waiting")
sleep, SLEEP_VAL
keys_bound := WaitBind()
}
WaitBind() {
WinWaitActive, ahk_class TscShellContainerClass
Debug("bind")
hotkey LWin & Left, ctrl_win_left_key, on
hotkey LWin & Right, ctrl_win_right_key, on
return true
}
WaitUnbind() {
WinWaitNotActive, ahk_class TscShellContainerClass
Debug("unbind")
hotkey LWin & Left, ctrl_win_left_key, off
hotkey LWin & Right, ctrl_win_right_key, off
return false
}
Debug(msg) {
global DEBUG
if (DEBUG) {
tooltip %msg%
settimer, TooltipClear, 2000
}
}
return
z_key:
; simple script for testing - change the z to 'he'
send, he
Debug("done z")
return
j_key:
; testing if we can activate the RDP title bar
send {Ctrl down}{Alt down}{Home}{Alt up}{Ctrl up}
Debug("done j")
Return
ctrl_win_left_key:
; we are intercepting all Win+Left combinations so we have to do Win+Shift+Left and Win+Left manually to preserve them inside the RDP
GetKeyState, shiftState, Shift
GetKeyState, ctrlState, Ctrl
if (shiftState = "D") {
; by default in windows Ctrl+Shift+Win+Left will act like Shift+Win+Left - shift takes precedence
Debug("done shift win left")
send {Shift down}{LWin down}{Left}{LWin up}{Shift up}
} else if (ctrlState = "D") {
Debug("done ctrl win left")
; the magic happens here
send {Ctrl down}{Alt down}{Home}{Alt up}{Ctrl up}
keys_bound := WaitUnbind()
;Sleep, SLEEP_VAL ;give the OS time to focus on the title bar
send {Ctrl down}{LWin down}{Left}{LWin up}{Ctrl up}
} else {
Debug("done win left")
send {LWin down}{Left}{LWin up}
}
Return
ctrl_win_right_key:
; we are intercepting all Win+Right combinations so we have to do Win+Shift+Right and Win+Right manually to preserve them inside the RDP
GetKeyState, shiftState, Shift
GetKeyState, ctrlState, Ctrl
if (shiftState = "D") {
; by default in windows Ctrl+Shift+Win+Left will act like Shift+Win+Left - shift takes precedence
Debug("done shift win right")
send {Shift down}{LWin down}{Right}{LWin up}{Shift up}
} else if (ctrlState = "D") {
Debug("done ctrl win right")
; the magic happens here
send {Ctrl down}{Alt down}{Home}{Alt up}{Ctrl up}
keys_bound := WaitUnbind()
;Sleep, SLEEP_VAL ;give the OS time to focus on the title bar
send {Ctrl down}{LWin down}{Right}{LWin up}{Ctrl up}
} else {
Debug("done win right")
send {LWin down}{Right}{LWin up}
}
Return
TooltipClear:
; just a routine to turn off tooltip after x milliseconds
tooltip
settimer, TooltipClear, off
Return
windowwatch:
ifwinactive ahk_class TscShellContainerClass
{
Debug("bind")
hotkey LWin & Left, ctrl_win_left_key, on
hotkey LWin & Right, ctrl_win_right_key, on
}
else
{
Debug("unbind")
hotkey LWin & Left, ctrl_win_left_key, off
hotkey LWin & Right, ctrl_win_right_key, off
}
Return