Windows 10: Ctrl-Win-Right shortcut not working

9

1

I've just installed Windows 10. Ctrl+Win+Right doesn't work to change virtual desktops. Ctrl+Win+Left works fine, as does Ctrl+Win+NumpadRight.

Oh, and Ctrl+Alt+Right works to turn the screen on its side.

I don't know how to debug this at all. Any ideas?

wilbo

Posted 2015-08-26T19:51:07.780

Reputation: 205

Saw your comment that your laptop keyboard was causing the trouble. That really stinks. Would you mind ratting out which PC manufacturer (and model) it was?

– ruffin – 2016-12-07T13:42:21.380

Answers

8

This is key jamming. You'll need to upgrade to a higher-quality keyboard.

  • Most keyboards use matrix circuits for keypress detection and cannot detect simultaneous presses of certain combinations of three keys. The specific combinations that cannot be detected depend on the keyboard model. In these situations, the keyboard will not register the keypress. On your keyboard, the matrix as laid out inside your keyboard is unable to handle the Ctrl+Win+Right Arrow combination.

  • More expensive keyboards generally have better isolation among keys and do not suffer from such jamming. Generally, any keyboard with some degree of "anti-ghosting" should not suffer from this issue. The best keyboards have "n-key rollover" and can handle any number of simultaneous keypresses; these keyboards are generally very expensive and should not be necessary to address this issue. See: Wikipedia article on keyboard rollover.

bwDraco

Posted 2015-08-26T19:51:07.780

Reputation: 41 701

I guess you're right. It's my laptop keyboard, which is a bit of a pain. I tried another keyboard and it works just fine. – wilbo – 2015-08-28T20:06:59.277

5

Since windows doesn't allow changing keyword shortcuts,
The only option that remains is to map another key on your keyword to WIN key.

I used sharpkeys and re-mapped my RAlt key to WIN key.
Now i can use Ctrl+RAlt+Arrow to move around.

Another option is to use autohotkey.

LCtrl & Left::sendevent {LWin down}{LCtrl down}{Left down}{Lwin up}{LCtrl up}{Left up}
LCtrl & Right::sendevent {LWin down}{LCtrl down}{Right down}{LWin up}{LCtrl up}{Right up}

Create a file with .ahk extention and use the above code.
You will be able to move around with LCtrl + Arrow keys.

I recommend using sharpkeys ( it's much simpler and easier to work with ).

amin

Posted 2015-08-26T19:51:07.780

Reputation: 51

4

I had this same issue with the Left Ctrl+Windows+ / combo not switching Virtual Desktops. A workaround that worked for me is using the right Ctrl key on my laptop's keyboard. Right Ctrl+Windows+ /.

jbob

Posted 2015-08-26T19:51:07.780

Reputation: 41

1

It is more likely that the shortcut it not working becauseat the current time when pressing Ctrl+Win+/ you are not moving to the next virtual desktop because you dont have one active.

Try Ctrl+Win+D this will create a virtual desktop then you can swap with Ctrl+Win+Arrow

You can also push Win+Tab to show your desktop in a view that has an option on the bottom to add a new one manually and you can also close them from this page.

Dustin

Posted 2015-08-26T19:51:07.780

Reputation: 11

Format key presses as <KBD>Tab</KBD> just FYI.... Read over "Why do I need 50 reputation to comment" to ensure you understand how you can start commenting.

– Pimp Juice IT – 2017-09-05T01:23:46.580