Is it possible to change windows default shortcut Functions

84 Views Asked by At

I want to know whether it is possible to Windows default shortcuts functions.

We know that Ctrl+F is used to search in windows explorer. But I want to use Ctrl+F to trigger my application which will give more advanced options to search.

I want Ctrl+F should open my application within windows explorer only and not in entire computer. I dont want to alter the any other keys functions except Ctrl+F.

Is it possible ? If yes how ?

Please help.

1

There are 1 best solutions below

0
On

Finally I have decided to use AHK,

#IfWinActive ahk_class CabinetWClass

^f::
Run "C:\myapp.exe"
return

#IfWinActive  ; turn off context sensitivity