I finally got annoyed enough to fix missing ALT-F4 and CTRL-V in command-prompt.
The solution is this AutoHotkey script:
; Language: English
; Platform: Win2k/XP/Vista/2k3 server/2k8 server
; Author: Ove Halseth <ove@wis.no>
#IfWinActive ahk_class ConsoleWindowClass
!F4:: Send !{SPACE}C
^V:: Send !{SPACE}EP
return
Ove B-) |