12

The name says it all. Taskbar is set to auto-hide, taskbar does not auto-hide, obviously, I want it to auto-hide. Some program is keeping it from doing that. Sometimes I find the culprit quickly if the developer made something like the icon or app flash but sometimes I search for a while before I find it.

(And no, this, this and this are not answers to "what program," they are cop-outs when you can't fix the problem. I already have an autohotkey to kill and restart Explorer but it's annoying.)

Bonus points if you know the Windows message to trap to prevent a program from doing it because my next step is creating an open-source app that blocks it and auto-generates an email to the developer every time it happens.


Edit: I'm presently looking at poking around with the SHAppBarMessage function when I get time so if anyone has already tried that, a success/fail report could save me time.


Edit 2:

Still, this ridiculously persistent problem keeps popping up and sticking around after all these years. My current favorite workaround is pinning an Explorer re-launcher to the taskbar:

  1. Create a bat file containing taskkill /F /IM explorer.exe & start explorer Create bat file
  2. Right click the bat and create a shortcut to it
  3. Right click the shortcut and edit it so that instead of {path to blahblah.bat}, it has cmd \c "{path to blahblah.bat}" ... (this is to circumvent Microsoft protecting you from putting what you want on the taskbar because they think you're dumb) Edit shortcut
  4. Drag your fancy new shortcut to the taskbar Winning Workaround
1
  • btw you can change the target of that shortcut to C:\Windows\System32\cmd.exe /c taskkill /F /IM explorer.exe & start explorer.exe (optional) Commented Feb 14, 2023 at 16:34

3 Answers 3

0

From this article: https://www.ghacks.net/2017/04/29/windows-10-taskbar-not-hiding-here-is-the-fix/

The idea is to discover the underlying app that wants attention. Some apps or background apps do not have an icon displayed, therefore no indication is visible.

Solution: Enable all icons for a short time to see the icon that is wanting attention.

Quote: Start by opening the Taskbar preferences again. This is done with the keyboard shortcut Windows-I, and navigating to Personalization > Taskbar in the Settings application.

Locate and click on "select which icons appear on the taskbar" under notification area.

Select-icons-taskbar

I recommend that you check the "always show all icons in the notification area". The reason for that is that you get a good overview of all icons, and can identify the culprit easily this way.

0
0

I have a utility called focus-monitor.exe -- I forget where I downloaded it from, unfortunately, and it doesn't take any command-line options to give any information. But it runs a steady output of the process name of any process stealing focus. I would imagine the program keeping your taskbar from autohiding would possibly be stealing focus.

0

I use System Informer (alpha) for many useful things. It has a feature under Menu >> View >> Window. The dialog it pops up shows open Windows and also allows you to search for any string.

It also has capabilities to search for threads, and some other possibilities that might help you under Menu >> Tools >> Permissions. Also, you can look into many of these things for a single process by right clicking it and going through the many tabs under PROPERTIES.

However, when the Taskbar refuses to hide for me there's usually something giving errors and wanting my attention. Is there anything in your Notifications list (click the Notifications Icon at the far right/bottom of the Taskbar,) like a USB device or a disk turning off and on? Do you have AutoPlay enabled? Windows Defender finding problems? Windows Update being a pest? Fix the root cause. (I personally run without Windows Defender, or Automatic Updates. I like to make changes myself, manually, because then I know what's caused any new problems and I don't waist time uninstalling numerous Updates just to trace down the culprit.

I hope this helps.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .