So earlier today, i had to Disable my Windows buttons, cause it was acting like they where always pressed. Now, i cant type QWERTYU (but qwertyu work fine) with the left shift, But every other capital Key works, I Have to use right shift for those 7 characters. this is extremely annoying, and i have tried using Multiple keyboards, but still nothing. Thanks for any suggestions!
If you've tried multiple keyboards, it sounds like a virus or you have some weird keyboard layout set. If you're on Vista, go to control panel, then in classic view, go on Regional and Language settings, then go on the Keyboard and Languages tab, and click on Change keyboards.
Well if you posted HOW you disabled windows buttons we'd be able to pinpoint the problem source
[QUOTE=Murkrow;16580437]Well if you posted HOW you disabled windows buttons we'd be able to pinpoint the problem source[/QUOTE]
Regedit.
[REGINI SCRIPT STARTS HERE:]
;
; This mapping is used to turn both Windows keys off
;
\Registry\Machine\SYSTEM\CurrentControlSet\Control\Keyboard Layout
Scancode Map = REG_BINARY 24 \
0x00000000 0x00000000 3 \
0xE05B0000 0xE05C0000 \
0x0
; Here is an explanation of all the values:
;
; 24 Size of the scancode map including header, in bytes
; 0x00000000 Header : Version
; 0x00000000 : Flags
; 3 : Number of entries (includes null terminator)
; 0xE05B0000 left Windows -> nul (0xE0 0x5b -> 0x00)
; 0xE05C0000 right Windows -> nul (0xE0 0x5c -> 0x00)
; 0x00000000 null terminator
[REGINI SCRIPT ENDS HERE]
Sorry, you need to Log In to post a reply to this thread.