2

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.

jhoepken
  • 1,842
  • 3
  • 17
  • 24
IT researcher
  • 3,274
  • 17
  • 79
  • 143

1 Answers1

0

Finally I have decided to use AHK,

#IfWinActive ahk_class CabinetWClass

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

#IfWinActive  ; turn off context sensitivity
IT researcher
  • 3,274
  • 17
  • 79
  • 143