How to change Windows Search shortcut to Ctrl+Ctrl?

1

1

Apparently there is a trick to changing the default shortcut for Windows Search. However, I'd like to change it to Ctrl+Ctrl (e.g. pressing Ctrl key twice, like Google Desktop does). Is there a way to pull this off?

AngryHacker

Posted 2010-06-18T23:24:49.510

Reputation: 14 731

Answers

2

I don't think it's possible using the registry key because the control key is a modifier, not an ASCII character.

I'd use something like AutoHotKey to do this. The following script would do this in AutoHotKey (assuming the default key combo is Control+Shift+f):

~ctrl::
if(a_PriorHotKey <> "~ctrl" or A_TimeSincePriorHotkey > 400)
{
    KeyWait, ctrl
    return
}
WinActivate, Program Manager
send, #+f
return

Nick B

Posted 2010-06-18T23:24:49.510

Reputation: 46