A widely circulated online guide claims that the default hover delay for Windows 11 tooltips is 10 milliseconds, but that’s a dangerous misreading of the Registry. The actual Windows default is 400 milliseconds — and understanding this value is the first step toward stopping those intrusive pop‑ups from hijacking your workflow. Across forums and tutorials, power users are converging on a set of field‑tested methods that give you precise control over every type of tooltip in Windows 11, from File Explorer infotips to taskbar jump lists.
Tooltips — also called infotips or pop‑up descriptions — are meant to be a subtle aid. Hover over a file in Explorer, and a small box reveals its size, type, or dimensions. Hover over a desktop shortcut, and you see the target path. For many, especially on ultra‑high‑resolution monitors or during intense creative work, these floating callouts become an active obstruction. They fire accidentally, cover interface elements, and leak metadata during screen shares or recordings. Windows 11 introduces additional hover‑driven UI on the taskbar, and Microsoft’s ongoing tweaks to the Settings app have removed some of the old GUI toggles, leaving Registry edits as the only reliable route.
This guide distills the practical, tested sequences from the Windows community — not as a dry list of steps, but as a news analysis of what works, what doesn’t, and why a single incorrect number in a popular guide could send you down the wrong path.
The two tooltip worlds: Explorer vs. taskbar
Before you dive into editing, it’s essential to separate the two distinct hover behaviors in Windows 11. File Explorer tooltips (the infotips that appear over files, folders, and desktop items) are governed by the ShowInfoTip value in the Registry and by a toggle in Folder Options. Taskbar hover cards — the preview thumbnails and jump lists that pop up when you hover over pinned or inactive apps — are controlled by a completely different switch, accessible either through Settings or the JumplistOnHover Registry DWORD. Chasing one won’t fix the other. The frustration you feel might be from Explorer infotips, from taskbar clutter, or from both, and each requires its own solution.
The fastest fix: disable Explorer infotips via GUI
For many users, the one‑click route is still available: open File Explorer, click the three‑dot menu, choose Options, and switch to the View tab. Scroll down and uncheck “Show pop‑up description for folder and desktop items.” Click Apply, and Explorer stops showing metadata pop‑ups for files, folders, and shortcuts. This method is immediate, reversible, and carries no risk. However, on several recent Windows 11 feature updates, this checkbox has vanished from the Folder Options dialog. When that happens — and community reports confirm it’s occurring more frequently — the setting can still be toggled through the Registry.
The definitive Registry edit: ShowInfoTip
When the GUI option disappears, or when you need to script a change across dozens of machines, the ShowInfoTip DWORD is your anchor. Navigate to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
Create a new DWORD (32‑bit) named ShowInfoTip if it doesn’t exist, and set its value to 0 to disable infotips. A value of 1 re‑enables them. After editing, restart Windows Explorer from Task Manager or sign out and back in. This key is documented across numerous community hubs — ElevenForum, TheWindowsClub, and others — and remains effective in Windows 11 23H2 and 24H2.
The one‑line PowerShell equivalent:
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "ShowInfoTip" -Value 0 -Type DWord
Stop-Process -Name explorer -Force; Start-Process explorer
The MouseHoverTime myth: 10ms vs. the real 400ms
Here is where the story takes a sharp turn. The Guiding Tech article that many users first encounter advises editing the Registry’s MouseHoverTime to “change the value number to an extended period from the default value of ‘10.’” If you were to follow that instruction and later try to revert to the supposed default of 10, you would make tooltips appear after only 10 milliseconds — essentially instantaneous, and far more disruptive than any production build of Windows would ship.
The Windows community, tested across multiple builds, has established that the actual default MouseHoverTime is a string value of 400, representing 400 milliseconds. That’s the figure listed in countless threads on Winaero, ElevenForum, and even in older Microsoft documentation. The unit is milliseconds, and 400 ms (four‑tenths of a second) is the standard delay before a tooltip appears. The erroneous “10” likely stems from a unit misunderstanding or an editorial slip that failed to account for the measurement scale.
To be clear: open HKEY_CURRENT_USER\Control Panel\Mouse, look for MouseHoverTime (a REG_SZ string), and you will typically see 400. If you want to delay tooltips, set it to a higher number, such as 1000 (one second) or 2000 (two seconds). This gives your cursor a grace period so that a brief, unintentional hover doesn’t trigger a pop‑up, but a deliberate pause will. Do not set it to 10. If you delete the value or set it back to 400, you restore the original behavior.
PowerShell snippet:
Set-ItemProperty -Path "HKCU:\Control Panel\Mouse" -Name "MouseHoverTime" -Value "1000" -Type String
Taskbar hover cards: a separate annoyance
If the pop‑ups that bother you are the taskbar previews and jump lists — those larger cards showing app snapshots or recent files — the remedy is in Settings. Go to Personalization > Taskbar > Taskbar behaviors and toggle off “Show hover cards for inactive and pinned taskbar apps.” The change takes effect immediately. For scripting, the relevant Registry value is JumplistOnHover (DWORD) in the same Advanced key: set it to 0 to suppress the cards, or 1 to turn them back on.
Combining methods for a clean desktop
Because these components are independent, you can mix and match to suit your workflow. A graphic designer who needs occasional tooltips for file details might disable taskbar hover cards but keep Explorer infotips with a delayed MouseHoverTime of 1000 ms. A system administrator who never wants to see a pop‑up might run a script that sets ShowInfoTip=0, JumplistOnHover=0, and leaves MouseHoverTime at 400 only as a fallback. The community’s collective experience shows that the most common workflow among power users is to disable taskbar cards outright and lengthen the hover delay for Explorer — a compromise that preserves utility while cutting out accidental triggers.
Enterprise deployment and rollback safety
For IT departments, the .reg file approach is straightforward. A single file containing:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowInfoTip"=dword:00000000
"JumplistOnHover"=dword:00000000
alongside a separate file for MouseHoverTime, can be pushed through Group Policy or endpoint management tools like Microsoft Intune. Always include a rollback script that restores the original values (or deletes the added values), and test on a pilot group first. The community strongly recommends exporting the affected Registry branches before any mass change.
Troubleshooting: if a change doesn’t seem to take effect, the fastest fix is to restart the Explorer process. Task Manager > Windows Explorer > Restart. For MouseHoverTime, a full sign‑out is often needed.
The broader context: Microsoft’s shifting settings UI
Microsoft’s pattern of removing GUI controls in favor of polished but less flexible interfaces is not new, but it directly affects tooltip management. The Folder Options checkbox has been pruned from some Insider builds, and the taskbar behaviors section has been restructured more than once since Windows 11’s launch. The Registry keys, by contrast, have remained constant since the early days of Windows 10. Savvy users are therefore banking on these keys as a lasting solution, not just a workaround. The community’s message is clear: learn the Registry locations, script them, and you’ll be insulated from future UI reshuffles.
Key takeaways
- The default hover delay is 400 ms, not 10 ms. Any guide claiming otherwise is faulty.
- Explorer infotips and taskbar hover cards are separate mechanisms; adjust each accordingly.
ShowInfoTip=0kills Explorer pop‑ups;JumplistOnHover=0kills taskbar previews.MouseHoverTimelets you delay all standard tooltips without fully disabling them.- When GUI options vanish, Registry edits remain the fallback — and they’re easily scriptable.
Windows 11’s tooltip system is finally understood in depth by the community that relies on it most. By applying the right combination of tweaks, and steering clear of the 10‑millisecond myth, you can reclaim your screen estate and your concentration.