14

I have already tried adding the registry entry in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced as ExtendedUIHoverTime with a value of 30000 seconds but it doesn't work. It still shows the Microsoft damned thumbnails, any idea?

4 Answers4

9

I used this method:

In:

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Taskband

In the right-hand pane, right-click and choose New – DWORD (32-bit) Value . Give it the name NumThumbnails. You’ll create the 32-bit DWORD whether you have 32-bit or 64-bit Windows. By default, it should have a value of 0, which is what we want.

bertieb
  • 7,543
Anadrol
  • 91
8

7+ Taskbar Tweaker can disable taskbar thumbnails. It's very lightweight and supports a lot of other useful customizations.

Screenshot of 7+ Taskbar Tweaker's window

gronostaj
  • 58,482
8

@anadrol's answer is correct and doesn't involve installing any potentially unwanted software. Here's a powershell answer:

New-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Taskband -Name "NumThumbnails" -Value 0 -PropertyType "DWord"

Then restart explorer:

ps explorer | kill

Thumbnails will be replaced with a window list:

enter image description here

2

Some of the instructions I found online seem to miss the detail of setting the Base type (Hex vs Decimal). It defaults to Hexadecimal which may have unexpected results depending on what value you enter.


These steps worked for me to effectively disable the taskbar "preview thumbnails" from popping up in Windows 10:

  1. Open Registry Editor.

  2. Paste into regedit's "address bar" (under the menu bar), then hit Enter:
    Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced

  3. In the right pane, if ExtendedUIHoverTime already exists, right-click and delete it.

  4. In the right pane, right-click a blank spot and choose NewDWORD.

  5. Paste in the key name: (ExtendedUIHoverTime) and hit Enter.

  6. Double-click the new ExtendedUIHoverTime entry to open it.

  7. Under Base, click Decimal.

  8. In the Value data box, enter the delay desired before the preview pops up, in milliseconds.
    For example, entering 60000 makes it so you need to hover on the taskbar for a full minute before the annoying preview window pops up.

    screenshot

  9. Click OK and close the Registry Editor.

  10. Reboot Windows to make the change take effect.
    (Keyboard shortcut to reboot: Windows Key+XUR)