Windows 10 unhide taskbar with hotkey instead of cursor position

2

1

As the title suggests, I would like to know what registry entries and files I would have to edit to do this. The problem is, I like my taskbar on the left, and hidden to maximize the space used by a window. This is an issue, however, because with how windows 10 captures the mouse within windows, my cursor will still unhide the taskbar, and then my mouse escapes the window that is attempting to capture it. The only solution to this that I can see would be to edit the hitbox for the taskbar to unhide to zero pixels, so that there is no way to open it with the mouse. Then the issue would be how to unhide the taskbar at all, the solution then would be to set a global hotkey to unhide it, so what would I have to edit to do this?

Jaclyn

Posted 2016-09-16T15:27:29.693

Reputation: 21

There are no registry entries to modify. The taskbar is part of the shell. – Keltari – 2016-09-17T02:29:56.637

@Keltari Care to expand upon this a bit? Would it be possible by any reasonable means to edit the shell? – Jaclyn – 2016-09-18T03:00:15.327

No, it is not possible. – Keltari – 2016-09-18T03:19:02.410

Answers

0

The only solution that I was able to find is to use a program called Taskbar Control. It's certainly not exactly what I wanted and is not elegant by any means since I still have to have the taskbar on auto hide, and when I want to stop my mouse from opening it, toggle the hotkey. I've also heard that you can use Auto HotKey to do it too, and I will put the code for that below, but I do not have any experience with that. I just used the TBC program, which works. It's a stop-gap solution that sucks, but that's what is out there.

Auto hotkey code that binds the hide/unhide hotkey to win+h:

    LWin & h::
    if toggle := !toggle {
        WinHide ahk_class Shell_TrayWnd
        WinHide Start ahk_class Button
    }
    else {
        WinShow ahk_class Shell_TrayWnd
        WinShow Start ahk_class Button
    }
    return

Jaclyn

Posted 2016-09-16T15:27:29.693

Reputation: 21

0

Win + t is the built-in global HotKey for unhiding a hidden Taskbar.

kmote

Posted 2016-09-16T15:27:29.693

Reputation: 2 322