Turn off taskbar "popups" (not thumbnails)

I just registered to say thanks for this thread. The ExtendedUIHoverTime dword worked for me. The value wasn't originally there, but after I created it and restarted explorer, the popups are no longer occuring.

After finding this thread, I searched around a little more and found a page with some step by step instructions:

http://www.sevenforums.com/tutorials/52265-taskbar-thumbnail-previews-enable-disable.html

I missed changing the dword value to decimal initially, which meant the time I input at 2 seconds changed itself to a little over 8 seconds. Maybe setting this value too high breaks it, so make sure it's in decimal, so you can properly input it in milliseconds.

You also need to restart explorer for this to take effect. I killed it in my task manager, then just ran "explorer.exe" again through the task manager's run command. Rebooting should work, too.
 
Last edited by a moderator:

My Computer My Computer

OS
Windows 7 Professional 64
Caveat -- kills network popup

Change the following key

HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\
ExtendedUIHoverTime to a really big time like 65536 and the pop-up will be gone

CAVEAT: if you make it a really big number -- I happened to type in 5000000 -- all/some/many/a few of the popups for the system icon tray stop functioning. I.e., hovering-over and clicking-on the network-connections icon both go dead (double-clicking still works.) Setting ExtendedUIHoverTime to a smaller random number ("5000" or "65536") does not trigger the side effect. No clue why.

PS: thanks for the hover solution. Whenever I upgrade Windows, I seem to spend a lot of time learning how to undo the Microsoft UI changes... be nice if they could publish a consolidated list both of a) the UI changes in a given Windows release and b) how to un-do each of the UI changes in a given Windows release.
 

My Computer My Computer

OS
Windows 7 Pro 32bit
Goes some bit, but a popup still comes up (instantly) when I right-click on a firefox button and then do not select anything from the menu.* This popup lists the open firefox windows (basically reproducing the taskbar in vertical, duh...) and doesn't go away until I've selected a different firefox window or have hovered over the menu and then clicked into the window behind it.

*yes I know, there's "no reason" for doing this. I do it when I periodically clean up my browser windows, just right-clicking on them displays them, if I don't need them anymore I can directly click close, if not I go check the next window, and then the popup appears... :sick:
 

My Computer My Computer

OS
win7
Script on AutoHotkey to hide Pop-ups:
Code:
#Persistent
SetTimer HidePopUp, 100
Return

HidePopUp() {
    If WinExist("ahk_class tooltips_class32 ahk_exe explorer.exe") {
        ; ControlGetText popup ; Get text of Pop-up
        WinGetPos x, y, w, h
        ; Get taskbar control area screen coordinate
            ControlGetPos xT, yT, wT, hT, MSTaskListWClass1, ahk_class Shell_TrayWnd
            WinGetPos xw, yw,,, ahk_class Shell_TrayWnd
            xT+=xw, yT+=yw
        ; Pop-up in taskbar control area
        If (x+w//2>xT && x<(xT+wT) && y>yT-h && y+h<yT+hT) {
            WinHide
        }
    }
}
 

My Computer My Computer

Computer type
PC/Desktop
OS
Win7x64
Antivirus
Comodo HIPS
Browser
Firefox 47

My Computer My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Alienware® ALX X58
OS
Win 7 Ult SP1/Win 10 Pro (all x64)
CPU
Intel® Core™ i7-975 Extreme O/C to 4.02 GHz, 8MB Cache
Motherboard
Asus® P6T Deluxe V2 X58 LGA1366
Memory
24GB Corsair Vengeance DDR3 SDRAM at 1600MHz - 6 x 4096MB
Graphics Card(s)
1792 MB NVIDIA® GeForce® GTX 295 Dual Core
Sound Card
Onboard Soundmax® High-Definition 7.1 Performance Audio
Monitor(s) Displays
Samsung XL2370 LED backlit 23" W/S 2ms response time
Screen Resolution
1920 X 1080
Hard Drives
2 x 500gb SATA II
1 x 1TB SATA II
1 external eSATA LaCie 3TB
(Non-RAID)
PSU
Alienware® 1200 Watt Multi-GPU
Case
Alienware® P2 ALX Chassis with AlienIce™ 3.0 Video Cooling
Cooling
Alienware® High-Perf. Liquid Cooling + Acoustic Dampening
Keyboard
Microsoft® Wireless Entertainment 8000 + Logitech® G15 Wired
Mouse
Microsoft® Wireless Laser 8000 + Logitech® G9 Wired
Internet Speed
1Gb/s
Antivirus
McAfee LiveSafe
Browser
Firefox - latest
Other Info
Using non-RAID on purpose as I find RAID to be too temperamental.
Now set to AHCI
Back
Top