5

I have to toggle Windows taskbar auto hide/unhide frequently. Is there any way (eg via script, registry or tool) that can let me simply double click to toggle the setting?

bertieb
  • 7,543
Stan
  • 7,325

8 Answers8

2

Try using Aviassin Taskbar Eliminator.

I heard it is a good one.

Siva Charan
  • 4,959
2

You could use the following AutoIT script for showing/hiding the taskbar (or compile it to executable(s) with so you can run this without needing AutoIt)

This example script hides the taskbar, sleeps 3 seconds and shows the taskbar:

Opt('WINTITLEMATCHMODE', 4)
ControlHide('classname=Shell_TrayWnd', '', '')
Sleep(3000)
ControlShow('classname=Shell_TrayWnd', '', '')

The script has been taken from: http://www.autoitscript.com/forum/topic/27505-hide-taskbar/

jpoppe
  • 185
1

I recently went looking for exactly this and ultimately made my own as the existing stuff either doesn't work well or at all. Here's a tool that toggles hide taskbar with source.

gordy
  • 253
  • 2
  • 8
1

This answer uses AutoHotkey:

How to toggle the auto-hide status of the Windows taskbar

You can set it to whatever key combination you need.

bojolais
  • 121
  • 3
0

I know it's an old thread, but I just stumbled upon another software alternative (freeware, no installation required): Taskbar Control here's the download link

It's no double click as the question requires but it let's you toggle the auto hide by using a hotkey and it lets you decide on you're own choice of hotkey.

I tested it with Windows 7, works for me (and I keep it), maybe this helps s.o. else as well. There is also a Version for Windows 10 but I haven't tested it yet.

Albin
  • 11,950
0

If you've enabled "Automatically hide the taskbar in desktop mode", you can use the following AutoHotkey script to toggle the taskbar with Win+J:

#IfWinActive ahk_class Shell_TrayWnd
  #j::Send !{Esc}
#IfWinActive
  #j::WinActivate ahk_class Shell_TrayWnd
#IfWinActive
0

I found something called Taskbar Eliminator via Google that sounds like what you're looking for.

martineau
  • 4,573