How your taskbar auto-hide settings can keep getting overwritten

Raymond Chen

A customer reported that they were observingthat some users were finding their taskbar set to auto-hide eventhough the standard configuration in the company is for the auto-hidefeature to be disabled.Going into Taskbar Properties shows Auto-hide the taskbar checked.None of the users had changed their setting to auto-hide manually,so the question was raised to the Windows team,“Are there any cases where Explorer will set the auto-hide settingon its own?”

Explorer does not set the auto-hide checkbox on its own.Now, the taskbar does auto-hide even when the setting is uncheckedif it detects that the application is trying to go full-screen,say, in order to show a slide show orplay World of Warcraft.But that doesn’t check the check-box.

Further investigation revealed thatthe check-box was being checked programmaticallyby one of the programs that the company used.And it wasn’t custom software but a commercial productwhich targets the corporate market.

The customer reported back that the problem was sporadic.They could not reproduce it consistently.

My guess is that the application in question was trying toenable auto-hide temporarily for whatever reason.At program startup, it checks the current auto-hide setting,and if it’s off, it programmatically turns auto-hide on.

previousState = IsAutoHideTaskbarEnabled();
SetAutoHideTaskbar(true);

When the program exits, it restores the original setting.

SetAutoHideTaskbar(previousState);

This is a highly fragile solution for several reasons:What if the application crashes before it can restore the setting?

What if two people did this?

  1. Initially, auto-hide is off.
  2. Program A remembers that auto-hide was off and sets it on.
  3. Program B remembers that auto-hide was on and sets it on.
  4. Program A exits and restores auto-hide to off.

Oops, now we have a problem: Program B wants auto-hide on,but Program A just turned it off.

  1. Program B exits and restores auto-hide to on.

Oops, the auto-hide setting was left in the ‘on’ stateafter everybody thought they had restored it.

As a special case of What if two people did this?,the Program B could be the Taskbar Properties page itself.While your program is running, the user goes to Taskbar Propertiesand sees that the checkbox is set incorrectly.Maybe they go in and “fix it”, and now Program A is runningwith a visible taskbar.

What if the application tries to restore the stateafter Explorer has already saved its settings?When the user logs off, all processes are told to clean up their toysand to go bed.In response to WM_ENDSESSION,Explorer saves out its settings and calls it a night.What if this happens before the application programmatically unchecksthe box?Explorer says, “Okay, I unchecked the box.”But Explorer already saved out its settings; these updated settingsaren’t going to be saved again.

This is what happens when you expose a global setting programmatically.People see the setting and think that twiddling it will solve their probleminstead oflooking for a local solution to their local problem,in this casecreating a fullscreen window that covers the taskbar.