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.
Ctrl+Esc to hide the taskbar. Press the same combination again to bring it back. The Start button remains usable the whole time.C:\Users\Username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup.Hide Taskbar version 1.0 runs on Windows 11, 10, 8, and 7.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →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.
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.
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}"
H. Windows fills in Ctrl+Alt+H. Click Apply, then OK.$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.
.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
F12 now toggles the taskbar on and off.Which method to choose
| Method | Hotkey | Taskbar reappears on mouse hover? |
|---|---|---|
| Hide Taskbar tool | Ctrl+Esc | No |
| Built-in auto-hide | Win+T / Ctrl+Esc | Yes |
| Custom desktop shortcut | Ctrl+Alt+H | Yes |
| AutoHotkey script | F12 (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.






