जवाबों:
यह सर्वर दोष पर हल किया गया था :
कंसोल विंडो (CMD) I का उपयोग करने के लिए मैं व्यक्तिगत रूप से कुछ कीबोर्ड फ़ंक्शंस को रीमैप करने के लिए थोड़ी सी ऑटोहॉटकी स्क्रिप्ट का उपयोग करता हूं:>
; Redefine only when the active window is a console window #IfWinActive ahk_class ConsoleWindowClass> ; Close Command Window with Ctrl+w $^w:: WinGetTitle sTitle If (InStr(sTitle, "-")=0) { Send EXIT{Enter} } else { Send ^w } return ; Ctrl+up / Down to scroll command window back and forward ^Up:: Send {WheelUp} return ^Down:: Send {WheelDown} return ; Paste in command window ^V:: ; Spanish menu (Editar->Pegar, I suppose English version is the same, Edit->Paste) Send !{Space}ep return #IfWinActive