Windows 10 disable Win + Tab Task View shortcut

I need to use the ⊞ Win+Tab ↹ shortcut for something else in another program (Reaper). Is there some way to disable the ⊞ Win+Tab ↹ key combination from bringing up Task View without disabling the key functionality? I tried using the following script with AutoHotkey, but then I get no input from typing the shortcut, so I just can't use it at all.

#Tab::Return

Is there some way to simply disable the Task View feature in Windows 10 via group policy change or regedit? I really have no use for it, and would like to be able to use ⊞ Win+Tab ↹ to do something else.


Solution 1:

If you don't want to mess with the registry, you can use AutoHotkey along with #IfWinActive statements to define actions for different programs (for example, you can have multiple definitions for the same hotkey, but they will only fire for the given #IfWinActive program). You would keep your original statement but apply an empty #IfWinActive to capture/ignore keystrokes when made to any undefined program, and then add secondary #IfWinActive / hotkey definitions for additional programs/actions where you actually want to use that key combo to do something.

A second approach would be to rewrite your hotkey definition to send some other little-used hotkey combo via SendInput or similar Send command, and then trigger off of the redefined keys if you need to. This is less efficient but may be easier to understand (or not).

For example, you could send Ctrl+Alt+Shift+F12, which most programs probably don't use. If you wanted to recapture the hotkey however for certain programs, you might also need to pay attention to the SendLevel.

In general I would recommend the first method above and just define that key combo to do whatever you actually want it to do for the programs you care about, and ignore all the rest with a duplicate / generic hotkey such as the one in your original post, but with an #IfWinActive statement in front of it.

Solution 2:

try this:

...for Windows 7

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\DWM]
"DisallowFlip3d"=dword:00000001
  • copy/paste this into Notepad
  • save it as r.reg ... (NOT r.reg.txt)
  • right click on this .reg file, and click on Merge
  • click on Run, Yes (UAC), Yes, and OK when prompted
  • log off and log on, or restart the computer to apply

WIN+TAB future is called "Aero Flip 3D"


...for Windows 10

  • press WIN+R
  • type regedit
  • go to the following registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
  • in the right panel create a new string value named DisabledHotkeys
  • set its value data to characters Tab
  • log off and log on, or restart the computer to apply

enter image description here enter image description here enter image description here