3

Is there any way to disable screen shortcuts such as Ctrl+Alt+[F1..F4] in Windows 7?

2 Answers2

1

There is no native way to disable hotkeys in Windows 7. (By the way: The shortcuts you mention are not default hotkeys by Windows 7.)

You can however use AutoHotkey to disable almost any keyboard shortcut. There are other utilities for this, but AutoHotkey is my weapon of choice.

You can disable the hotkeys mentioned here with the following code:

^!F1::return ; disables Ctrl-Alt-F1
^!F2::return ; disables Ctrl-Alt-F2
^!F3::return ; disables Ctrl-Alt-F3
^!F4::return ; disables Ctrl-Alt-F4

Just paste the code into an AutoHotkey script that you launch at startup and the keys will be permanently disabled.

If you want to reassign the hotkeys to something else, you can do as follows:

^!F1::Send ^{Enter] ; sends Control-Enter when pressing Ctrl-Alt-F1
^!F2::some boilerplate text ; types phrases

I happen to have provided an answer to a similar question: How do you disable hotkeys in Internet Explorer 9?

1

Similar thing happened to me. I happen to have an Intel display card.

There's an Intel Graphics and Media Control Panel that allows "Hot Key Functionality" to change various aspects of the display. One of the default hot keys is Ctrl-Alt-F1.

  • To access that control panel right-click on your desktop and choose "Graphics Properties..."
  • On the left select "Options and Support".
  • On the right you'll see those hotkeys.
  • You can disable them by unchecking the Enable checkbox at the top.
Kevin Panko
  • 7,466
tedw
  • 111