How to disable Ctrl + Win + F

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
lluke
Posts: 43
Joined: 12 Feb 2018, 19:10

How to disable Ctrl + Win + F

19 Sep 2018, 07:34

How to disable Ctrl + Win + F shortcut at Windows 7 64?
I want to remap this key but anoying Find Computers window pops up.

I found this article
https://www.askvg.com/tip-how-to-disabl ... n-windows/
but there are disabling all WiN + shortcuts, but I want only one shortcut removed.
Last edited by lluke on 19 Sep 2018, 07:48, edited 2 times in total.
User avatar
TheDewd
Posts: 1510
Joined: 19 Dec 2013, 11:16
Location: USA

Re: How to disable Ctrl + Win + F

19 Sep 2018, 07:42

Code: Select all

; Ctrl + Win + F
Ctrl & F::
	If (GetKeyState("LWin", "P") || GetKeyState("RWin", "P")) {
		MsgBox, Test
	}
return
lluke
Posts: 43
Joined: 12 Feb 2018, 19:10

Re: How to disable Ctrl + Win + F

19 Sep 2018, 08:09

TheDewd wrote:

Code: Select all

; Ctrl + Win + F
Ctrl & F::
	If (GetKeyState("LWin", "P") || GetKeyState("RWin", "P")) {
		MsgBox, Test
	}
return
Thank you for your answer.
The problem is that I want to set shortcut for other application (Foobar). I am setting this shortcut inside Foobar menu and AHK blocks totally access for this shortcut.
User avatar
TheDewd
Posts: 1510
Joined: 19 Dec 2013, 11:16
Location: USA

Re: How to disable Ctrl + Win + F

19 Sep 2018, 08:29

I don't have foobar installed, but this should give you an idea:

Code: Select all

#SingleInstance, Force
SetTitleMatchMode, 2

#IfWinActive, foobar2000
Ctrl & F::
	If (GetKeyState("LWin", "P") || GetKeyState("RWin", "P")) {
		MsgBox, Test
	}
return
#IfWinActive
User avatar
jeeswg
Posts: 6902
Joined: 19 Dec 2016, 01:58
Location: UK

Re: How to disable Ctrl + Win + F

19 Sep 2018, 08:57

This worked for me on Windows 7. Did it not work for you?

Code: Select all

^#f::
MsgBox, % A_ThisHotkey
return
homepage | tutorials | wish list | fun threads | donate
WARNING: copy your posts/messages before hitting Submit as you may lose them due to CAPTCHA

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: doodles333 and 334 guests