Windows How-To

Hide the Windows 11 Taskbar With a Hotkey

Toggle the taskbar instantly with Ctrl+Esc, a custom hotkey, or an auto-hide setting.

Toggle the taskbar instantly with Ctrl+Esc, a custom hotkey, or an auto-hide setting.

The taskbar sits at the bottom of every Windows 11 desktop, and it takes up screen space whether you need it or not. If you want a cleaner screen for screenshots, focused work, or a touchscreen kiosk, you can collapse it on demand instead of digging through Settings each time.

Quick answer: Run the free Hide Taskbar tool and press Ctrl+Esc to hide or show the taskbar instantly. If you prefer not to install anything, turn on Automatically hide the taskbar in Settings and use Win+T to reach it again.


Hide the taskbar with Ctrl+Esc using Hide Taskbar

Hide Taskbar is a small free tool that hides the taskbar with a single hotkey while leaving the Start button in place. Unlike the built-in auto-hide option, it does not bring the taskbar back when you move your mouse to the bottom of the screen. It only appears again when you press the hotkey, and it uses very little memory while running.

Download the tool and unzip it, then run the Hide Taskbar program. An icon stays active so the hotkey is ready.
Press Ctrl+Esc to hide the taskbar. Press the same combination again to bring it back. The Start button remains usable the whole time.
To have it ready every time you sign in, place a shortcut to the program in your Startup folder at C:\Users\Username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.

Hide Taskbar version 1.0 runs on Windows 11, 10, 8, and 7.


Use the built-in auto-hide setting with Win+T

Windows 11 has a native option that pushes the taskbar off-screen until you need it. This does not require a separate download, but the taskbar reappears when your cursor reaches the bottom edge of the screen.

Right-click an empty part of the taskbar and choose Taskbar settings.
Expand Taskbar behaviors and check the box for Automatically hide the taskbar. The taskbar disappears right away.
When you need the taskbar, press Win+T to focus it, or press Ctrl+Esc to open the Start menu, which also pulls the taskbar into view. To clear focus again, press Win+T until you reach the item you want and confirm with Enter.

Create a custom hotkey for auto-hide (Ctrl+Alt+H)

You can build your own keyboard shortcut that toggles the auto-hide setting on. Behind the scenes, the auto-hide option flips a single value in the registry, so a desktop shortcut can flip it for you and accept a hotkey.

Right-click the desktop, choose New, then Shortcut. Paste this command as the location to turn auto-hide on.
powershell -command "&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3';$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;&Stop-Process -f -ProcessName explorer}"
Name the shortcut something like Turn On Auto-Hide Taskbar and finish. Double-clicking it now hides the taskbar.
Right-click the new shortcut, choose Properties, click inside the Shortcut key box, and press H. Windows fills in Ctrl+Alt+H. Click Apply, then OK.
To turn the feature off with a hotkey too, make a second desktop shortcut using the same command but change $v[8]=3 to $v[8]=2, then assign it a different key combination in its properties.

Note: The hotkey is tied to the desktop shortcut. If you delete the shortcut, the key combination stops working.


Toggle the taskbar with an AutoHotkey script

If you want one key that both hides and shows the taskbar, a short AutoHotkey script handles it. This minimizes the taskbar window when it is visible and restores it when it is hidden.

Install AutoHotkey from its official site and follow the prompts.
Open Notepad, paste the script below, and save it with a .ahk extension, such as HideTaskbar.ahk. The example uses F12, which you can change to any key.
#Persistent

; Change F12 to whatever key you want to use
F12::
    WinGet, taskbar, ID, ahk_class Shell_TrayWnd
    WinGet, taskbarState, MinMax, ahk_id %taskbar%
    if (taskbarState = 0) {
        WinMinimize, ahk_id %taskbar% ; Hide taskbar
    } else {
        WinRestore, ahk_id %taskbar% ; Show taskbar
    }
return
Double-click the saved file to run it. An AutoHotkey icon appears in the system tray, and pressing F12 now toggles the taskbar on and off.

Which method to choose

MethodHotkeyTaskbar reappears on mouse hover?
Hide Taskbar toolCtrl+EscNo
Built-in auto-hideWin+T / Ctrl+EscYes
Custom desktop shortcutCtrl+Alt+HYes
AutoHotkey scriptF12 (custom)No

Confirm it worked

You know the hotkey took effect when the taskbar drops off the bottom of the screen and your desktop wallpaper fills the full height. With the Hide Taskbar tool and the AutoHotkey script, the taskbar stays gone until you press the key again, even if your cursor reaches the bottom edge. With the built-in auto-hide setting or the custom shortcut, the bar slides back into view whenever the pointer touches the bottom of the screen.

One thing worth keeping in mind on shared or touchscreen machines: any of these auto-hide methods will still let the taskbar pop up for anyone with mouse, keyboard, or touch access. If you need it fully locked away, the Hide Taskbar tool or an unusual AutoHotkey key combination keeps it out of sight more reliably than the standard setting.